#!/bin/bash
( ./autogen.sh
- ./configure --with-single-user
+ ./configure --with-single-user --with-booby
make && make install ) 2>&1 | tee log
mv Makefile Makefile.cfg
cp Makefile.devel Makefile
mwindow->gui->lock_window("AssetPopup::paste_assets");
mwindow->cwindow->gui->lock_window("AssetPopup::paste_assets");
- int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0;
- gui->collect_assets(proxy);
+ gui->collect_assets();
mwindow->paste_assets(mwindow->edl->local_session->get_selectionstart(1),
mwindow->edl->tracks->first, 0); // do not overwrite
- mwindow->session->clear_drag_proxy();
gui->unlock_window();
mwindow->gui->unlock_window();
int AssetPopup::update()
{
format->update();
- int proxy = mwindow->edl->session->awindow_folder == AW_PROXY_FOLDER ? 1 : 0;
- gui->collect_assets(proxy);
+ gui->collect_assets();
return 0;
}
// make a clip from proxy video tracks and unproxy audio tracks
EDL *proxy_edl = new EDL(mwindow->edl);
proxy_edl->create_objects();
+ proxy_edl->set_path(proxy_asset->path);
FileSystem fs; fs.extract_name(path, proxy_asset->path);
- proxy_edl->set_path(path);
strcpy(proxy_edl->local_session->clip_title, path);
strcpy(proxy_edl->local_session->clip_notes, _("Proxy clip"));
proxy_edl->session->video_tracks = proxy_asset->layers;
}
-void AWindowGUI::collect_assets(int proxy)
+void AWindowGUI::collect_assets()
{
mwindow->session->drag_assets->remove_all();
mwindow->session->drag_clips->remove_all();
- mwindow->session->clear_drag_proxy();
int i = 0; AssetPicon *result;
while( (result = (AssetPicon*)asset_list->get_selection(0, i++)) != 0 ) {
- Indexable *indexable = result->indexable; EDL *drag_edl;
- if( proxy && (drag_edl=collect_proxy(indexable)) ) {
- mwindow->session->drag_clips->append(drag_edl);
- mwindow->session->drag_proxy->append(drag_edl);
- continue;
+ Indexable *indexable = result->indexable;
+ if( indexable && indexable->is_asset &&
+ indexable->awindow_folder == AW_PROXY_FOLDER ) {
+ EDL *drag_edl = collect_proxy(indexable);
+ if( drag_edl ) mwindow->session->drag_clips->append(drag_edl);
}
if( indexable ) {
mwindow->session->drag_assets->append(indexable);
// Remove current pointers
dst[0].remove_all();
dst[1].remove_all_objects();
+ BinFolder *bin_folder = folder < AWINDOW_USER_FOLDERS ? 0 :
+ mwindow->edl->get_folder(folder);
// Create new pointers
for( int i = 0; i < src->total; i++ ) {
int visible = folder < 0 ? 1 : 0;
AssetPicon *picon = (AssetPicon*)src->values[i];
picon->sort_key = -1;
- if( !visible && folder >= AWINDOW_USER_FOLDERS && picon->indexable ) {
- picon->sort_key = mwindow->edl->folders.matches_indexable(folder, picon->indexable);
- if( picon->sort_key >= 0 ) visible = 1;
+ if( !visible && bin_folder ) {
+ Indexable *idxbl = bin_folder->is_clips ? picon->edl : picon->indexable;
+ if( idxbl ) {
+ picon->sort_key = mwindow->edl->folders.matches_indexable(folder, idxbl);
+ if( picon->sort_key >= 0 ) visible = 1;
+ }
}
if( !visible && picon->indexable && picon->indexable->awindow_folder == folder )
visible = 1;
- if( !visible && picon->edl && picon->edl->awindow_folder == folder )
+ if( !visible && picon->edl && picon->edl->local_session->folder == folder )
visible = 1;
if( visible ) {
const char *text = search_text->get_text();
AssetPicon *picon = (AssetPicon *)(item_no < 0 ? 0 : gui->folders[item_no]);
if( picon && picon->foldernum >= AWINDOW_USER_FOLDERS ) {
BinFolder *folder = mwindow->edl->get_folder(picon->foldernum);
- ArrayList<Indexable *> *drags = mwindow->session->drag_assets;
- if( folder && drags ) folder->add_patterns(drags);
+ ArrayList<Indexable *> *drags = folder->is_clips ?
+ ((ArrayList<Indexable *> *)mwindow->session->drag_clips) :
+ ((ArrayList<Indexable *> *)mwindow->session->drag_assets);
+ if( folder && drags && !folder->add_patterns(drags) )
+ flicker(1,30);
mwindow->session->current_operation = ::NO_OPERATION;
- flicker(1,30);
result = 1;
}
}
int AWindowAssets::drag_start_event()
{
int collect_pluginservers = 0;
- int collect_assets = 0, proxy = 0;
+ int collect_assets = 0;
if( BC_ListBox::drag_start_event() ) {
switch( mwindow->edl->session->awindow_folder ) {
case AW_LABEL_FOLDER:
// do nothing!
break;
- case AW_PROXY_FOLDER:
- proxy = 1;
- // fall thru
case AW_MEDIA_FOLDER:
default:
mwindow->session->current_operation = DRAG_ASSET;
}
if( collect_assets ) {
- gui->collect_assets(proxy);
+ gui->collect_assets();
}
return 1;
BC_ListBox::drag_stop_event();
// since NO_OPERATION is also defined in listbox, we have to reach for global scope...
mwindow->session->current_operation = ::NO_OPERATION;
- mwindow->session->clear_drag_proxy();
return 1;
}
int drag_motion();
int drag_stop();
// Collect items into the drag vectors of MainSession
- void collect_assets(int proxy=0);
+ void collect_assets();
EDL *collect_proxy(Indexable *indexable);
void create_persistent_folder(ArrayList<BC_ListBoxItem*> *output,
int do_audio,
#include "guicast.h"
#include "indexable.h"
#include "language.h"
+#include "localsession.h"
#include "mainerror.h"
#include "mainsession.h"
#include "mutex.h"
}
-BinFolder::BinFolder(int awindow_folder, const char *title)
+BinFolder::BinFolder(int awindow_folder, int is_clips, const char *title)
{
this->awindow_folder = awindow_folder;
+ this->is_clips = is_clips;
char *bp = this->title;
int len = sizeof(this->title);
while( --len>0 && *title ) *bp++ = *title++;
{
strcpy(title, that->title);
awindow_folder = that->awindow_folder;
+ is_clips = that->is_clips;
filters.copy_from(&that->filters);
}
file->tag.set_title("FOLDER");
file->tag.set_property("TITLE", title);
file->tag.set_property("AWINDOW_FOLDER", awindow_folder);
+ file->tag.set_property("IS_CLIPS", is_clips);
file->append_tag();
file->append_newline();
for( int i=0; i<filters.size(); ++i )
title[0] = 0;
file->tag.get_property("TITLE", title);
awindow_folder = file->tag.get_property("AWINDOW_FOLDER", -1);
+ is_clips = file->tag.get_property("IS_CLIPS", 0);
filters.remove_all_objects();
int ret = 0;
return ret;
}
-void BinFolder::add_patterns(ArrayList<Indexable*> *drag_assets)
+int BinFolder::add_patterns(ArrayList<Indexable*> *drag_idxbls)
{
- int n = drag_assets->size();
- if( n > 0 ) {
- int len = 1;
- for( int i=0; i<n; ++i )
- len += strlen(drag_assets->get(i)->path) + 1;
- char *pats = new char[len], *bp = pats;
- const char *cp = drag_assets->get(0)->path;
+ int n = drag_idxbls->size();
+ if( !n ) return 1;
+ Indexable *idxbl;
+ int len = 0;
+ for( int i=0; i<n; ++i ) {
+ idxbl = drag_idxbls->get(i);
+ if( !idxbl->is_asset &&
+ idxbl->awindow_folder == AW_PROXY_FOLDER )
+ continue;
+ len += strlen(idxbl->get_title()) + 1;
+ }
+ if( !len ) return 1;
+ char *pats = new char[len+1], *bp = pats;
+ for( int i=0; i<n; ++i ) {
+ idxbl = drag_idxbls->get(i);
+ if( !idxbl->is_asset &&
+ idxbl->awindow_folder == AW_PROXY_FOLDER )
+ continue;
+ if( i > 0 ) *bp++ = '\n';
+ const char *cp = idxbl->get_title();
while( *cp ) *bp++ = *cp++;
- for( int i=1; i<n; ++i ) {
- *bp++ = '\n';
- cp = drag_assets->get(i)->path;
- while( *cp ) *bp++ = *cp++;
- }
- *bp = 0;
-// new pattern filter
- BinFolderFilter *filter = new BinFolderFilter();
- filter->update_enabled(FOLDER_ENABLED_OR);
- filter->update_target(FOLDER_TARGET_PATTERNS);
- filter->update_op(FOLDER_OP_MATCHES);
- BinFolderTargetPatterns *patterns = (BinFolderTargetPatterns *)(filter->target);
- patterns->update(pats);
- filters.append(filter);
}
+ *bp = 0;
+// new pattern filter
+ BinFolderFilter *filter = new BinFolderFilter();
+ filter->update_enabled(FOLDER_ENABLED_OR);
+ filter->update_target(FOLDER_TARGET_PATTERNS);
+ filter->update_op(FOLDER_OP_MATCHES);
+ BinFolderTargetPatterns *patterns = (BinFolderTargetPatterns *)(filter->target);
+ patterns->update(pats);
+ filters.append(filter);
+ return 0;
}
double BinFolders::matches_indexable(int folder, Indexable *idxbl)
{
int k = size();
- while( --k>=0 && get(k)->awindow_folder!=folder );
- return k < 0 ? 0 : get(k)->matches_indexable(idxbl);
+ BinFolder *bin_folder = 0;
+ while( --k>=0 && (bin_folder=get(k)) && bin_folder->awindow_folder!=folder );
+ if( k < 0 ) return -1;
+ if( bin_folder->is_clips && idxbl->is_asset ) return -1;
+ if( !bin_folder->is_clips && !idxbl->is_asset ) return -1;
+ return bin_folder->matches_indexable(idxbl);
}
void BinFolders::save_xml(FileXML *file)
while( !(ret=file->read_tag()) ) {
if( file->tag.title_is("/FOLDERS") ) break;
if( file->tag.title_is("FOLDER") ) {
- BinFolder *folder = new BinFolder(-1, "folder");
+ BinFolder *folder = new BinFolder(-1, -1, "folder");
folder->load_xml(file);
append(folder);
}
char pattern[BCTEXTLEN], *bp = pattern, ch;
while( *cp && (ch=*cp++)!='\n' ) *bp++ = ch;
*bp = 0;
- if( bp > pattern &&
- !FileSystem::test_filter(idxbl->path, pattern) )
+ if( !pattern[0] ) continue;
+ const char *title = idxbl->get_title();
+ if( !FileSystem::test_filter(title, pattern) )
v = 1;
}
break; }
lock_window("NewFolderGUI::create_objects");
int x = 10, y = 10;
BC_Title *title;
- add_subwindow(title = new BC_Title(x, y, _("Enter the name of the folder:")));
+ add_subwindow(title = new BC_Title(x, y, _("Folder name:")));
y += title->get_h() + 5;
- add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, _("Untitled")));
+ const char *text = !thread->is_clips ? _("media bin") : _("clip bin");
+ add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, text));
add_subwindow(new BC_OKButton(this));
add_subwindow(new BC_CancelButton(this));
show_window();
: BC_DialogThread()
{
this->agui = agui;
+ is_clips = -1;
}
NewFolderThread::~NewFolderThread()
close_window();
}
-void NewFolderThread::start(int x, int y, int w, int h)
+void NewFolderThread::start(int x, int y, int w, int h, int is_clips)
{
close_window();
- wx = x; wy = y;
- ww = w; wh = h;
+ this->is_clips = is_clips;
+ this->wx = x; this->wy = y;
+ this->ww = w; this->wh = h;
Thread::start();
}
{
if( !result ) {
const char *text = window->get_text();
- agui->mwindow->new_folder(text);
+ agui->mwindow->new_folder(text, is_clips);
}
}
void NewFolderThread::handle_close_event(int result)
{
+ is_clips = -1;
}
ModifyFolderGUI::ModifyFolderGUI(ModifyFolderThread *thread, int x, int y, int w, int h)
lock_window("ModifyFolderGUI::create_objects");
modify_folder_xatom = create_xatom("CWINDOWGUI_UPDATE_FILTERS");
int x = 10, y = 10;
- add_tool(new BC_Title(x, y, _("Enter the name of the folder:")));
- y += 20;
+ BC_Title *title;
+ add_subwindow(title = new BC_Title(x, y, _("Enter the name of the folder:")));
+ const char *text = !thread->folder->is_clips ? _("Media") : _("Clips");
+ int tw = BC_Title::calculate_w(this, text, LARGEFONT);
+ int x0 = get_w() - 50 - tw;
+ add_subwindow(text_title = new BC_Title(x0, y, text, LARGEFONT, YELLOW));
+ y += title->get_h() + 10;
add_subwindow(text_box = new BC_TextBox(x, y, 300, 1, thread->folder->title));
- y += 30;
+ y += text_box->get_h() + 10;
int lh = get_h() - y - BC_OKButton::calculate_h() - 30;
int lw = get_w() - x - 120;
add_subwindow(folder_list =
MWindow *mwindow = thread->agui->mwindow;
mwindow->session->bwindow_w = w;
mwindow->session->bwindow_h = h;
+ int tx = text_title->get_x() + w - get_w();
+ int ty = text_title->get_y();
+ text_title->reposition_window(tx, ty);
int lx = folder_list->get_x();
int ly = folder_list->get_y();
int lh = h - ly - BC_OKButton::calculate_h() - 30;
this->original = folder;
agui->mwindow->edl->add_user();
this->folder = new BinFolder(*folder);
- wx = x; wy = y;
- ww = w; wh = h;
+ this->wx = x; this->wy = y;
+ this->ww = w; this->wh = h;
Thread::start();
}
class BinFolder
{
public:
- BinFolder(int awindow_folder, const char *title);
+ BinFolder(int awindow_folder, int is_clips, const char *title);
BinFolder(BinFolder &that);
~BinFolder();
int load_xml(FileXML *file);
double matches_indexable(Indexable *idxbl);
void copy_from(BinFolder *that);
- void add_patterns(ArrayList<Indexable*> *drag_assets);
+ const char *get_idxbl_title(Indexable *idxbl);
+ int add_patterns(ArrayList<Indexable*> *drag_assets);
char title[BCSTRLEN];
int awindow_folder;
+ int is_clips;
};
class BinFolders : public ArrayList<BinFolder *>
BC_Window *new_gui();
void handle_done_event(int result);
void handle_close_event(int result);
- void start(int x, int y, int w, int h);
+ void start(int x, int y, int w, int h, int is_clips);
int wx, wy, ww, wh;
+ int is_clips;
AWindowGUI *agui;
NewFolderGUI *window;
};
BinFolderAddFilter *add_filter;
BinFolderDelFilter *del_filter;
BinFolderApplyFilter *apply_filter;
+ BC_Title *text_title;
BC_TextBox *text_box;
Atom modify_folder_xatom;
BC_OKButton *ok_button;
}
draw_overlays();
+// allow last opengl write to complete before redraw
+// tried sync_display, glFlush, glxMake*Current(0..)
+usleep(20000);
get_canvas()->flash(flush);
}
//printf("CWindowCanvas::draw_refresh 10\n");
return !fp ? "" : fp->title;
}
-int EDL::new_folder(const char *title)
+int EDL::new_folder(const char *title, int is_clips)
{
if( !title[0] ) return 1;
int ret = get_folder_number(title);
int no = fp->awindow_folder;
if( no >= idx ) idx = no+1;
}
- folders.append(new BinFolder(idx, title));
+ folders.append(new BinFolder(idx, is_clips, title));
return 0;
}
session->frame_rate);
}
-
void EDL::remove_vwindow_edls()
{
for( int i=0; i<total_vwindow_edls(); ++i ) {
BinFolder *get_folder(int no);
int get_folder_number(const char *title);
const char *get_folder_name(int no);
- int new_folder(const char *title);
+ int new_folder(const char *title, int is_clips);
int delete_folder(const char *title);
void modify_edithandles(double oldposition,
else
term = ' ';
value_start = buf->itell()-1;
- while( ch >= 0 && (ch!=term && ch!=right_delm && ch!='\n') )
+ while( ch >= 0 ) {
+// old edl bug work-around, allow nl in quoted string
+ if( ch==term || ch==right_delm ) break;
+ if( ch=='\n' && term!='\"' ) break;
ch = buf->next();
+ }
if( ch < 0 ) EOB_RETURN();
value_end = buf->itell()-1;
// add property
add_item(new FolderListSort(mwindow, this));
add_item(menu_item = new BC_MenuItem(_("Folder...")));
menu_item->add_submenu(submenu = new BC_SubMenu());
- submenu->add_submenuitem(new FolderListNew(mwindow, this));
+ submenu->add_submenuitem(new FolderListNew(mwindow, this, _("New Media"), 0));
+ submenu->add_submenuitem(new FolderListNew(mwindow, this, _("New Clips"), 1));
submenu->add_submenuitem(new FolderListModify(mwindow, this));
submenu->add_submenuitem(new FolderListDelete(mwindow, this));
update_titles();
return 1;
}
-FolderListNew::FolderListNew(MWindow *mwindow, FolderListMenu *menu)
- : BC_MenuItem(_("New folder"))
+FolderListNew::FolderListNew(MWindow *mwindow, FolderListMenu *menu,
+ const char *text, int is_clips)
+ : BC_MenuItem(text)
{
this->mwindow = mwindow;
this->menu = menu;
+ this->is_clips = is_clips;
}
int FolderListNew::handle_event()
menu->gui->get_abs_cursor(cx, cy);
if( (cx-=cw/2) < 50 ) cx = 50;
if( (cy-=ch/2) < 50 ) cy = 50;
- menu->gui->new_folder_thread->start(cx, cy, cw, ch);
+ menu->gui->new_folder_thread->start(cx, cy, cw, ch, is_clips);
return 1;
}
class FolderListNew : public BC_MenuItem
{
public:
- FolderListNew(MWindow *mwindow, FolderListMenu *menu);
+ FolderListNew(MWindow *mwindow, FolderListMenu *menu,
+ const char *text, int is_clips);
int handle_event();
MWindow *mwindow;
FolderListMenu *menu;
+ int is_clips;
};
class FolderListModify : public BC_MenuItem
#include "edl.h"
#include "indexable.h"
#include "language.h"
+#include "localsession.h"
#include <string.h>
return 0;
}
-
-
-
-
+const char *Indexable::get_title()
+{
+ if( is_asset ) return path;
+ EDL *edl = (EDL*)this;
+ if( !edl->parent_edl || awindow_folder == AW_PROXY_FOLDER ) return path;
+ return edl->local_session->clip_title;
+}
void copy_indexable(Indexable *src);
void update_path(const char *new_path);
void update_index(Indexable *src);
+ const char *get_title();
IndexState *index_state;
selectionstart = selectionend = 0;
in_point = out_point = -1;
+ folder = AW_CLIP_FOLDER;
sprintf(clip_title, _("Program"));
strcpy(clip_notes, _("Hello world"));
strcpy(clip_icon, "");
strcpy(clip_title, that->clip_title);
strcpy(clip_notes, that->clip_notes);
strcpy(clip_icon, that->clip_icon);
+ folder = that->folder;
in_point = that->in_point;
loop_playback = that->loop_playback;
loop_start = that->loop_start;
file->tag.set_property("SELECTION_END", selectionend - start);
file->tag.set_property("CLIP_TITLE", clip_title);
file->tag.set_property("CLIP_ICON", clip_icon);
+ file->tag.set_property("FOLDER", folder);
file->tag.set_property("X_PANE", x_pane);
file->tag.set_property("Y_PANE", y_pane);
year, mon, mday, hour, min, sec);
}
}
+ int awindow_folder = file->tag.get_property("AWINDOW_FOLDER", -1);
+ folder = awindow_folder >= 0 ? awindow_folder :
+ file->tag.get_property("FOLDER",
+ edl->parent_edl ? AW_CLIP_FOLDER : AW_MEDIA_FOLDER);
loop_playback = file->tag.get_property("LOOP_PLAYBACK", 0);
loop_start = file->tag.get_property("LOOP_START", (double)0);
loop_end = file->tag.get_property("LOOP_END", (double)0);
char clip_title[BCTEXTLEN];
char clip_notes[BCTEXTLEN];
char clip_icon[BCSTRLEN];
+// awindow folder id
+ int folder;
int loop_playback;
double loop_start, loop_end;
drag_assets = new ArrayList<Indexable*>;
drag_auto_gang = new ArrayList<Auto*>;
drag_clips = new ArrayList<EDL*>;
- drag_proxy = new ArrayList<EDL*>;
drag_edits = new ArrayList<Edit*>;
drag_edit = 0;
clip_number = 1;
MainSession::~MainSession()
{
- clear_drag_proxy();
delete drag_pluginservers;
delete drag_assets;
delete drag_auto_gang;
delete drag_clips;
- delete drag_proxy;
delete drag_edits;
}
CLAMP(cwindow_controls, 0, 1);
}
-void MainSession::clear_drag_proxy()
-{
- for( int i=drag_proxy->size(); --i>=0; )
- drag_proxy->get(i)->remove_user();
- drag_proxy->remove_all();
-}
-
void MainSession::save_x11_host(int play_config, const char *x11_host)
{
strcpy(!play_config ? a_x11_host : b_x11_host, x11_host);
int load_defaults(BC_Hash *defaults);
int save_defaults(BC_Hash *defaults);
- void clear_drag_proxy();
void save_x11_host(int play_config, const char *x11_host);
int set_default_x11_host(int win_config=-1);
void default_window_positions(int window_config=0);
Edits *trim_edits;
ArrayList<Indexable*> *drag_assets;
ArrayList<EDL*> *drag_clips;
- ArrayList<EDL*> *drag_proxy;
Auto *drag_auto;
ArrayList<Auto*> *drag_auto_gang;
void move_track_up(Track *track);
void move_tracks_up();
void mute_selection();
- void new_folder(const char *new_folder);
+ void new_folder(const char *new_folder, int is_clips);
void delete_folder(char *folder);
// For clipboard commands
void paste();
}
-void MWindow::new_folder(const char *new_folder)
+void MWindow::new_folder(const char *new_folder, int is_clips)
{
undo->update_undo_before();
- if( edl->new_folder(new_folder) ) {
+ if( edl->new_folder(new_folder, is_clips) ) {
MainError::show_error(_("create new folder failed"));
}
undo->update_undo_after(_("new folder"), LOAD_ALL);
mwindow->gui->lock_window("ProxyPopup::paste_assets");
mwindow->cwindow->gui->lock_window("ProxyPopup::paste_assets");
- gui->collect_assets(1);
+ gui->collect_assets();
mwindow->paste_assets(mwindow->edl->local_session->get_selectionstart(1),
mwindow->edl->tracks->first, 0); // do not overwrite
int ProxyPopup::update()
{
format->update();
- gui->collect_assets(1);
+ gui->collect_assets();
return 0;
}
if( output ) {
output->lock_canvas("VDeviceX11::close_all 1");
output->get_canvas()->lock_window("VDeviceX11::close_all 1");
+// Update the status bug
+ if( !device->single_frame ) {
+ output->stop_video();
+ }
+ else {
+ output->stop_single();
+ }
}
if( output && output_frame ) {
output->update_refresh(device, output_frame);
- if( device->single_frame )
- output->draw_refresh();
+ output->draw_refresh(1);
}
delete bitmap; bitmap = 0;
delete capture_bitmap; capture_bitmap = 0;
if( output ) {
-// Update the status bug
- if( !device->single_frame ) {
- output->stop_video();
- }
- else {
- output->stop_single();
- }
-
output->get_canvas()->unlock_window();
output->unlock_canvas();
}
int VWindowGUI::drag_stop()
{
- if(get_hidden()) return 0;
+ if( get_hidden() ) return 0;
- if(highlighted &&
- mwindow->session->current_operation == DRAG_ASSET)
- {
+ if( highlighted &&
+ mwindow->session->current_operation == DRAG_ASSET ) {
highlighted = 0;
canvas->draw_refresh();
unlock_window();
- Indexable *indexable = mwindow->session->drag_assets->size() ?
- mwindow->session->drag_assets->get(0) :
- 0;
- EDL *edl = mwindow->session->drag_clips->size() ?
- mwindow->session->drag_clips->get(0) :
- 0;
- if(indexable)
+ Indexable *indexable =
+ mwindow->session->drag_clips->size() > 0 ?
+ (Indexable *)mwindow->session->drag_clips->get(0) :
+ mwindow->session->drag_assets->size() > 0 ?
+ (Indexable *)mwindow->session->drag_assets->get(0) : 0;
+ if( indexable )
vwindow->change_source(indexable);
- else
- if(edl)
- vwindow->change_source(edl);
+
lock_window("VWindowGUI::drag_stop");
return 1;
}
if( temp_display_format == LISTBOX_ICON_LIST ) {
for( int i=0; i<data[0].size(); ++i ) {
if( data[0].get(i)->icon ) {
- if( data[0].get(i)->icon->get_h() > row_height )
- row_height = data[0].get(i)->icon->get_h();
+ int icon_h = data[0].get(i)->icon->get_h() + 2*ICON_MARGIN;
+ if( row_height < icon_h ) row_height = icon_h;
}
}
}
case LISTBOX_ICONS:
case LISTBOX_ICONS_PACKED:
case LISTBOX_ICON_LIST: {
- x = get_item_x(item);
- y = get_item_y(item);
- w = get_icon_w(item) + ICON_MARGIN * 2;
- h = get_icon_h(item) + ICON_MARGIN * 2;
+ x = get_item_x(item) + ICON_MARGIN;
+ y = get_item_y(item) + ICON_MARGIN;
+ w = get_icon_w(item) + ICON_MARGIN;
+ h = get_icon_h(item) + ICON_MARGIN;
break; }
case LISTBOX_TEXT:
default: {
#define LISTBOX_MARGIN 4
// Distance from sides of window
#define LISTBOX_BORDER 2
-#define ICON_MARGIN 1
+#define ICON_MARGIN 2
#define LISTBOX_INDENT 10
// Justification for popup listbox
--- /dev/null
+<?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="1122.5197"
+ height="793.70081"
+ viewBox="0 0 297 210"
+ version="1.1"
+ id="svg963"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="0.Neophyte-Logos.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1881">Neophyte theme – about</title>
+ <defs
+ id="defs957">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1791-0-0-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236965,290.59975)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2511"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236965,290.59975)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1791"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,201.62148,146.2571)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#262626"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.0806598"
+ inkscape:cx="561.25983"
+ inkscape:cy="396.8504"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00fcfc"
+ guideopacity="0.49803922"
+ units="px">
+ <sodipodi:guide
+ position="-103.21261,57.591988"
+ orientation="1,0"
+ id="guide1442"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata960">
+ <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>Neophyte theme – about</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>Neu angelegt. </dc:description>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>cinelerra</rdf:li>
+ <rdf:li>theme</rdf:li>
+ <rdf:li>neophyte</rdf:li>
+ <rdf:li>about</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="hg"
+ sodipodi:insensitive="true"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.08735994;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1037"
+ width="100.54018"
+ height="171.92036"
+ x="196.41451"
+ y="38.034344"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ </g>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-87)"
+ style="opacity:0.99">
+ <g
+ id="g900"
+ style="">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1600"
+ d="m -166.68226,267.94874 c -0.8731,-0.13113 -3.0629,-0.25019 -4.86622,-0.26457 -1.80333,-0.0144 -4.26387,-0.25005 -5.46787,-0.5237 -1.20401,-0.27366 -2.82239,-0.63083 -3.59642,-0.79373 -1.59416,-0.33549 -2.00555,-1.19381 -1.06847,-2.22927 2.10182,-2.3225 2.05377,-9.36503 -0.0854,-12.52208 -1.61709,-2.3865 -1.79827,-3.08655 -1.61407,-6.23645 0.1638,-2.801 0.40682,-3.63387 2.40301,-8.23521 0.25252,-0.58206 0.57755,-1.45516 0.72229,-1.94021 0.14474,-0.48506 0.40123,-0.9711 0.56996,-1.08009 0.74107,-0.4787 1.07362,-6.37012 0.82514,-14.61801 -0.37965,-12.60158 -0.61693,-15.89067 -1.13883,-15.78629 -0.24253,0.0485 -0.44096,-0.097 -0.44096,-0.32337 0,-0.22636 -0.099,-0.31253 -0.22006,-0.1915 -0.32562,0.32562 -3.01351,-1.13321 -2.78103,-1.50937 0.1093,-0.17685 -0.12766,-0.49622 -0.52657,-0.70971 -0.39891,-0.21349 -0.65004,-0.50992 -0.55807,-0.65874 0.22188,-0.359 -0.78499,-3.25616 -1.36485,-3.92722 -0.25148,-0.29104 -0.63926,-1.09685 -0.86172,-1.7907 -0.35066,-1.09366 -0.27955,-1.63355 0.53428,-4.05681 0.51633,-1.5374 1.14265,-3.11276 1.39184,-3.5008 0.24919,-0.38804 0.77251,-1.658 1.16293,-2.82213 0.39043,-1.16413 1.19313,-2.9897 1.78379,-4.05682 1.26461,-2.28474 1.33211,-3.10809 0.38248,-4.66562 -0.89423,-1.46668 -0.89463,-2.46318 -10e-4,-3.27162 0.38805,-0.35117 0.70554,-0.91195 0.70554,-1.24616 0,-0.33422 0.25465,-0.81901 0.56589,-1.07732 0.31125,-0.25831 0.69943,-0.82084 0.86262,-1.25008 0.23771,-0.62524 0.68112,-0.82845 2.22982,-1.02195 2.38467,-0.29795 3.38228,-1.23072 3.63126,-3.39525 0.17288,-1.50299 2.59105,-7.01537 3.5358,-8.06011 0.26318,-0.29103 0.78842,-0.94581 1.16719,-1.45507 0.85435,-1.14867 2.96592,-1.71982 6.3582,-1.71982 2.33471,0 2.59441,-0.0777 3.59181,-1.07515 0.97009,-0.97009 1.057,-1.23609 0.88948,-2.72237 -0.10212,-0.90598 -0.33752,-1.69784 -0.52311,-1.7597 -0.18559,-0.0619 -0.63775,-0.35664 -1.0048,-0.65507 -0.37992,-0.30889 -0.43945,-0.44969 -0.13822,-0.3269 0.42059,0.17144 0.41482,0.13067 -0.0281,-0.19874 -0.46457,-0.34548 -0.49709,-0.67753 -0.19544,-1.99574 0.29297,-1.28031 0.26394,-1.65718 -0.15254,-1.97989 -0.28291,-0.21922 -0.69115,-0.79931 -0.9072,-1.28908 -0.50723,-1.14986 -0.34458,-7.59508 0.20849,-8.26149 0.44024,-0.53046 3.28522,-1.60739 4.24632,-1.60739 0.31703,0 1.28091,-0.34354 2.14194,-0.76344 2.14911,-1.04803 5.29049,-1.06133 7.25428,-0.0307 0.80057,0.42015 1.58005,0.65166 1.73219,0.51445 0.15215,-0.1372 0.17241,-0.0672 0.045,0.15564 -0.12737,0.2228 0.22815,0.89724 0.79006,1.49877 1.30369,1.39559 1.75541,3.38049 1.96194,8.62078 0.0905,2.29617 0.36313,4.72407 0.60587,5.39533 0.54043,1.49453 0.10815,2.37368 -1.24669,2.53551 -1.29731,0.15495 -1.89379,1.31513 -0.93887,1.82618 0.3905,0.20899 0.71001,0.27043 0.71001,0.13652 0,-0.13391 0.31749,0.0439 0.70553,0.39503 0.38804,0.35117 0.70553,1.00333 0.70553,1.44923 0,0.62101 0.36948,0.97417 1.57888,1.50915 0.86839,0.38413 1.93991,0.74873 2.38117,0.81023 0.44126,0.0615 0.96104,0.23277 1.15506,0.3806 0.19402,0.14783 0.96697,0.74081 1.71766,1.31772 0.75069,0.57692 1.48674,0.97363 1.63567,0.88159 0.14892,-0.092 0.48718,0.10871 0.75169,0.44611 0.41789,0.53304 0.40976,0.56722 -0.062,0.26069 -0.2986,-0.19402 -0.11481,0.0441 0.40842,0.52915 0.98044,0.90891 2.29142,3.1749 1.83682,3.1749 -0.1408,0 -0.10519,0.14805 0.0791,0.329 0.18432,0.18095 1.71934,0.37096 3.41115,0.42224 1.69181,0.0513 3.00345,0.16581 2.91475,0.25451 -0.22381,0.22381 2.7435,2.36816 3.11157,2.2486 0.16411,-0.0533 0.2072,0.0506 0.0957,0.23097 -0.11146,0.18035 0.78952,1.2299 2.00218,2.33234 1.21265,1.10244 1.96671,1.89951 1.67568,1.77127 -0.47035,-0.20725 -0.47035,-0.18126 0,0.23396 1.06287,0.93827 1.43768,1.66893 2.62215,5.11168 0.66412,1.9303 1.76467,4.45297 2.44567,5.60594 1.36013,2.30277 2.97571,8.23665 3.74025,13.73761 0.58065,4.17783 1.41603,8.01124 2.60985,11.97618 0.35877,1.19154 0.41774,1.94765 0.18573,2.38117 -0.39754,0.7428 -1.82418,0.83957 -2.49473,0.16922 -0.79546,-0.79523 -3.67635,-1.5931 -7.36748,-2.04046 l -3.53894,-0.42892 -2.80347,1.4677 c -3.15428,1.65135 -4.22945,1.77439 -7.05252,0.80708 -2.42166,-0.82977 -4.50137,-1.15292 -4.75708,-0.73918 -0.10795,0.17468 -0.45753,2.20798 -0.77683,4.51846 -0.55862,4.04219 -0.55529,4.26584 0.0882,5.92079 0.36784,0.94595 0.62818,1.91835 0.57853,2.16087 -0.0497,0.24253 0.0704,0.44096 0.26688,0.44096 0.19644,0 0.25579,0.26416 0.1319,0.58702 -0.15708,0.40932 -0.0932,0.50539 0.21104,0.31736 0.27207,-0.16814 0.40446,-0.0903 0.35169,0.20671 -0.0465,0.262 0.0808,0.87321 0.283,1.35827 2.2452,5.38613 3.63265,9.40644 3.64316,10.55658 0.0107,1.16935 1.11657,5.32107 2.26652,8.509 1.43454,3.97688 1.31861,4.28804 -2.8365,7.61315 -1.33094,1.06508 -1.35719,1.12697 -0.76042,1.79246 0.33996,0.3791 0.51193,0.79546 0.38216,0.92523 -0.12977,0.12977 -0.0631,0.23595 0.14825,0.23595 0.62722,0 1.25958,2.47038 1.30935,5.11511 0.0571,3.035 0.10877,3.20522 1.42255,4.68796 1.44371,1.62938 1.91298,2.53877 1.92771,3.73569 l 0.0125,1.01555 -1.80481,-0.23941 c -1.43989,-0.19101 -1.93896,-0.11802 -2.46826,0.36099 -0.5816,0.52635 -1.1314,0.56622 -4.45678,0.32321 -4.90692,-0.35858 -9.32974,-0.39605 -21.43162,-0.18158 -5.4326,0.0963 -10.5918,0.0678 -11.46489,-0.0634 z m 36.62399,-1.78998 c -0.11172,-0.78666 -1.70017,-1.41331 -1.70017,-0.67073 0,0.83687 0.48022,1.46446 1.12058,1.46446 0.51618,0 0.66364,-0.20193 0.57959,-0.79373 z m -23.82692,-0.048 c 4.62728,-0.0966 5.7217,-0.40688 4.61207,-1.30748 -0.52371,-0.42506 -0.56882,-0.42521 -0.31321,-10e-4 0.20421,0.33884 0.16804,0.41477 -0.11442,0.2402 -0.22716,-0.14039 -0.32103,-0.40412 -0.20858,-0.58606 0.2785,-0.45063 -1.22103,-2.50289 -1.63972,-2.24413 -0.18399,0.11372 -0.3118,0.0759 -0.28402,-0.084 0.13056,-0.75156 -0.0705,-1.19118 -0.4403,-0.96264 -0.22844,0.14118 -0.31235,0.0981 -0.19109,-0.0981 0.30573,-0.49468 -0.78119,-1.93694 -1.24411,-1.65084 -0.22876,0.14139 -0.28172,0.0727 -0.13143,-0.17048 0.13844,-0.22404 0.0571,-0.40731 -0.18067,-0.40731 -0.23781,0 -0.33335,-0.099 -0.21231,-0.22006 0.38964,-0.38965 -1.15242,-3.00009 -1.61526,-2.73435 -0.23509,0.13496 -0.32418,0.12992 -0.19799,-0.0112 0.12619,-0.14113 -0.45128,-1.71434 -1.28327,-3.49603 -0.83198,-1.78168 -1.71284,-3.90889 -1.95745,-4.72713 -0.24721,-0.82691 -0.60238,-1.39028 -0.79964,-1.26837 -0.1952,0.12063 -0.24689,0.0446 -0.11489,-0.16901 0.13201,-0.2136 -0.40803,-2.73835 -1.2001,-5.61058 -2.43949,-8.84626 -3.47657,-14.65088 -2.76973,-15.50256 0.57648,-0.69462 1.29403,-0.005 1.57975,1.51778 0.15319,0.81659 0.38471,1.16062 0.69971,1.03974 0.35295,-0.13543 0.39846,0.0138 0.18183,0.59619 -0.24837,0.66776 -0.11089,2.36472 0.50593,6.24471 0.54777,3.44561 3.87199,13.7754 5.56265,17.28555 0.79433,1.64918 1.45282,3.08161 1.4633,3.18318 0.0105,0.10156 0.37624,0.56804 0.81279,1.03662 0.43654,0.46858 0.80587,0.94109 0.82071,1.05002 0.14952,1.09715 0.36953,1.62208 0.88104,2.10209 0.33133,0.31094 0.49132,0.3669 0.35552,0.12438 -0.46116,-0.82365 0.0115,-0.44545 0.83449,0.66769 0.45082,0.60976 0.61489,0.9821 0.3646,0.82741 -0.56926,-0.35182 -0.15707,0.39681 0.77921,1.41522 0.35675,0.38804 1.26277,1.3802 2.01339,2.20479 l 1.36475,1.49926 3.83352,0.007 c 2.10843,0.004 4.93342,0.16596 6.27774,0.36026 1.34433,0.1943 2.56224,0.23084 2.70649,0.0812 0.14424,-0.14964 0.36885,-0.85246 0.49913,-1.56181 0.23249,-1.26587 0.16674,-1.36054 -3.55273,-5.11512 -2.08428,-2.10395 -3.4974,-3.42851 -3.14027,-2.94345 0.35713,0.48505 -0.22285,0.009 -1.28885,-1.0583 -2.98236,-2.98548 -4.94304,-4.54281 -4.3989,-3.49398 0.16393,0.31597 0.0878,0.29585 -0.21007,-0.0555 -0.25691,-0.30306 -0.74639,-0.65581 -1.08773,-0.78391 -0.34134,-0.12809 -0.60034,-0.35637 -0.57556,-0.50728 0.10425,-0.63506 -0.0573,-1.18635 -0.30308,-1.03443 -0.14552,0.0899 -0.28771,-0.1785 -0.316,-0.59652 -0.0929,-1.37351 -0.78579,-3.56727 -1.16679,-3.69428 -0.2055,-0.0685 -0.29007,-0.25974 -0.18794,-0.42499 0.29681,-0.48025 -2.13825,-6.59845 -3.51203,-8.82415 -1.36519,-2.21179 -1.57267,-3.00649 -0.69722,-2.67055 0.3069,0.11777 0.67391,0.21412 0.81558,0.21412 0.14166,0 0.62642,0.4989 1.07723,1.10866 0.45082,0.60976 0.59973,0.99485 0.33092,0.85575 -0.26881,-0.13909 -0.23414,-0.0421 0.077,0.21542 0.31118,0.25757 0.88709,1.10275 1.27979,1.87818 1.21719,2.40348 3.96984,10.3613 3.76692,10.89009 -0.24071,0.62729 1.25199,2.06572 1.88972,1.821 0.25941,-0.0995 0.38541,-0.0414 0.27999,0.12914 -0.10542,0.17058 0.22337,0.58209 0.73064,0.91447 0.6138,0.40218 0.82812,0.44459 0.64072,0.12678 -0.15489,-0.26265 0.51761,0.2368 1.49443,1.1099 0.97682,0.87309 1.86286,1.86525 1.96897,2.20479 0.10612,0.33953 0.36655,0.61734 0.57873,0.61734 0.47217,0 0.50111,-1.76346 0.0572,-3.48674 -0.18072,-0.70158 -0.50041,-2.54608 -0.71042,-4.09888 -0.37419,-2.76659 -1.74053,-7.96364 -3.10667,-11.81653 -2.08874,-5.89084 -2.24898,-6.73182 -2.57494,-13.51418 -0.17539,-3.64938 -0.41281,-6.78722 -0.52761,-6.97297 -0.11481,-0.18575 -0.43713,-2.40083 -0.7163,-4.92239 -0.45468,-4.107 -0.45012,-4.722 0.0437,-5.90299 0.3032,-0.72509 0.70204,-3.2233 0.88631,-5.55156 0.18427,-2.32825 0.45963,-5.28534 0.61193,-6.5713 0.15228,-1.28596 0.19127,-3.1909 0.0866,-4.2332 l -0.19024,-1.8951 -1.23468,0.11432 c -0.67908,0.0629 -2.08872,0.50009 -3.13253,0.97157 -2.42109,1.0936 -6.89642,1.49162 -9.60202,0.85398 -2.43159,-0.57307 -5.22745,-1.96917 -5.50309,-2.74794 -0.31237,-0.88254 -1.21505,-1.84806 -1.54002,-1.64722 -0.15468,0.0956 -0.39611,-0.012 -0.53651,-0.23921 -0.17457,-0.28246 -0.0986,-0.31863 0.2402,-0.11442 0.39156,0.23599 0.38535,0.16309 -0.0296,-0.3476 -0.59783,-0.73572 -0.41873,-1.29726 -1.79435,5.62589 -1.17964,5.93688 -1.05999,10.59667 0.33068,12.87794 0.4133,0.67799 0.75205,1.40985 0.75278,1.62635 0.002,0.54675 2.33116,7.52169 2.60255,7.79308 0.47683,0.47683 0.15574,-3.76879 -0.51244,-6.77564 -0.38804,-1.74621 -0.93394,-4.3655 -1.21312,-5.82066 -0.27918,-1.45516 -0.66979,-3.20031 -0.86802,-3.8781 -0.57462,-1.96473 -0.45849,-3.06929 0.34476,-3.27935 0.38785,-0.10142 0.79016,-0.0469 0.89403,0.12116 0.10386,0.16805 0.58965,2.41526 1.07953,4.9938 0.48988,2.57853 1.14086,5.64071 1.44664,6.80485 0.66253,2.52237 0.69357,2.74007 1.13165,7.93724 0.43626,5.17557 0.60717,5.96417 1.98784,9.17192 0.62632,1.45517 1.32425,3.22834 1.55095,3.9404 0.47228,1.48343 1.21227,2.23554 1.82621,1.8561 0.24332,-0.15038 0.33061,-0.11222 0.20568,0.0899 -0.21675,0.35071 1.54934,1.87444 2.1726,1.87444 0.522,0 0.82426,1.15181 0.3751,1.4294 -0.22349,0.13813 -0.74478,0.15082 -1.15843,0.0282 -0.99052,-0.2936 -4.54154,-2.90086 -4.29148,-3.15092 0.31407,-0.31407 -1.29078,-1.83407 -1.6815,-1.5926 -0.1958,0.12101 -0.25737,0.0604 -0.13683,-0.1346 0.12055,-0.19504 -0.17692,-0.89149 -0.66102,-1.54766 -0.66655,-0.90345 -0.82541,-1.44246 -0.65449,-2.22067 0.19984,-0.90986 0.14264,-1.00591 -0.49911,-0.83809 -0.73067,0.19108 -2.03415,-0.81644 -1.60783,-1.24276 0.43413,-0.43413 -1.46259,-7.34326 -2.73318,-9.95607 l -0.68619,-1.41106 0.1939,3.88043 c 0.2533,5.06903 0.83656,9.54448 1.46272,11.22357 0.27609,0.74037 0.41927,1.47997 0.31817,1.64355 -0.1011,0.16357 0.0346,1.14527 0.30161,2.18153 0.26699,1.03628 0.37067,1.9635 0.23042,2.06051 -0.14026,0.097 -0.34454,1.06736 -0.45396,2.15634 -0.23711,2.35991 -1.51512,5.01488 -3.13873,6.52053 -0.6479,0.60083 -2.24254,1.67622 -3.54365,2.38977 -1.30111,0.71354 -2.46287,1.45464 -2.58168,1.64688 -0.1188,0.19223 -0.72108,0.56249 -1.33838,0.82278 -0.6173,0.2603 -1.85372,1.25869 -2.7476,2.21864 -1.2817,1.37645 -1.67844,2.10017 -1.87694,3.42384 -0.17798,1.18685 -0.11524,1.84685 0.21418,2.25332 0.39598,0.4886 0.38649,0.52912 -0.0633,0.2701 -0.33666,-0.19388 -0.28743,-0.0291 0.13534,0.45311 0.36547,0.41683 0.80595,0.67043 0.97885,0.56357 0.17289,-0.10685 0.27074,-0.002 0.21742,0.2324 -0.0982,0.43218 3.48202,2.82032 4.13464,2.75797 0.71304,-0.0681 1.92841,0.48454 1.73912,0.79082 -0.10712,0.17333 0.0931,0.42424 0.44493,0.55758 0.98414,0.37296 3.26039,2.88123 3.50723,3.86472 0.27196,1.08357 -0.43406,1.97748 -0.92914,1.17641 -0.17887,-0.28941 -0.52943,-0.52976 -0.77904,-0.53411 -0.2496,-0.004 -0.41222,-0.26018 -0.36138,-0.5685 0.11738,-0.71185 -2.98047,-3.59828 -3.60475,-3.35872 -0.25691,0.0986 -0.78511,-0.11702 -1.17378,-0.47913 -0.38867,-0.3621 -0.80295,-0.56209 -0.92061,-0.44443 -0.11767,0.11768 -0.21394,0.0337 -0.21394,-0.18654 0,-0.22026 -0.23811,-0.30911 -0.52914,-0.19743 -0.40595,0.15577 -0.53013,0.83082 -0.53334,2.89925 -0.002,1.4829 -0.23457,3.56191 -0.51616,4.62001 -0.28158,1.05809 -0.46141,1.97436 -0.39963,2.03615 0.44062,0.44062 5.62103,1.15122 8.68082,1.19076 2.03723,0.0263 4.18028,0.17236 4.76234,0.32453 0.58207,0.15218 2.487,0.2033 4.23319,0.11362 1.74619,-0.0897 5.20308,-0.20541 7.68197,-0.25717 z m -10.92581,-3.83245 c -0.006,-0.24252 -0.49294,-1.48296 -1.083,-2.75651 -1.00068,-2.15983 -1.14541,-2.31054 -2.15196,-2.24085 -1.30337,0.0902 -1.52214,-0.16092 -2.40904,-2.76561 -0.38027,-1.1168 -0.82363,-1.91052 -0.98525,-1.76384 -0.16161,0.14668 -0.18369,0.0748 -0.0491,-0.15975 0.13464,-0.23454 0.001,-1.93934 -0.29621,-3.78844 -0.70416,-4.37596 -0.7122,-6.54449 -0.0243,-6.54449 0.75533,0 1.07869,0.87857 1.55806,4.2332 0.38661,2.70541 0.67467,4.50082 0.96115,5.99062 0.0553,0.28751 0.27682,0.58151 0.49229,0.65334 0.21548,0.0718 0.7237,0.47156 1.12939,0.88832 0.40569,0.41675 0.62554,0.5593 0.48854,0.31677 -0.13699,-0.24253 -0.18708,-0.44096 -0.11129,-0.44096 0.0758,0 0.6515,0.79279 1.27937,1.76176 1.42053,2.19225 2.96151,5.92519 2.71315,6.57242 -0.23253,0.60596 -1.49809,0.64281 -1.51188,0.044 z m 27.38161,-3.35128 -0.85522,-0.97011 0.97011,0.85522 c 0.90671,0.79933 1.13188,1.085 0.85521,1.085 -0.0632,0 -0.49973,-0.43655 -0.9701,-0.97011 z m -16.99426,-17.04988 c -0.33954,-0.1974 -0.61734,-0.49382 -0.61734,-0.65871 0,-0.5958 -2.40026,-3.85053 -2.66439,-3.61289 -0.14897,0.13403 -0.16215,0.0541 -0.0293,-0.17753 0.19484,-0.33975 -1.59542,-4.4353 -3.32187,-7.59942 -0.58847,-1.07848 -0.40339,-1.7394 0.45273,-1.61677 0.53911,0.0772 1.09999,0.7059 1.78078,1.99603 0.54659,1.03583 0.82925,1.78162 0.62813,1.65732 -0.21892,-0.13529 -0.28136,-0.006 -0.15558,0.32148 0.11554,0.30111 0.32608,0.54747 0.46786,0.54747 0.34816,0 2.1361,3.68972 2.1361,4.40819 0,0.3147 0.15692,0.47519 0.34872,0.35665 0.19317,-0.11938 0.26281,0.008 0.15611,0.28643 -0.10594,0.27607 0.0546,0.59682 0.35681,0.71278 0.30218,0.11596 0.54942,0.41866 0.54942,0.67266 0,0.254 0.32774,0.74244 0.72831,1.08542 1.21432,1.03973 0.52785,2.4025 -0.8165,1.62089 z m -1.14649,-33.7808 c -0.58206,-0.35588 -1.27471,-0.90914 -1.53922,-1.22948 -0.26452,-0.32034 -0.62562,-0.49301 -0.80247,-0.38372 -0.17684,0.1093 -0.27791,-0.0115 -0.2246,-0.26846 0.0533,-0.25694 -0.1133,-0.42356 -0.37025,-0.37024 -0.25695,0.0533 -0.38942,-0.0289 -0.29438,-0.18265 0.26024,-0.42109 -1.37081,-2.95166 -1.70637,-2.64742 -0.16001,0.14508 -0.17854,0.0683 -0.0412,-0.17071 0.13737,-0.23896 -0.0356,-1.24173 -0.3844,-2.22837 -0.58783,-1.66287 -0.59145,-1.81788 -0.0496,-2.12227 0.49057,-0.27557 0.52425,-0.52493 0.20945,-1.55063 -0.20631,-0.67223 -0.52489,-1.12967 -0.70795,-1.01653 -0.18306,0.11313 -0.1574,-0.1221 0.057,-0.52276 0.21442,-0.40065 0.53495,-0.81812 0.71228,-0.92772 0.40792,-0.25211 1.51042,0.82346 1.3469,1.31401 -0.0672,0.20164 0.31511,0.84541 0.84961,1.4306 0.53449,0.5852 0.90163,1.17754 0.81587,1.31631 -0.23388,0.37842 0.81169,1.14357 2.44184,1.78693 0.97285,0.38395 1.48842,0.82004 1.56399,1.32288 0.14091,0.93766 -0.29577,0.94472 -2.75847,0.0446 -1.06164,-0.38804 -1.98155,-0.70553 -2.04425,-0.70553 -0.0627,0 -0.027,-0.14076 0.0793,-0.3128 0.24639,-0.39866 -0.79143,-1.28164 -1.12009,-0.95297 -0.13521,0.13521 -0.0864,0.35626 0.10846,0.49122 0.19486,0.13497 0.80285,1.3156 1.35109,2.62363 0.54825,1.30804 1.10793,2.30957 1.24375,2.22563 0.13581,-0.0839 0.69389,0.32094 1.24016,0.89972 0.54628,0.57878 1.07683,0.96874 1.179,0.86657 0.30427,-0.30427 1.07369,0.96999 0.88407,1.46413 -0.23896,0.62272 -0.7895,0.57037 -2.03961,-0.19394 z m 8.64276,58.15058 c 0,-0.19402 -0.23811,-0.35276 -0.52915,-0.35276 -0.29103,0 -0.52914,0.15874 -0.52914,0.35276 0,0.19403 0.23811,0.35277 0.52914,0.35277 0.29104,0 0.52915,-0.15874 0.52915,-0.35277 z m 18.52022,-1.61684 c 0,-0.37477 -0.20824,-0.63293 -0.46718,-0.5792 -0.25695,0.0533 -0.3829,-0.0394 -0.2799,-0.2061 0.103,-0.16666 -0.163,-1.00401 -0.59112,-1.86076 -0.59619,-1.1931 -0.7784,-2.18054 -0.7784,-4.21834 0,-3.23196 -0.76897,-4.86793 -1.94339,-4.13449 -0.59195,0.36968 -0.81207,0.31026 -1.49209,-0.4028 -0.43874,-0.46005 -0.62284,-0.74043 -0.40913,-0.62307 0.23037,0.1265 0.5593,-0.35644 0.80788,-1.18614 0.23062,-0.76973 0.57168,-1.39951 0.75791,-1.39951 0.18624,0 0.61856,-0.27995 0.96072,-0.62211 0.34215,-0.34215 1.17556,-1.00175 1.85202,-1.46576 1.61256,-1.10613 2.11183,-1.75267 2.11183,-2.73476 0,-0.94076 -1.01814,-3.63547 -1.35667,-3.59072 -0.84798,0.11211 -1.8277,-0.10508 -1.66458,-0.36901 0.28972,-0.46878 -4.78924,-7.63043 -5.15325,-7.26642 -0.0774,0.0774 -0.173,-0.24854 -0.21238,-0.72438 -0.045,-0.54371 0.11348,-0.86516 0.42653,-0.86516 0.58595,0 2.68903,1.69436 2.5725,2.07255 -0.044,0.14286 0.39621,0.70274 0.97827,1.24419 0.58207,0.54145 1.07814,1.12789 1.1024,1.30322 0.0242,0.17532 0.0639,0.47752 0.0882,0.67154 0.0242,0.19402 0.19137,0.35277 0.37137,0.35277 0.92722,0 -0.50736,-6.10948 -2.85775,-12.17044 -1.04431,-2.69297 -1.30936,-3.08957 -1.91055,-2.85888 -0.26908,0.10326 -0.45705,0.0744 -0.41771,-0.0641 0.0393,-0.13853 -0.33551,-0.88686 -0.83298,-1.66295 -0.95796,-1.49446 -1.40781,-2.73658 -2.07122,-5.71898 -0.42938,-1.9303 -0.2918,-2.57102 0.55206,-2.57102 0.80482,0 0.62311,-2.19213 -0.55222,-6.66177 -0.63707,-2.4227 -1.07511,-5.0119 -1.10409,-6.52618 -0.0264,-1.38059 -0.11714,-2.15063 -0.20161,-1.7112 -0.0845,0.43943 -0.28521,0.71759 -0.44611,0.61815 -0.63113,-0.39006 -1.11925,3.54362 -1.19702,9.64662 -0.0562,4.41236 -0.21305,6.52854 -0.50544,6.82094 -0.5865,0.5865 -0.5302,1.32245 0.12027,1.57206 0.66401,0.25481 1.74794,2.32635 2.09415,4.00223 0.14029,0.67908 0.80212,2.88657 1.47075,4.90554 1.15863,3.49859 1.28022,4.61916 0.5012,4.61916 -0.4965,0 -2.66779,-4.69307 -3.39737,-7.34315 -0.37186,-1.3507 -0.71919,-2.05684 -0.88208,-1.79328 -0.14778,0.23912 -0.13977,0.77385 0.0178,1.1883 0.16505,0.43411 0.13276,1.02826 -0.0762,1.40159 -0.82652,1.47692 0.38254,6.83063 3.58964,15.89484 0.41189,1.16413 1.0728,3.8628 1.46869,5.99703 0.39589,2.13424 1.02524,5.35329 1.39855,7.15345 0.37331,1.80016 0.67874,3.70556 0.67874,4.23423 0,0.6932 0.68689,1.72493 2.46345,3.7002 1.35489,1.50643 2.71353,3.2226 3.0192,3.8137 0.59733,1.1551 1.39629,1.22285 1.39629,0.11841 z m -50.91986,-22.19739 c 0.84295,-0.68045 1.72437,-1.3948 1.9587,-1.58745 0.23434,-0.19264 0.48681,-0.35026 0.56104,-0.35026 0.17282,0 5.46884,-3.18523 6.48349,-3.89942 0.42242,-0.29734 0.96382,-0.9703 1.20311,-1.49549 0.23929,-0.52519 0.56087,-0.95488 0.71463,-0.95488 0.15376,0 0.44488,-0.5953 0.64694,-1.32288 0.42761,-1.53976 0.49018,-3.63462 0.10674,-3.57408 -0.75251,0.11882 -1.09093,-0.12517 -1.2936,-0.93265 -0.12298,-0.48999 -0.85454,-1.52184 -1.62569,-2.29299 -0.77115,-0.77116 -1.32136,-1.4021 -1.22269,-1.4021 0.0987,0 -0.29232,-0.83584 -0.86887,-1.85742 -0.57655,-1.02158 -1.36367,-3.20433 -1.74917,-4.85053 -0.69779,-2.97984 -1.09088,-7.87118 -0.66665,-8.29541 0.48522,-0.48523 1.69476,0.58763 1.71642,1.52247 0.021,0.90683 0.52429,5.78867 0.75333,7.30749 0.0585,0.38805 0.18576,0.78491 0.28278,0.88192 0.21083,0.21083 1.07053,2.45011 1.19587,3.11492 0.0486,0.25804 0.30423,0.60251 0.56795,0.7655 0.26373,0.16299 0.51914,0.56645 0.5676,0.89658 0.0946,0.6448 1.84647,2.63108 2.32053,2.63108 0.40069,0 0.3588,-2.58674 -0.0597,-3.68752 -0.4298,-1.13046 -1.39923,-10.14848 -1.57555,-14.65632 -0.0721,-1.8432 -0.3219,-5.64794 -0.55513,-8.45497 -0.46081,-5.54603 -0.35631,-7.26711 0.71176,-11.72232 0.38619,-1.6109 0.70328,-3.51484 0.70464,-4.23097 0.001,-0.71613 0.17816,-1.41064 0.3929,-1.54335 0.27625,-0.17073 0.25981,-0.32202 -0.0562,-0.51733 -0.59395,-0.36708 -1.39253,-0.0354 -1.39253,0.57835 0,0.27027 -0.1216,0.49141 -0.27023,0.49141 -0.47485,0 -2.47273,3.33487 -2.8632,4.77927 -0.20729,0.76677 -0.69827,2.023 -1.09109,2.7916 -0.39281,0.7686 -0.7142,1.61771 -0.7142,1.8869 0,0.26919 -0.22847,0.98967 -0.50772,1.60105 -1.8256,3.99701 -2.34418,9.91208 -2.09225,23.86505 0.25276,13.99976 0.087,15.57875 -2.11836,20.17361 -0.8973,1.86956 -1.63145,3.65139 -1.63145,3.95961 0,0.30823 -0.15875,0.56042 -0.35277,0.56042 -0.19402,0 -0.35277,0.23812 -0.35277,0.52915 0,0.80671 0.49481,0.64537 2.17141,-0.70804 z m 43.33539,-28.59238 c 0,-0.53024 -0.20331,-0.86109 -0.52915,-0.86109 -0.528,0 -0.75788,1.4175 -0.30356,1.87183 0.39984,0.39984 0.83271,-0.12557 0.83271,-1.01074 z m 12.59571,-7.41291 c 0.7362,-0.49915 1.44805,-1.20151 1.58189,-1.56078 0.30504,-0.81886 -1.37942,-4.33682 -1.91736,-4.00436 -0.21998,0.13596 -0.27189,0.0647 -0.12546,-0.1722 0.29313,-0.47431 -0.82801,-2.14705 -1.44987,-2.16319 -0.23497,-0.006 -0.74128,-0.3482 -1.12514,-0.76022 -0.51213,-0.54971 -0.93759,-0.68898 -1.59822,-0.52317 -0.85201,0.21384 -3.37559,-0.55132 -3.37559,-1.0235 0,-0.11836 0.15874,-0.11709 0.35276,0.003 0.79374,0.49056 0.27685,-0.0998 -0.75588,-0.86337 -0.60976,-0.45081 -1.00563,-0.65297 -0.87972,-0.44923 0.12591,0.20373 0.0574,0.42759 -0.15217,0.49746 -0.23997,0.08 -0.4419,2.06634 -0.54527,5.3637 l -0.16415,5.23668 1.06952,-0.15697 c 0.58823,-0.0863 0.98245,-0.0699 0.87604,0.0365 -0.31239,0.31239 3.76913,1.38736 5.3865,1.41866 1.04569,0.0203 1.87867,-0.23916 2.82212,-0.87883 z m 15.11327,-1.1159 c -0.1992,-0.51911 -0.27427,-0.51526 -0.82356,0.0422 -0.57094,0.57941 -0.56535,0.6424 0.10116,1.13861 0.63001,0.46904 0.71816,0.46453 0.82355,-0.0422 0.0649,-0.31209 0.0194,-0.82446 -0.10115,-1.13861 z m -2.22166,0.37876 c -0.24252,-0.0979 -0.44096,-0.41353 -0.44096,-0.70148 0,-0.547 -3.16555,-4.6429 -3.18739,-4.12416 -0.007,0.1633 -0.23106,-0.098 -0.4982,-0.58058 -0.26713,-0.48262 -0.41383,-0.99376 -0.32601,-1.13587 0.0878,-0.14211 -0.24358,-1.01593 -0.73648,-1.94183 -1.04642,-1.96571 -1.08583,-2.21822 -0.3462,-2.21822 0.34608,0 0.45176,-0.16347 0.28505,-0.44096 -0.18001,-0.29962 -0.0736,-0.28578 0.33194,0.0432 0.32828,0.26628 0.59687,0.70283 0.59687,0.9701 0,0.26728 0.12934,0.48596 0.28743,0.48596 0.33098,0 1.4764,2.27618 1.4764,2.93391 0,0.53029 1.0629,1.94613 3.08401,4.10805 l 1.49655,1.60083 -0.20639,-1.23469 c -0.11351,-0.67908 -0.33889,-1.71092 -0.50085,-2.29299 -0.16195,-0.58206 -0.47728,-2.24888 -0.70074,-3.70404 -0.91775,-5.97663 -3.41949,-13.01828 -4.8154,-13.55395 -0.28517,-0.10943 -0.4177,-0.36205 -0.2945,-0.56138 0.28913,-0.46782 -1.74191,-3.24509 -2.12168,-2.90122 -0.15802,0.14308 -0.16585,0.05 -0.0174,-0.20693 0.16157,-0.2796 -0.008,-0.77517 -0.42171,-1.23468 -0.38039,-0.42219 -0.9861,-1.28227 -1.34603,-1.9113 -0.40182,-0.70222 -1.11485,-1.29564 -1.84719,-1.53733 -1.62425,-0.53605 -2.07249,-0.0394 -1.30462,1.4455 1.17412,2.27049 1.07085,5.56344 -0.34298,10.93659 -0.66237,2.5173 -1.19184,3.30816 -2.00567,2.99586 -0.56268,-0.21592 -0.59344,-1.09753 -0.12126,-3.47534 0.25231,-1.27062 0.22142,-1.34587 -0.46337,-1.12853 -0.40354,0.12808 -1.39519,0.25925 -2.20366,0.29149 -1.30396,0.052 -1.58876,-0.0895 -2.52189,-1.25264 -0.57854,-0.7212 -1.26526,-1.31127 -1.52603,-1.31127 -0.89264,0 -0.88304,0.66185 0.024,1.65376 0.4989,0.5456 1.26255,1.5476 1.69698,2.22667 0.43444,0.67908 0.87823,1.15531 0.9862,1.0583 0.55293,-0.49682 2.73744,2.71919 2.5759,3.79224 -0.0365,0.24253 -0.0862,0.67908 -0.11047,0.97011 -0.0242,0.29103 -0.36159,0.52915 -0.74963,0.52915 -0.38804,0 -0.68033,-0.11906 -0.64953,-0.26458 0.10921,-0.5159 -0.52134,-1.68461 -1.25363,-2.32359 -0.40842,-0.35637 -0.50447,-0.52242 -0.21343,-0.36898 0.29103,0.15344 -0.14063,-0.52365 -0.95925,-1.50463 -1.9221,-2.30333 -2.4412,-2.73201 -2.73421,-2.25791 -0.12573,0.20344 -0.0359,0.36989 0.19965,0.36989 0.2676,0 0.19179,0.2613 -0.20209,0.69653 -0.56224,0.62127 -0.57811,0.82139 -0.14695,1.85203 0.26587,0.63552 0.4864,1.23486 0.49006,1.33187 0.0126,0.33445 1.25015,1.94002 1.4231,1.84634 0.0953,-0.0516 0.53465,0.14287 0.97629,0.43225 0.46004,0.30143 1.82479,0.56751 3.19556,0.62303 l 2.39258,0.0969 0.63103,1.86414 c 0.34707,1.02528 0.95363,2.21587 1.34792,2.64575 0.81513,0.88872 3.03717,4.95805 2.53929,4.65035 -0.17917,-0.11073 -0.23877,0.0254 -0.13245,0.30241 0.17793,0.46368 3.14456,0.93585 7.12459,1.13396 0.63392,0.0315 1.25567,0.16046 1.38166,0.28646 0.126,0.12599 0.48043,0.21654 0.78763,0.20123 0.36432,-0.0182 0.40521,-0.0897 0.11759,-0.20578 z m -68.0397,-3.69091 c 0.35958,-1.7979 0.2609,-2.77803 -0.27971,-2.77803 -0.37321,0 -0.49575,0.49249 -0.48274,1.94021 0.0191,2.1308 0.41652,2.56746 0.76245,0.83782 z m -1.3567,-1.62801 c -0.13342,-0.53161 -0.34906,-1.04753 -0.4792,-1.14649 -0.13013,-0.099 -0.25248,-0.37835 -0.27188,-0.62087 -0.0194,-0.24253 -0.0591,-0.76782 -0.0882,-1.16731 -0.0316,-0.43349 -0.21039,-0.62903 -0.44347,-0.48498 -0.25197,0.15573 -0.3245,0.007 -0.20438,-0.42013 0.10241,-0.36384 0.28222,-0.99778 0.39958,-1.40877 0.15698,-0.5497 -0.0221,-0.90156 -0.67754,-1.331 -1.25573,-0.82279 -1.11594,-1.519 0.63813,-3.17806 0.84098,-0.79544 1.73606,-1.84312 1.98905,-2.32817 0.25299,-0.48505 0.66944,-1.12003 0.92544,-1.41106 2.05523,-2.33645 2.9867,-3.56134 3.71163,-4.88083 0.46219,-0.84125 1.1179,-2.03184 1.45714,-2.64575 0.72355,-1.3094 0.83731,-3.47549 0.17693,-3.36901 -0.4776,0.077 -1.46976,-0.23831 -2.50315,-0.79555 -0.48261,-0.26023 -0.81893,-0.19926 -1.2994,0.23557 -0.86385,0.78177 -4.96765,9.10532 -6.34371,12.86663 -0.60335,1.64918 -1.24608,3.14932 -1.42829,3.33364 -0.56787,0.57444 -0.36341,2.9463 0.35595,4.1292 0.37799,0.62155 0.60674,1.26036 0.50833,1.41959 -0.0984,0.15922 -0.0108,0.2895 0.19467,0.2895 0.20547,0 0.37358,0.28216 0.37358,0.62703 0,0.34488 0.24712,0.97986 0.54915,1.41107 0.30204,0.43121 0.4211,0.78965 0.26458,0.79653 -0.46076,0.0203 1.43337,1.0196 1.95845,1.03329 0.34732,0.009 0.41243,-0.25351 0.2366,-0.95407 z m 41.62241,-7.12622 c -0.2451,-2.86805 -0.46301,-3.52456 -0.92691,-2.79243 -0.36608,0.57775 -0.41958,7.48724 -0.0607,7.84607 0.60644,0.60644 1.20821,-2.4727 0.98766,-5.05364 z m -41.25899,3.47298 c 0.26634,-0.43094 -0.76096,-1.63668 -1.10303,-1.29461 -0.29179,0.2918 0.16764,1.68123 0.55591,1.68123 0.1695,0 0.4157,-0.17398 0.54712,-0.38662 z m 2.20729,-0.55628 c -0.1408,-1.18942 -0.83782,-1.45449 -1.10798,-0.42137 -0.24508,0.93717 -0.0297,1.36427 0.68785,1.36427 0.36904,0 0.4976,-0.28852 0.42013,-0.9429 z m 36.73973,-2.86951 c 0.007,-0.44764 -0.16746,-1.52931 -0.38763,-2.4037 -0.31372,-1.24591 -0.30118,-1.77506 0.058,-2.44618 0.36246,-0.67727 0.36964,-1.05099 0.0344,-1.78689 -0.23319,-0.51179 -0.52757,-0.82692 -0.65418,-0.70031 -0.12661,0.12661 -0.26352,1.93301 -0.30423,4.01421 -0.0407,2.0812 -0.18317,4.33961 -0.31657,5.01868 l -0.24256,1.23468 0.90007,-1.0583 c 0.49504,-0.58206 0.90578,-1.42455 0.91276,-1.87219 z m 10.94843,2.2627 c 0,-0.0762 -0.24636,-0.23318 -0.54747,-0.34872 -0.31394,-0.12047 -0.45554,-0.0613 -0.33195,0.13864 0.20717,0.3352 0.87942,0.49579 0.87942,0.21008 z m -47.91575,-1.85625 c 0.66056,-0.59779 0.80783,-1.40381 0.43434,-2.37711 -0.18877,-0.49194 -0.31765,-0.494 -1.23468,-0.0198 -0.97157,0.50242 -1.46731,1.92243 -0.67114,1.92243 0.19403,0 0.35277,0.23812 0.35277,0.52915 0,0.68475 0.31888,0.66916 1.11871,-0.0547 z m 1.70342,-2.59107 c 0,-0.39196 -0.23518,-0.70553 -0.52915,-0.70553 -0.63787,0 -0.68197,0.4116 -0.10583,0.98774 0.56929,0.5693 0.63498,0.5401 0.63498,-0.28221 z m 39.73451,-3.9548 c 0.48219,-3.24083 0.44615,-4.15882 -0.16327,-4.15882 -0.17239,0 -0.31344,0.84115 -0.31344,1.86924 0,1.02808 -0.1882,2.22089 -0.41822,2.65069 -0.39147,0.73148 -0.18647,3.50965 0.22837,3.09481 0.0985,-0.0984 0.39841,-1.65362 0.66656,-3.45592 z m -41.67472,1.13267 c 0.11991,-0.19402 0.0499,-0.35277 -0.15557,-0.35277 -0.20547,0 -0.37358,0.15875 -0.37358,0.35277 0,0.19402 0.07,0.35277 0.15556,0.35277 0.0856,0 0.25367,-0.15875 0.37359,-0.35277 z m 27.27648,-2.161 c 0.6445,-0.36697 2.19226,-0.8608 3.43946,-1.09739 1.24722,-0.2366 2.26766,-0.53328 2.26766,-0.6593 0,-0.12601 -0.26859,-0.44699 -0.59687,-0.71327 -0.51384,-0.4168 -0.55927,-0.41055 -0.3266,0.045 0.14864,0.29103 0.0348,0.24077 -0.25293,-0.11168 -0.28775,-0.35246 -0.57732,-0.59354 -0.6435,-0.53574 -0.0662,0.0578 -0.83467,-0.14576 -1.70776,-0.45235 -3.42755,-1.20363 -5.19201,-1.67099 -7.01551,-1.85822 -1.05393,-0.10821 -2.19729,-0.46381 -2.56695,-0.79835 -0.64777,-0.58623 -0.63793,-0.61526 0.34901,-1.03024 0.55856,-0.23486 1.45222,-0.34354 1.98592,-0.24152 0.97003,0.18544 0.96992,0.18506 -0.33356,-1.11842 -1.0012,-1.00121 -1.25603,-1.49471 -1.09765,-2.12575 0.26885,-1.07115 0.92236,-1.29172 2.52012,-0.85056 0.71615,0.19774 1.69376,0.26122 2.17246,0.14108 0.59549,-0.14946 0.79316,-0.0935 0.62588,0.17716 -0.15111,0.24449 0.006,0.36913 0.4114,0.32628 1.31099,-0.13857 2.28039,0.0194 2.08266,0.33928 -0.11128,0.18006 0.15716,0.43113 0.59652,0.55794 0.43937,0.12681 1.6313,0.63994 2.64873,1.1403 1.77121,0.87103 1.879,0.8834 2.53388,0.29075 0.79926,-0.72333 0.81212,-2.48108 0.0184,-2.51083 -0.63441,-0.0238 -1.95913,-0.36467 -4.7549,-1.22361 -2.91189,-0.89462 -4.23588,-1.06296 -9.51801,-1.2102 -5.15869,-0.1438 -6.37495,0.18894 -6.72934,1.84098 -0.7774,3.62395 -1.04606,4.55514 -1.45653,5.04828 -0.70193,0.84332 -0.61048,1.03736 1.38846,2.94604 1.01862,0.9726 1.81592,1.88123 1.77179,2.01917 -0.12752,0.39855 2.32181,1.78298 2.71955,1.53716 0.19754,-0.12209 0.35918,-0.0445 0.35918,0.17241 0,0.21693 0.15875,0.2963 0.35277,0.17639 0.19402,-0.11992 0.35277,-0.059 0.35277,0.13528 0,0.91434 6.66859,0.63179 8.40351,-0.35607 z m 38.3952,-1.10209 c -0.0979,-0.24253 -0.17793,-0.0441 -0.17793,0.44096 0,0.48505 0.0801,0.68348 0.17793,0.44096 0.0979,-0.24253 0.0979,-0.63939 0,-0.88192 z m -13.35678,-0.88191 c 0.48604,-0.42091 0.78626,-1.25558 0.94356,-2.62319 0.24902,-2.16519 0.29586,-2.07468 -2.18874,-4.22949 -0.59856,-0.51912 -1.20775,-0.83661 -1.35376,-0.70554 -0.14601,0.13107 -0.16554,0.063 -0.0434,-0.15137 0.27715,-0.48632 -1.16053,-1.87458 -2.13583,-2.0624 -0.39944,-0.0769 -1.21012,-0.39009 -1.80153,-0.69591 -1.22763,-0.63484 -1.59289,-0.69872 -1.30176,-0.22766 0.11163,0.18061 0.0599,0.41678 -0.11486,0.52481 -0.1748,0.10803 -0.42454,0.95241 -0.55499,1.8764 -0.13045,0.92399 -0.31612,1.95117 -0.41259,2.28263 -0.14385,0.49426 0.16117,0.64997 1.69573,0.86571 1.02913,0.14469 1.99315,0.22968 2.14228,0.18888 0.14912,-0.0408 0.46406,0.36336 0.69985,0.89813 0.23579,0.53476 0.86781,1.39315 1.40449,1.90755 0.57564,0.55172 0.97579,1.31121 0.97579,1.85202 0,1.10167 0.95756,1.24182 2.04577,0.29943 z m -16.1564,-0.42014 c 0,-0.18257 -0.16635,-0.43476 -0.36966,-0.56041 -0.51776,-0.31999 -1.48556,0.10631 -1.21933,0.5371 0.27748,0.44896 1.58899,0.4682 1.58899,0.0233 z m -2.1166,-0.54997 c 0,-0.29103 -0.15874,-0.52915 -0.35276,-0.52915 -0.19403,0 -0.35278,0.23812 -0.35278,0.52915 0,0.29103 0.15875,0.52915 0.35278,0.52915 0.19402,0 0.35276,-0.23812 0.35276,-0.52915 z m -28.22127,-0.90274 c 0,-0.37659 -0.14176,-0.68471 -0.31502,-0.68471 -0.41428,0 -0.80142,1.03159 -0.54366,1.44865 0.30764,0.49779 0.85868,0.008 0.85868,-0.76394 z m 33.37313,0.11636 c -0.3586,-0.35859 -0.65447,0.18129 -0.36025,0.65734 0.22225,0.35962 0.30534,0.3599 0.42483,0.001 0.0817,-0.2451 0.0526,-0.54154 -0.0646,-0.65876 z m -5.68552,-1.14654 c 0.24523,-0.39678 -0.41781,-1.80007 -0.79975,-1.69267 -0.13972,0.0393 -0.61357,-0.12788 -1.053,-0.37149 -0.6701,-0.37149 -0.83264,-0.35513 -1.00785,0.10144 -0.11489,0.29939 -0.43002,0.54436 -0.70029,0.54436 -0.77966,0 -0.57423,0.49077 0.4787,1.14359 1.07079,0.66389 2.74922,0.81352 3.08219,0.27477 z m 1.65591,-1.13008 c -0.66178,-1.18459 -1.47501,-1.71264 -1.47501,-0.95775 0,0.50239 1.37911,2.08053 1.81815,2.08053 0.15626,0 0.002,-0.50525 -0.34314,-1.12278 z m 11.22456,0.28201 c 0,-0.48431 -1.01972,-0.90899 -2.20479,-0.91824 -0.70513,-0.006 -0.84194,0.90406 -0.17638,1.17262 0.94297,0.38049 2.38117,0.22685 2.38117,-0.25438 z m -36.33489,-0.0643 c 0,-0.38781 -0.81632,-1.744 -1.19921,-1.9923 -0.63607,-0.41248 -0.87973,0.90404 -0.29142,1.57453 0.50953,0.5807 1.49063,0.85566 1.49063,0.41777 z m 18.69659,-0.30081 c 0,-0.0812 -0.51592,-0.45946 -1.14649,-0.84061 -0.92298,-0.55791 -1.45596,-0.6409 -2.73394,-0.4257 -1.29795,0.21857 -1.39445,0.28026 -0.52914,0.33831 0.58206,0.0391 1.6139,0.28496 2.29297,0.54646 1.2694,0.48885 2.1166,0.64156 2.1166,0.38154 z m 10.19295,-0.42047 c 0.0765,-0.0669 -0.11082,-0.79992 -0.41632,-1.62884 -0.3055,-0.82892 -0.62134,-1.82461 -0.70187,-2.21265 -0.11024,-0.5312 -0.19028,-0.57478 -0.32391,-0.17639 -0.0976,0.29103 -0.37475,1.08476 -0.61584,1.76383 -0.2411,0.67908 -0.48982,1.59653 -0.55271,2.03878 -0.10604,0.74558 -0.0203,0.7871 1.17859,0.57054 0.71112,-0.12845 1.35555,-0.28832 1.43206,-0.35527 z m 2.15386,-0.49021 c 0,-0.19403 -0.23812,-0.35277 -0.52915,-0.35277 -0.29103,0 -0.52915,0.15874 -0.52915,0.35277 0,0.19402 0.23812,0.35276 0.52915,0.35276 0.29103,0 0.52915,-0.15874 0.52915,-0.35276 z m 0.75938,-2.64575 c -0.15405,-1.77726 -0.24625,-1.9161 -1.12063,-1.68745 -0.56822,0.1486 -0.69959,0.44683 -0.64581,1.46614 0.0881,1.66907 0.21857,1.87042 1.12842,1.74074 0.65858,-0.0939 0.74396,-0.2972 0.63802,-1.51943 z m -31.10847,-1.16731 c -0.0187,-0.99424 -0.80376,-1.65862 -2.10537,-1.78173 -0.67908,-0.0642 -1.4728,-0.29526 -1.76383,-0.51341 -0.29103,-0.21815 -0.1489,0.0302 0.31585,0.55193 0.46475,0.52171 0.95543,0.88031 1.09039,0.7969 0.13496,-0.0834 0.59614,0.32276 1.02483,0.9026 0.79988,1.08189 1.45804,1.1019 1.43813,0.0437 z m 1.0172,-1.68228 c -0.26226,-0.53831 -0.67526,-1.04338 -0.91779,-1.12238 -0.62433,-0.20337 -0.54677,0.83678 0.14063,1.88589 0.78621,1.1999 1.427,0.57035 0.77716,-0.76351 z m 24.0404,0.7454 c 0,-0.69946 1.08756,-1.23341 2.3303,-1.14409 0.91857,0.066 1.01941,-0.0328 1.00528,-0.98492 -0.0121,-0.81622 -0.19384,-1.08411 -0.7945,-1.17113 -0.42833,-0.062 -0.94278,-0.41923 -1.1432,-0.79372 -0.57523,-1.07484 -1.13315,-0.82653 -0.86688,0.38582 0.16834,0.76646 0.0273,1.41757 -0.50112,2.31315 -0.81036,1.37346 -0.91808,1.91163 -0.38264,1.91163 0.19402,0 0.35276,-0.23253 0.35276,-0.51674 z m 17.4019,0.0168 c 0.29076,-0.75772 -0.81302,-0.99807 -1.75352,-0.38183 -1.1143,0.73012 -1.05157,0.88179 0.36473,0.88179 0.70745,0 1.27539,-0.20446 1.38879,-0.49996 z m 5.46027,-0.23203 c -0.0695,-0.20858 -0.27722,-0.37923 -0.46154,-0.37923 -0.18432,0 -0.39201,0.17065 -0.46153,0.37923 -0.0695,0.20857 0.13816,0.37922 0.46153,0.37922 0.32337,0 0.53106,-0.17065 0.46154,-0.37922 z m 0.98711,-2.51698 c -0.48982,-0.83236 -2.07248,-2.68489 -3.51701,-4.11674 l -2.6264,-2.60336 -2.28319,-0.16454 c -2.16676,-0.15615 -2.34388,-0.10874 -3.47325,0.92974 -1.10451,1.0156 -1.14566,1.12865 -0.57246,1.5723 0.33968,0.26292 1.37152,0.57748 2.29298,0.69904 3.21265,0.4238 3.63135,0.62259 3.37512,1.60244 -0.14653,0.5603 0.22063,0.78844 2.3092,1.43485 1.36589,0.42273 2.9237,1.11492 3.4618,1.5382 0.53811,0.42327 1.06162,0.7299 1.16337,0.6814 0.10176,-0.0485 0.20485,0.0705 0.22911,0.26457 0.0952,0.76146 0.22105,0.85558 0.37274,0.2787 0.0872,-0.33177 -0.24217,-1.28424 -0.73201,-2.1166 z m -63.00629,1.83789 c 0,-0.19402 -0.15874,-0.35276 -0.35277,-0.35276 -0.19402,0 -0.35276,0.15874 -0.35276,0.35276 0,0.19403 0.15874,0.35277 0.35276,0.35277 0.19403,0 0.35277,-0.15874 0.35277,-0.35277 z m 3.17489,0 c 0,-0.19402 -0.07,-0.35276 -0.15556,-0.35276 -0.0856,0 -0.25367,0.15874 -0.37359,0.35276 -0.11991,0.19403 -0.0499,0.35277 0.15557,0.35277 0.20547,0 0.37358,-0.15874 0.37358,-0.35277 z m 35.57103,-0.83955 c 0.0775,-0.40246 -0.0214,-0.56387 -0.25648,-0.41858 -0.23353,0.14432 -0.3049,0.0339 -0.18313,-0.28343 0.10972,-0.28595 0.0214,-0.85275 -0.19635,-1.25956 -0.30941,-0.57813 -0.64273,-0.70519 -1.52643,-0.58183 -1.66694,0.2327 -2.71801,0.6019 -2.71801,0.95473 0,0.17139 -0.27781,0.31645 -0.61734,0.32235 -0.54027,0.009 -0.52926,0.0626 0.0882,0.42592 1.0684,0.62872 4.16383,1.64816 4.7583,1.56708 0.2888,-0.0394 0.58186,-0.36639 0.65125,-0.72668 z m 6.76088,0.48679 c 0,-0.19402 -0.24749,-0.35277 -0.54997,-0.35277 -0.30248,0 -0.45186,0.15875 -0.33195,0.35277 0.11992,0.19402 0.3674,0.35276 0.54997,0.35276 0.18257,0 0.33195,-0.15874 0.33195,-0.35276 z m 9.65798,-0.18112 c 0.70276,-0.29364 1.27776,-0.7803 1.27776,-1.08149 0,-0.76167 -0.65677,-1.91229 -1.09153,-1.91229 -0.19865,0 -0.24914,0.19843 -0.11222,0.44096 0.19916,0.35276 0.15394,0.35276 -0.22612,0 -0.26128,-0.24253 -0.80843,-0.44096 -1.21588,-0.44096 -0.40744,0 -0.89542,-0.15461 -1.08439,-0.34358 -0.19961,-0.19961 -0.77948,-0.22701 -1.38382,-0.0654 -0.86404,0.23108 -1.05006,0.47351 -1.09823,1.43127 -0.0475,0.94432 0.14236,1.27524 1.0487,1.82789 1.33715,0.81536 2.2015,0.84729 3.88573,0.14358 z m -45.52006,-1.45975 c -0.35705,-0.24381 -0.88731,-0.65953 -1.17834,-0.92381 -0.29103,-0.26428 -1.21538,-0.67827 -2.05411,-0.91999 -1.23864,-0.35697 -1.63604,-0.35259 -2.11659,0.0233 -0.87799,0.68682 -1.07628,1.05024 -0.86849,1.59174 0.10572,0.27551 -0.004,0.44277 -0.25312,0.38476 -0.24207,-0.0564 -0.51289,0.0958 -0.60182,0.33834 -0.0946,0.2581 0.12602,0.44096 0.5321,0.44096 0.41046,0 0.77375,-0.30578 0.88959,-0.74876 0.16709,-0.63895 0.36714,-0.71444 1.36402,-0.51477 0.64251,0.12869 1.44601,0.26153 1.78555,0.2952 0.33953,0.0337 0.61734,0.19531 0.61734,0.35921 0,0.16389 0.14923,0.20576 0.33162,0.093 0.18239,-0.11273 0.53956,0.0207 0.79372,0.29657 0.34197,0.37113 0.58502,0.4009 0.93492,0.1145 0.38751,-0.3172 0.35569,-0.46699 -0.17639,-0.83033 z m 3.40761,0.0645 c 0,-0.31558 -0.20682,-0.43871 -0.52914,-0.31503 -0.29104,0.11169 -0.52915,0.34482 -0.52915,0.51808 0,0.17327 0.23811,0.31503 0.52915,0.31503 0.29103,0 0.52914,-0.23314 0.52914,-0.51808 z m 18.9082,-1.06207 c 0.17241,-1.17471 1.89651,-1.83571 4.97088,-1.90578 1.00716,-0.023 1.92728,-0.1972 2.04472,-0.38721 0.27635,-0.44716 -0.46819,-1.84765 -0.85514,-1.6085 -0.1623,0.1003 -0.48982,-0.0523 -0.72781,-0.33901 -0.23798,-0.28676 -0.57347,-0.43439 -0.74551,-0.32806 -0.17204,0.10633 -0.31279,0.0252 -0.31279,-0.18027 0,-0.22481 -0.91767,-0.37358 -2.30431,-0.37358 -2.96695,0 -4.65901,-0.66816 -4.58537,-1.81067 0.0886,-1.37437 1.95121,-2.06857 5.55194,-2.06921 l 3.07183,-5.5e-4 0.91289,-1.55772 c 0.9722,-1.65894 1.69177,-3.74581 1.39419,-4.04339 -0.49677,-0.49677 -3.18023,0.0602 -4.12658,0.8565 -0.56486,0.4753 -1.17359,0.86418 -1.35272,0.86418 -0.17914,0 -0.3257,0.40496 -0.3257,0.89991 0,1.02869 -1.4189,1.79173 -3.9861,2.14361 -1.60189,0.21956 -4.12751,-0.5652 -4.12751,-1.28251 0,-0.21537 -0.14139,-0.30421 -0.31418,-0.19741 -0.1728,0.10679 -0.57664,-0.20639 -0.89742,-0.69596 -0.32077,-0.48957 -0.73893,-0.79389 -0.92924,-0.67628 -0.1903,0.11762 -0.31216,0.083 -0.27079,-0.0769 0.11934,-0.46135 -1.49555,-2.93241 -1.9446,-2.97559 -0.58317,-0.0561 -2.15044,0.089 -2.27812,0.21093 -0.22744,0.21712 -0.40486,3.20357 -0.22415,3.77293 0.10431,0.32866 0.77736,0.78727 1.49567,1.01913 0.71831,0.23186 2.37845,0.97169 3.68921,1.64406 1.77524,0.91064 2.4483,1.46108 2.63845,2.15778 0.30137,1.10421 0.24927,5.13487 -0.083,6.42382 -0.21942,0.85109 -0.16564,0.89474 0.94293,0.76532 1.12942,-0.13186 1.17806,-0.20051 1.23791,-1.74691 0.064,-1.65478 0.79961,-2.83762 1.4967,-2.40679 0.26574,0.16423 0.3167,0.99643 0.15668,2.55835 -0.18781,1.83319 -0.14067,2.28278 0.22652,2.16038 0.25503,-0.085 0.50728,-0.45156 0.56056,-0.81455 z m -9.66573,0.0985 c -0.32925,-0.32925 -0.51739,-0.32925 -0.84664,0 -0.32925,0.32925 -0.23518,0.42332 0.42332,0.42332 0.6585,0 0.75257,-0.0941 0.42332,-0.42332 z m -9.45659,-0.48745 c 0.34916,-0.90989 0.24573,-1.5586 -0.24851,-1.5586 -0.25444,0 -0.84087,-0.35239 -1.30318,-0.78309 -0.99483,-0.92683 -1.60169,-1.06962 -2.08269,-0.49005 -0.68316,0.82317 -0.26186,1.91843 1.01149,2.62956 1.549,0.86507 2.34497,0.92642 2.62289,0.20218 z m 1.77652,-0.60322 c 0.24729,-0.69963 0.16822,-1.22335 -0.32218,-2.13396 -0.57057,-1.0595 -0.59669,-1.39679 -0.21402,-2.76356 0.2701,-0.9647 0.71936,-1.68504 1.18127,-1.89402 0.40997,-0.18549 0.80207,-0.51612 0.87132,-0.73474 0.23769,-0.75029 -1.06411,-0.85346 -2.33564,-0.1851 -1.06578,0.56021 -1.25411,0.83009 -1.16027,1.66264 0.0616,0.54663 -0.0938,1.37839 -0.34528,1.84835 -0.41617,0.77763 -0.36727,0.92626 0.5438,1.65272 0.91352,0.72842 0.97897,0.92926 0.74812,2.29568 -0.19986,1.18296 -0.15238,1.464 0.22609,1.3383 0.26349,-0.0875 0.62655,-0.57636 0.80679,-1.08631 z m 5.64634,0.81719 c 0.49768,-0.18922 0.90488,-0.59545 0.90488,-0.90274 0,-0.33248 -0.1649,-0.45678 -0.40727,-0.30699 -0.23586,0.14577 -0.31212,0.0978 -0.18119,-0.1141 0.12434,-0.2012 -0.0622,-0.74164 -0.4146,-1.201 -0.35237,-0.45935 -0.74209,-1.11299 -0.86604,-1.45252 -0.41205,-1.12878 1.0243,-0.69015 2.02156,0.61734 0.51796,0.67907 1.18115,1.23468 1.47376,1.23468 0.2926,0 0.4339,0.15874 0.31399,0.35276 -0.11991,0.19403 0.12605,0.35277 0.54657,0.35277 0.64071,0 0.7285,-0.1438 0.54183,-0.88755 -0.18194,-0.72494 -0.0615,-0.94887 0.65744,-1.22221 0.87077,-0.33106 1.52015,-1.75801 1.10543,-2.42905 -0.11751,-0.19014 -0.77362,-0.27626 -1.45801,-0.19137 -0.68439,0.0849 -1.57482,-0.0225 -1.97872,-0.23868 -0.56145,-0.30048 -0.67278,-0.29339 -0.47284,0.0301 0.19933,0.32252 0.0891,0.33089 -0.46338,0.0352 -1.23663,-0.66182 -3.61346,-0.46468 -4.89206,0.40576 -1.18984,0.81002 -1.52156,1.39936 -0.72977,1.29654 1.08039,-0.14029 1.32287,0.0829 1.32287,1.21782 0,0.65532 0.24398,1.39397 0.54218,1.64145 0.29819,0.24749 0.51803,0.70347 0.48852,1.01331 -0.11679,1.22641 0.28302,1.38028 1.94485,0.74845 z m 23.19497,-1.15522 c 0.0888,-0.92058 0.28433,-1.16879 0.99246,-1.25964 1.57341,-0.20186 2.23396,-1.75481 1.29348,-3.04099 -0.45072,-0.6164 -0.50996,-0.61728 -1.4201,-0.0209 -0.87948,0.57626 -0.99682,0.57971 -1.58583,0.0467 -0.34985,-0.31661 -0.82201,-0.57565 -1.04926,-0.57565 -0.22725,0 -0.41318,-0.16596 -0.41318,-0.3688 0,-0.47886 -1.6217,-2.10057 -2.10056,-2.10057 -0.71835,0 -0.35456,1.00757 0.67728,1.8758 0.88057,0.74096 0.96639,0.94636 0.54239,1.29825 -0.43324,0.35956 -0.41722,0.54918 0.11455,1.35593 0.99948,1.51629 1.45194,2.29898 1.81675,3.14269 0.49203,1.13796 1.00366,0.97853 1.13202,-0.35276 z m 2.63782,0.59362 c 0.34072,-0.88789 -0.45461,-1.41207 -0.89474,-0.58969 -0.36802,0.68765 -0.2177,1.14256 0.37754,1.14256 0.16778,0 0.40052,-0.24879 0.5172,-0.55287 z m -24.22238,-1.71929 c 0,-0.0856 -0.15874,-0.25368 -0.35277,-0.37359 -0.19402,-0.11991 -0.35276,-0.0499 -0.35276,0.15556 0,0.20547 0.15874,0.37359 0.35276,0.37359 0.19403,0 0.35277,-0.07 0.35277,-0.15556 z m 26.74771,-4.06147 c 0.0627,-0.6403 -0.0305,-1.30855 -0.20692,-1.485 -0.19259,-0.19258 -0.33983,0.18481 -0.36838,0.94413 -0.0262,0.69573 -0.15356,1.43648 -0.28313,1.64613 -0.13747,0.22243 -0.0315,0.31407 0.25449,0.22004 0.26953,-0.0886 0.54131,-0.685 0.60394,-1.3253 z m -39.44728,-0.38975 c 0,-0.3995 -0.15874,-0.62825 -0.35276,-0.50833 -0.19403,0.11991 -0.35277,0.44677 -0.35277,0.72635 0,0.27958 0.15874,0.50833 0.35277,0.50833 0.19402,0 0.35276,-0.32686 0.35276,-0.72635 z m 2.81225,-0.18155 c -0.29395,-0.77313 -0.19787,-1.05522 0.6472,-1.90029 0.54581,-0.54582 1.79732,-1.40028 2.78112,-1.89881 1.51383,-0.76712 1.82464,-1.0978 2.02233,-2.15158 0.22057,-1.17575 -0.21794,-2.67322 -0.77904,-2.66031 -0.13869,0.003 -0.87481,0.36037 -1.63583,0.79372 -1.5321,0.87245 -3.41958,3.61653 -3.53994,5.14647 -0.0418,0.53103 -0.24947,1.27558 -0.46155,1.65454 -0.2988,0.53393 -0.25979,0.82805 0.17328,1.3066 0.81099,0.89612 1.19064,0.75702 0.79243,-0.29034 z m 31.69853,-0.5308 c 0.0639,-0.46985 0.51419,-1.23066 1.00073,-1.69068 0.74879,-0.70797 1.01534,-0.77684 1.73592,-0.44852 0.73638,0.33552 0.85129,0.2979 0.85129,-0.27874 0,-0.80235 -2.02055,-2.59415 -2.55374,-2.26463 -0.20972,0.12962 -0.27572,0.0687 -0.14854,-0.13706 0.31719,-0.51322 -0.49545,-0.76139 -1.39631,-0.42641 -0.76409,0.28411 -2.09318,2.146 -2.30799,3.2332 -0.1328,0.67212 1.79394,3.0959 2.34977,2.95595 0.19402,-0.0489 0.40501,-0.47325 0.46887,-0.94311 z m -24.9861,-3.18501 c 0,-0.17326 -0.39686,-0.31502 -0.88192,-0.31502 -0.91678,0 -1.20998,0.5323 -0.44095,0.80055 0.56729,0.19789 1.32287,-0.0794 1.32287,-0.48553 z m 15.05227,-3.82044 c 1.84152,-0.83612 2.48524,-1.89077 1.86333,-3.05281 -0.24307,-0.45418 -0.54275,-0.76348 -0.66595,-0.68734 -0.1232,0.0761 -0.25263,-0.12771 -0.28762,-0.453 -0.2634,-2.44891 -0.67377,-3.76805 -1.20392,-3.86996 -0.32448,-0.0624 -0.68082,0.1723 -0.79644,0.52452 -0.28381,0.8646 -3.49799,3.17581 -4.82052,3.46629 -1.62568,0.35706 -2.19602,2.46574 -1.04277,3.85532 0.26457,0.31879 0.69372,0.498 0.95366,0.39825 0.25995,-0.0998 0.47263,-0.0276 0.47263,0.16032 0,0.60938 3.97402,0.36379 5.5276,-0.34159 z m -9.25683,-2.34042 c 0.50857,-0.50858 0.80318,-2.62055 0.36555,-2.62055 -0.44364,0 -1.88603,1.14615 -2.08065,1.65332 -0.21282,0.55461 0.34411,1.52157 0.87638,1.52157 0.1564,0 0.53383,-0.24945 0.83872,-0.55434 z m 13.60669,-0.47835 c 0,-0.37396 -0.41827,-1.00894 -0.92949,-1.41107 -1.64547,-1.29432 -2.08213,-0.71964 -0.81033,1.06643 0.83321,1.17013 1.73982,1.34972 1.73982,0.34464 z m -10.73904,-3.52037 c -0.10873,-0.17593 0.0803,-0.25585 0.42014,-0.17762 0.70401,0.1621 1.74073,-0.64246 2.65451,-2.06006 0.34393,-0.53356 0.85978,-0.97011 1.14634,-0.97011 1.24072,0 0.31473,-1.25238 -1.16307,-1.57302 -0.63522,-0.13782 -1.58768,-0.6097 -2.11659,-1.04862 -0.66507,-0.5519 -1.47619,-0.81548 -2.62993,-0.8546 -1.55294,-0.0527 -1.68301,0.0107 -1.88149,0.91611 -0.11726,0.53497 -0.27341,1.16869 -0.34699,1.40825 -0.0736,0.23957 0.15932,0.59245 0.51756,0.78417 0.60534,0.32397 1.29966,2.44708 1.12969,3.45441 -0.0481,0.28494 0.37528,0.44096 1.19656,0.44096 0.69903,0 1.182,-0.14394 1.07327,-0.31987 z m 10.20989,-2.14948 c 0,-0.36294 -0.44274,-0.56517 -1.40951,-0.6438 -0.81667,-0.0664 -1.67558,-0.40028 -2.04214,-0.79374 -0.57728,-0.61964 -1.3107,-0.91043 -1.3107,-0.51967 0,0.0877 0.58784,0.7303 1.30631,1.42808 1.01628,0.987 1.54494,1.24531 2.38117,1.16347 0.67351,-0.0659 1.07487,-0.30278 1.07487,-0.63434 z m -0.52915,-1.73526 c 0,-0.1783 -0.27403,-0.80163 -0.60895,-1.38519 -0.60549,-1.055 -1.46122,-1.43525 -2.66881,-1.18589 -0.80929,0.16712 -0.49236,1.40458 0.58138,2.27007 0.79635,0.6419 2.69638,0.85401 2.69638,0.30101 z m -6.3498,-2.86179 c 0,-0.7653 -0.19273,-0.87348 -2.11659,-1.18807 l -1.23468,-0.20189 1.15205,1.05328 c 1.33998,1.22509 2.19922,1.35664 2.19922,0.33668 z m -6.16938,-1.86016 c 0.73442,0.11918 1.23066,0.0541 1.23066,-0.16147 0,-0.45417 -0.85056,-0.78943 -2.00279,-0.78943 -0.48774,0 -1.32609,-0.3128 -1.86299,-0.69511 -1.65703,-1.17991 -2.02653,0.20576 -0.48416,1.81565 0.9094,0.94922 0.95772,0.95969 1.41508,0.30671 0.36929,-0.52724 0.74442,-0.6321 1.7042,-0.47635 z m 6.69853,-0.069 c 0,-0.3557 -0.19843,-0.71288 -0.44095,-0.79372 -0.27928,-0.0931 -0.44096,0.19794 -0.44096,0.79372 0,0.59579 0.16168,0.88682 0.44096,0.79373 0.24252,-0.0808 0.44095,-0.43802 0.44095,-0.79373 z m -1.94021,-0.17638 c 0,-0.19402 -0.36329,-0.35276 -0.80732,-0.35276 -1.04188,0 -3.47524,-1.23589 -3.14754,-1.59862 0.13795,-0.1527 -0.0618,-0.16457 -0.44396,-0.0264 -0.38213,0.13818 -0.58193,0.13839 -0.44402,4.6e-4 0.37735,-0.37733 -0.44275,-1.19758 -1.19737,-1.19758 -0.42282,0 -0.66234,0.25022 -0.66234,0.69194 0,0.50706 0.37156,0.79198 1.39061,1.06639 0.76483,0.20594 2.07447,0.68481 2.91032,1.06414 1.70122,0.77208 2.40162,0.87486 2.40162,0.35243 z m 5.29149,0.0377 c 0,-0.17326 -0.23812,-0.4064 -0.52915,-0.51808 -0.32233,-0.12368 -0.52915,-5.6e-4 -0.52915,0.31503 0,0.28494 0.23812,0.51808 0.52915,0.51808 0.29103,0 0.52915,-0.14176 0.52915,-0.31503 z m 2.46937,-0.56689 c 0,-0.29103 -0.23813,-0.52915 -0.52916,-0.52915 -0.55087,0 -0.69988,0.41722 -0.29397,0.82312 0.4059,0.40591 0.82313,0.2569 0.82313,-0.29397 z m -4.03871,-1.81649 c -0.0425,-1.22402 -0.12931,-1.32484 -1.25092,-1.45292 -0.76682,-0.0876 -1.33926,0.0442 -1.57366,0.36217 -0.20263,0.27489 -0.60654,0.58433 -0.89757,0.68765 -0.33375,0.11849 0.18732,0.5121 1.41106,1.06592 1.06712,0.48293 2.03394,0.8273 2.14849,0.76526 0.11455,-0.062 0.18772,-0.70467 0.1626,-1.42808 z m 2.27487,0.96343 c 0,-0.7237 -0.45744,-1.43992 -0.91966,-1.43992 -0.50001,0 -0.68446,1.10042 -0.25622,1.52865 0.34785,0.34786 1.17588,0.28537 1.17588,-0.0887 z m 1.40332,-2.23365 c -0.0146,-2.16889 -2.48393,-6.01995 -3.46942,-5.41089 -0.19498,0.12051 -0.45422,0.0578 -0.57609,-0.13942 -0.36639,-0.59285 -3.10443,-0.40436 -4.41863,0.30418 -0.96412,0.51979 -1.20139,0.84308 -1.10034,1.49925 0.0709,0.46011 0.16524,1.07468 0.20971,1.36571 0.10315,0.6749 1.12507,0.8789 2.08899,0.41701 1.18016,-0.56551 2.3348,-0.73674 2.3348,-0.34624 0,0.19661 0.24636,0.26294 0.54747,0.1474 0.35769,-0.13726 0.45992,-0.0684 0.2949,0.19859 -0.16603,0.26864 -0.0614,0.33532 0.30525,0.19461 0.32252,-0.12376 0.64072,0.002 0.75436,0.29812 0.18261,0.47586 1.86677,1.37768 2.38322,1.27613 0.12562,-0.0247 0.14679,0.26716 0.0471,0.64857 -0.10034,0.3837 -0.005,0.69348 0.21256,0.69348 0.21666,0 0.39043,-0.51593 0.38617,-1.1465 z m -11.10438,-0.26457 c -0.11991,-0.19402 -0.3674,-0.35277 -0.54997,-0.35277 -0.18257,0 -0.33194,0.15875 -0.33194,0.35277 0,0.19402 0.24748,0.35277 0.54996,0.35277 0.30249,0 0.45186,-0.15875 0.33195,-0.35277 z m -3.53216,-1.05101 c 0.29285,-0.47385 -0.47959,-1.84061 -0.89511,-1.5838 -0.54011,0.33381 -0.39683,1.92928 0.17326,1.92928 0.27958,0 0.60441,-0.15547 0.72185,-0.34548 z m 3.73928,-1.17596 c -0.21093,-0.21092 -0.3835,-0.72918 -0.3835,-1.15167 0,-0.95052 -0.85994,-1.71169 -1.60903,-1.42424 -0.82364,0.31606 -0.46602,1.37747 0.64324,1.90912 0.53118,0.25459 0.96579,0.70172 0.96579,0.99361 0,0.29234 0.17225,0.42426 0.3835,0.2937 0.27616,-0.17067 0.27616,-0.34436 0,-0.62052 z"
+ style="fill:#2ca089;stroke-width:0.35276607" />
+ <text
+ id="text895"
+ y="142.56509"
+ x="-139.11905"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:0.26458332"
+ y="142.56509"
+ x="-139.11905"
+ id="tspan893"
+ sodipodi:role="line">Heroine Logo</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="86.495651"
+ y="224.541"
+ id="text904"><tspan
+ sodipodi:role="line"
+ id="tspan902"
+ x="86.495651"
+ y="224.541"
+ style="fill:#ffffff;stroke-width:0.26458332">about_bg</tspan><tspan
+ sodipodi:role="line"
+ x="86.495651"
+ y="231.15558"
+ style="fill:#ffffff;stroke-width:0.26458332"
+ id="tspan1514">(Leni Heroine)</tspan></text>
+ <rect
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14011851;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1699-6"
+ width="16.933332"
+ height="16.933332"
+ x="215.49295"
+ y="217.08461"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.28436804;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1703-9"
+ width="16.648966"
+ height="9.4451895"
+ x="215.63179"
+ y="220.83202"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <g
+ style="display:inline"
+ transform="matrix(0.4555001,0,0,0.4555001,152.21261,105.58373)"
+ id="g874-3"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-8-1-3"
+ y="339.07217"
+ x="110.50091"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;stroke-width:1.54880381"
+ y="339.07217"
+ x="110.50091"
+ id="tspan1704-0-5-8"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text838-9-0"
+ y="266.03046"
+ x="148.92941"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975"
+ y="266.03046"
+ x="148.92941"
+ id="tspan836-9-5"
+ sodipodi:role="line">inelerra</tspan></text>
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.48506522;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1699-6-4"
+ width="58.620167"
+ height="58.620167"
+ x="232.42628"
+ y="234.01793"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.98443127;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1703-9-6"
+ width="57.635742"
+ height="32.697556"
+ x="232.90692"
+ y="246.99077"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <g
+ style="display:inline"
+ transform="matrix(1.5768599,0,0,1.5768599,13.360663,-151.97812)"
+ id="g874-3-2"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-8-1-3-6"
+ y="339.07217"
+ x="110.50091"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;stroke-width:1.54880381"
+ y="339.07217"
+ x="110.50091"
+ id="tspan1704-0-5-8-7"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text838-9-0-5"
+ y="266.03046"
+ x="148.92941"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975"
+ y="266.03046"
+ x="148.92941"
+ id="tspan836-9-5-6"
+ sodipodi:role="line">inelerra</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="255.36308"
+ y="232.03587"
+ id="text2226"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan2224"
+ x="255.36308"
+ y="232.03587"
+ style="fill:#ffffff;stroke-width:0.26458332">magnified</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="226.98483"
+ y="144.59557"
+ id="text908-7"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan906-2"
+ x="226.98483"
+ y="144.59557"
+ style="fill:#ffffff;stroke-width:0.26458332">ff_hi</tspan></text>
+ <g
+ id="g2402"
+ transform="translate(-46.804169,-197.41352)"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <g
+ transform="translate(75.269014,84.423913)"
+ id="g874-0">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ x="180.4498"
+ y="391.25345"
+ id="text1706-8-1-8"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0-5-1"
+ x="180.4498"
+ y="391.25345"
+ style="fill:#2ca089;stroke-width:1.54880381">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ x="236.24074"
+ y="307.83527"
+ id="text838-9-3"><tspan
+ sodipodi:role="line"
+ id="tspan836-9-1"
+ x="236.24074"
+ y="307.83527"
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975">inelerra</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880393"
+ x="148.95921"
+ y="391.2594"
+ id="text1706-8-1-8-4"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0-5-1-0"
+ x="148.95921"
+ y="391.2594"
+ style="fill:#2ca089;stroke-width:1.54880393">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="191.44487"
+ y="319.26205"
+ id="text2568"><tspan
+ sodipodi:role="line"
+ id="tspan2566"
+ x="191.44487"
+ y="319.26205"
+ style="fill:#ffffff;stroke-width:0.26458332">dialogues</tspan></text>
+ </g>
+ <text
+ id="text891-9-6"
+ y="403.6976"
+ x="301.71387"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:0.26458332"
+ y="403.6976"
+ x="301.71387"
+ id="tspan889-8-0"
+ sodipodi:role="line">about, heroine_icon</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="238.37085"
+ y="150.44252"
+ id="text2226-9"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan2224-9"
+ x="238.37085"
+ y="150.44252"
+ style="fill:#ffffff;stroke-width:0.26458332">magnified</tspan></text>
+ <g
+ transform="translate(226.51871,-144.34241)"
+ id="g895"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <rect
+ y="291.0441"
+ x="0.12954104"
+ height="5.8263345"
+ width="6.3555012"
+ id="rect3597-9-2-6-7-30-7-6-7-3-3-0"
+ style="fill:url(#linearGradient1791-0-0-0);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-3-1-4"
+ y="370.06717"
+ x="-0.19609025"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125578"
+ xml:space="preserve"><tspan
+ style="fill:#2ca05a;stroke-width:0.47125578"
+ y="370.06717"
+ x="-0.19609025"
+ id="tspan1704-6-1-2"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text1702-9-0-9"
+ y="294.98056"
+ x="1.8809944"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.87081647px;line-height:3.84484386px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.15379374"
+ xml:space="preserve"><tspan
+ style="fill:#ffd42a;stroke-width:0.15379374"
+ y="294.98056"
+ x="1.8809944"
+ id="tspan1700-0-3-6"
+ sodipodi:role="line">GG</tspan></text>
+ </g>
+ <g
+ transform="matrix(3.84,0,0,3.84,232.50631,-965.08155)"
+ id="g895-4"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <rect
+ y="291.0441"
+ x="0.12954104"
+ height="5.8263345"
+ width="6.3555012"
+ id="rect3597-9-2-6-7-30-7-6-7-3-3-0-2"
+ style="fill:url(#linearGradient2511);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-3-1-4-2"
+ y="370.06717"
+ x="-0.19609025"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125578"
+ xml:space="preserve"><tspan
+ style="fill:#2ca05a;stroke-width:0.47125578"
+ y="370.06717"
+ x="-0.19609025"
+ id="tspan1704-6-1-2-2"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text1702-9-0-9-0"
+ y="294.98056"
+ x="1.8809944"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.87081647px;line-height:3.84484386px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.15379374"
+ xml:space="preserve"><tspan
+ style="fill:#ffd42a;stroke-width:0.15379374"
+ y="294.98056"
+ x="1.8809944"
+ id="tspan1700-0-3-6-5"
+ sodipodi:role="line">GG</tspan></text>
+ </g>
+ <rect
+ style="fill:url(#linearGradient1791);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-7-6-7"
+ width="6.3555012"
+ height="5.8263345"
+ x="209.47473"
+ y="146.7011"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125578"
+ x="167.51512"
+ y="189.89267"
+ id="text1706-9"
+ transform="scale(1.2482481,0.80112279)"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0"
+ x="167.51512"
+ y="189.89267"
+ style="fill:#2ca05a;stroke-width:0.47125578">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="209.3723"
+ y="144.56932"
+ id="text2530"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan2528"
+ x="209.3723"
+ y="144.56932"
+ style="fill:#ffffff;stroke-width:0.26458332">ff_up</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot2532"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion2534"
+ style=""><rect
+ id="rect2536"
+ width="150.84454"
+ height="145.75989"
+ x="921.16864"
+ y="1013.1881"
+ style="" /></flowRegion><flowPara
+ id="flowPara2538" /></flowRoot> <path
+ style="fill:none;stroke:#666666;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 209.47473,152.52742 v 35.08424 h 5.3151"
+ id="path2578"
+ inkscape:connector-curvature="0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="fill:#808080;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 211.33889,184.16072 3.45094,3.45094 -3.53197,2.03919 z"
+ id="path2580"
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-x="-54.085483"
+ inkscape:transform-center-y="-32.28809"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="fill:none;stroke:#666666;stroke-width:0.36498457px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 241.38542,221.98985 h 27.3771 V 209.0282"
+ id="path2578-9"
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-x="23.047559"
+ inkscape:transform-center-y="17.709767"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="fill:#808080;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 248.90459,201.96033 3.45094,3.45094 -3.53197,2.03919 z"
+ id="path2580-1"
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-x="-54.085483"
+ inkscape:transform-center-y="-32.28809"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="fill:none;stroke:#808080;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 237.13015,205.41127 h 14.16704"
+ id="path2614"
+ inkscape:connector-curvature="0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="fill:#808080;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 243.27809,218.56839 -3.48018,3.42146 3.5145,2.06916 z"
+ id="path2580-1-9"
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-x="53.823515"
+ inkscape:transform-center-y="-32.732365"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="218.24077"
+ y="151.89098"
+ id="text2633"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan2631"
+ x="218.24077"
+ y="151.89098"
+ style="fill:#ffffff;stroke-width:0.26458332">THX!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="235.36246"
+ y="232.0667"
+ id="text891-4"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan889-9"
+ x="235.36246"
+ y="232.0667"
+ style="fill:#ffffff;stroke-width:0.26458332">heroine_icon</tspan></text>
+ <g
+ id="g1436"
+ transform="translate(-80.64314,-139.85409)">
+ <rect
+ transform="rotate(-0.82349436)"
+ y="320.89056"
+ x="168.87444"
+ height="0.79374999"
+ width="73.015152"
+ id="rect2555-50"
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.18919778;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-0.82349436)"
+ y="357.40308"
+ x="225.48541"
+ height="0.79374999"
+ width="16.404175"
+ id="rect2555-3-8"
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.08967817;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-0.82349436)"
+ inkscape:tile-h="3.4395123"
+ inkscape:tile-w="6.0853456"
+ inkscape:tile-cy="9.2604136"
+ inkscape:tile-cx="81.233017"
+ inkscape:tile-y0="7.5406574"
+ inkscape:tile-x0="78.190344"
+ y="353.74457"
+ x="221.70027"
+ height="2.6867726"
+ width="5.3326063"
+ id="use2632-3"
+ style="display:inline;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75273961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="rotate(-0.82349436,21803.895,-11335.399)"
+ id="g2896"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.17446826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-04"
+ width="46.566666"
+ height="1.0583335"
+ x="34.703175"
+ y="11.594935" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13109586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-1"
+ width="26.291784"
+ height="1.0583336"
+ x="54.935307"
+ y="37.306248" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13085122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-1"
+ width="26.19375"
+ height="1.0583336"
+ x="12.170832"
+ y="-81.227081"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10800269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-7-5"
+ width="17.844782"
+ height="1.0583336"
+ x="11.594935"
+ y="-35.761509"
+ transform="rotate(90)" />
+ </g>
+ <rect
+ transform="rotate(89.176506)"
+ y="-189.96741"
+ x="326.1355"
+ height="1.0583336"
+ width="7.3312483"
+ id="rect2555-5-0-8-6-9"
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.06922579;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-0.82349436)"
+ y="326.1355"
+ x="168.68942"
+ height="1.0583336"
+ width="21.277973"
+ id="rect2555-5-0-8-6-3-3"
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11793537;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(11.745428,-31.459035)"
+ id="use2730-4"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2732-1"
+ transform="translate(12.195088,-0.17528501)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2734-5"
+ transform="translate(-0.44966247,-31.283745)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2736-0"
+ transform="translate(-12.644752,-31.108455)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2738-8"
+ transform="translate(-24.839842,-30.933165)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2740-3"
+ transform="translate(-37.034932,-30.757885)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2742-5"
+ transform="translate(-49.230032,-30.582595)"
+ xlink:href="#use2632-3"
+ inkscape:tiled-clone-of="#use2632-3"
+ y="0"
+ x="0"
+ style="display:inline" />
+ <g
+ id="g874-5"
+ transform="translate(65.979108,72.814685)"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ x="110.50091"
+ y="339.07217"
+ id="text1706-8-1-4"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0-5-9"
+ x="110.50091"
+ y="339.07217"
+ style="fill:#2ca089;stroke-width:1.54880381">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ x="148.92941"
+ y="266.03046"
+ id="text838-9-2"><tspan
+ sodipodi:role="line"
+ id="tspan836-9-57"
+ x="148.92941"
+ y="266.03046"
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975">inelerra</tspan></text>
+ </g>
+ <path
+ sodipodi:nodetypes="ccccccscsscccccccccsccccccccccssccscssccccccccccccccccscccccccccccccccccccccccscsccssccscscccccscccccccscscscccccsssccscccccccccccccsccccccccscccsccccccscsscccccscccscccccscscccccccccscscsccccccccsscccccccccccccccccsscccccccccccccccccccsccccccscsccsscccccsccsccccccccsccccccccccccscccccccscsccccccccccccccssccscccccccccccscsscscsssc"
+ inkscape:connector-curvature="0"
+ id="path2525"
+ d="m 188.01786,325.12565 c 0,0 5.2177,-1.50266 7.56782,7.0777 0.46089,1.61976 0.874,4.05258 1.10771,6.52353 0.10398,1.09949 0.19828,2.03755 0.20956,2.08457 0.0113,0.047 0.36442,0.0155 0.78482,-0.07 0.4204,-0.0855 2.77927,-0.21492 3.19967,-0.28761 1.94528,-0.62168 12.73662,3.15841 20.13933,8.67177 5.82649,4.33942 13.06692,6.50811 13.12266,6.3688 -0.23395,1.30265 -1.93616,3.60503 -2.89798,4.37797 -0.73674,0.59206 -1.04899,0.70625 -1.57233,0.57502 -0.62012,-0.1555 -2.59955,-1.03543 -3.35765,-1.49261 -0.19401,-0.11701 -1.47634,-0.90335 -2.84961,-1.74743 -1.37324,-0.84408 -3.25062,-1.83754 -4.17194,-2.2077 -0.9213,-0.37016 -1.86147,-0.83867 -2.08926,-1.04113 -0.22781,-0.20247 -1.5971,-0.97007 -3.04287,-1.70577 -1.92892,-0.98157 -3.02455,-1.38951 -4.11575,-1.53245 -0.81788,-0.10713 -1.80454,-0.30074 -2.1926,-0.43022 -0.38805,-0.12949 -1.47577,-0.29813 -2.41717,-0.37475 -2.40245,-0.19554 -2.48285,0.17541 -0.43803,2.02093 0.85893,0.77521 1.56169,1.5137 1.56169,1.64109 0,0.40638 1.96492,2.54076 2.93981,3.19334 0.5174,0.34635 1.1524,0.81198 1.41111,1.03473 0.25871,0.22275 1.31295,0.73857 2.34275,1.14625 1.51163,0.59843 2.21399,1.06211 3.64537,2.40659 1.00782,0.94662 2.07136,2.21523 2.46436,2.93949 0.60894,1.12223 0.69307,1.51747 0.70555,3.31503 0.0143,2.0622 -0.42772,3.59657 -1.30108,4.51592 -0.18206,0.19165 -0.70633,0.84056 -1.16503,1.44201 -0.80139,1.05081 -0.82772,1.14732 -0.67323,2.46881 0.16427,1.40508 1.04493,4.96059 1.85523,7.49007 0.24861,0.77611 0.63232,2.04611 0.85266,2.82222 0.22034,0.77611 0.561,1.87028 0.75702,2.43149 0.33722,0.96544 0.39539,1.01247 1.08085,0.87363 0.39843,-0.0807 1.62611,-0.2077 2.72815,-0.2822 2.69644,-0.18229 4.98167,0.49167 7.63888,2.25286 0.51741,0.34293 1.88261,1.02539 3.03378,1.51658 1.15116,0.49118 2.89741,1.26487 3.88055,1.7193 0.98314,0.45443 2.5674,1.1866 3.5206,1.62704 0.95319,0.44044 2.17027,0.86644 2.70462,0.94666 1.14514,0.17192 2.25756,0.79572 2.6963,1.51197 0.22913,0.37403 0.29641,1.34419 0.24967,3.59994 -0.0352,1.69835 -0.0705,3.71078 -0.0784,4.47207 -0.0125,1.19478 -0.0949,1.44365 -0.60244,1.81903 -0.63178,0.4673 -2.89682,0.91449 -5.48623,1.08317 -1.29651,0.0845 -1.69273,0.0258 -2.05787,-0.30464 -1.00857,-0.91276 -0.33629,-1.92477 2.08751,-3.14233 0.55604,-0.27932 1.07161,-0.66582 1.14568,-0.85888 0.2248,-0.58581 -0.65149,-2.51466 -1.5572,-3.42765 -0.66887,-0.67424 -1.10536,-0.89457 -2.01989,-1.01958 -0.64165,-0.0877 -2.38371,-0.3505 -3.87126,-0.58399 -1.48755,-0.23349 -3.65713,-0.55238 -4.8213,-0.70863 -1.16417,-0.15626 -2.69875,-0.38865 -3.41019,-0.51644 -1.21421,-0.2181 -4.83725,-0.68982 -8.58426,-1.11767 -2.84302,-0.32464 -3.77796,-0.6704 -4.72198,-1.74632 -0.94017,-1.0715 -4.56783,-5.97933 -4.56783,-6.17976 0,-0.0692 -0.30285,-0.56642 -0.673,-1.10498 -1.20259,-1.7497 -3.50978,-5.48453 -4.03838,-6.53726 -0.28368,-0.56491 -0.70242,-1.23878 -0.93055,-1.49748 -0.22812,-0.2587 -0.48555,-0.86725 -0.57208,-1.35232 -0.15615,-0.87548 -0.28963,-0.97536 -1.19431,-0.8936 -0.52333,0.0473 -2.69861,0.81205 -3.34618,1.1764 -0.70811,0.39841 -2.21833,0.95151 -2.62098,0.95991 -0.21057,0.004 -0.80619,0.21246 -1.32359,0.46239 -0.51741,0.24992 -1.16715,0.458 -1.44386,0.46239 -0.27671,0.004 -0.74099,0.2006 -1.03174,0.43604 -0.48147,0.38986 -0.50382,0.50322 -0.25054,1.27066 0.43314,1.31244 0.16904,6.28174 -0.44095,8.29665 -0.65202,2.15377 -2.19188,7.11102 -3.04552,9.80443 -0.40317,1.27207 -0.7984,3.49661 -0.76516,4.30668 0.0159,0.38805 0.0909,1.65805 0.16653,2.82222 0.13287,2.04411 0.11669,2.13874 -0.47193,2.7607 -0.33523,0.35422 -0.8445,0.69289 -1.13169,0.7526 -0.2872,0.0597 -2.63885,0.17106 -5.22588,0.24744 -2.58704,0.0764 -5.17996,0.2358 -5.76204,0.35428 -1.24433,0.25328 -3.57647,0.26046 -4.60664,0.0142 l 1e-5,-2.7e-4 c -1.01111,-0.24172 -1.19306,-0.38653 -1.46467,-1.16566 -0.31721,-0.90997 0.14605,-1.56499 1.2538,-1.77281 1.941,-0.36413 8.68607,-3.89284 10.14169,-5.30567 l 0.96439,-0.93605 0.0335,-10.52728 c 0.0347,-10.90706 0.14006,-13.47378 0.58758,-14.31544 0.29708,-0.55873 2.03794,-2.17284 5.30401,-4.91781 2.41562,-2.03023 2.69963,-2.24375 5.66041,-4.25567 1.09949,-0.74713 2.47952,-1.75241 3.06673,-2.23396 0.58721,-0.48155 1.6881,-1.085 2.44643,-1.34101 1.27695,-0.4311 2.02874,-1.03924 1.60411,-1.29761 -0.0986,-0.06 -1.07889,-0.44461 -2.17838,-0.85468 -3.19066,-1.19 -3.56592,-1.33629 -5.08589,-1.98273 -0.79228,-0.33695 -1.506,-0.61263 -1.58603,-0.61263 -0.37746,0 -4.57907,-2.14605 -5.18572,-2.64869 -0.54176,-0.44889 -0.67591,-0.73762 -0.6368,-1.37065 0.0706,-1.14249 0.0279,-5.65118 -0.0588,-6.21122 -0.0687,-0.4439 -0.30316,-0.47741 -4.16671,-0.59554 -2.25165,-0.0688 -4.23063,-0.21012 -4.39775,-0.31396 -0.16711,-0.10383 -1.0667,-0.27253 -1.99907,-0.37488 -0.93237,-0.10235 -2.01273,-0.30082 -2.40078,-0.44105 -0.38806,-0.14023 -1.41616,-0.44197 -2.28467,-0.67054 -1.08692,-0.28604 -1.83024,-0.65249 -2.38478,-1.17566 l -0.80565,-0.76014 -0.17383,-4.40442 c -0.24183,-6.12711 0.61852,-13.65757 1.91091,-16.72589 0.54769,-1.30031 0.66751,-2.60455 0.28112,-3.06018 -0.59075,-0.6966 -1.12921,-2.48614 -1.12921,-3.75285 0,-1.1013 0.0735,-1.27098 0.78655,-1.81482 0.6823,-0.52041 1.02136,-0.59992 2.55825,-0.59992 1.28791,0 1.85162,0.0963 2.06446,0.35277 0.16103,0.19403 0.4419,0.35278 0.62414,0.35278 0.18225,0 0.39228,0.15875 0.46673,0.35278 0.52285,0.52508 0.3137,1.29387 0.3137,1.29387 -0.63421,5.66789 -1.86803,11.68206 -1.81876,15.28827 -0.10463,5.74357 0.10578,7.9036 0.83937,8.03894 0.21885,0.0404 1.32398,0.0904 2.4558,0.11124 1.53972,0.0283 2.05787,-0.0383 2.05787,-0.26458 v -5e-5 c 0,-0.78652 -0.32312,-1.77232 -0.58091,-1.77232 -0.41848,0 -0.94566,-0.6584 -1.64619,-2.05596 -1.2459,-2.48556 -1.34704,-5.81882 -0.22663,-7.46982 0.31473,-0.46379 0.57224,-1.08674 0.57224,-1.38432 0,-0.75911 0.62889,-1.24379 2.12355,-1.63661 0.70765,-0.18598 1.55122,-0.45453 1.8746,-0.59678 0.32338,-0.14224 1.17005,-0.35987 1.88148,-0.48361 2.28011,-0.3966 3.86729,-1.0943 3.86729,-1.0943 M 174.4632,411.7987 c 0.43512,-0.16408 2.57537,-0.27353 5.5836,-0.28555 4.54627,-0.0182 4.92218,-0.0525 5.52685,-0.50517 0.62195,-0.46556 0.64664,-0.56246 0.59648,-2.3405 -0.0288,-1.02016 -0.0707,-2.17234 -0.0932,-2.56039 -0.0817,-1.41138 0.67135,-4.38362 2.50269,-9.87778 1.66147,-4.98456 2.01084,-6.38193 2.02863,-8.11389 0.0179,-1.74479 -0.28862,-4.72567 -0.60643,-5.89708 -0.20131,-0.74198 0.12903,-1.04326 1.34954,-1.23086 0.7449,-0.11449 3.52754,-1.03858 5.4544,-1.81135 0.57631,-0.23113 3.46192,-1.27709 4.58611,-1.66235 0.45275,-0.15515 1.10865,-0.42888 1.45759,-0.60828 0.77546,-0.39869 3.53259,-1.35522 5.59798,-1.9421 5.60283,-1.59206 6.71507,-1.98204 7.53739,-2.64287 2.0741,-1.6668 2.97928,-5.3146 1.8815,-7.58232 -0.5786,-1.19522 -3.01273,-3.14454 -4.7718,-3.8214 -0.55095,-0.212 -1.11106,-0.51788 -1.24471,-0.67973 -0.20765,-0.2515 -1.1869,-1.09636 -4.07999,-3.52009 -0.30801,-0.25804 -1.14757,-0.97439 -1.8657,-1.5919 -0.71811,-0.61751 -1.73686,-1.39553 -2.26387,-1.72894 -0.98378,-0.62239 -3.19223,-3.60354 -3.18552,-4.30009 0.006,-0.65467 0.39692,-1.02681 1.0887,-1.03718 2.19783,-0.0329 7.11603,0.40661 7.70449,0.68858 0.37558,0.17997 1.11642,0.32876 1.64629,0.33064 1.20469,0.004 2.78748,0.54473 3.75372,1.28171 0.40675,0.31025 1.00366,0.67849 1.32647,0.81833 0.32281,0.13983 0.91502,0.45359 1.31604,0.69723 0.401,0.24364 1.40643,0.81086 2.23425,1.26049 2.28503,1.24111 5.10526,3.03616 6.8766,4.37688 0.89385,0.67655 1.84009,1.20453 2.15873,1.20453 0.31204,0 0.92895,-0.3175 1.37091,-0.70555 0.44197,-0.38806 0.88712,-0.70556 0.9892,-0.70556 0.36503,0 1.04582,-0.78629 1.04582,-1.20789 0,-0.43478 -0.18422,-0.50808 -1.99909,-0.79545 -2.56891,-0.29795 -4.59165,-1.02808 -9.26837,-4.53076 -4.4103,-3.27304 -9.98791,-5.63099 -14.49592,-7.58151 -3.47477,-1.47895 -4.67368,-1.72316 -6.43831,-1.3115 -2.29961,0.53646 -3.19881,1.38374 -2.61875,2.46758 0.42172,0.788 0.31169,1.67064 -0.20828,1.67064 -0.25106,0 -0.54211,-0.13229 -0.64675,-0.29398 -0.10466,-0.16169 -0.26036,-1.88148 -0.34602,-3.82176 -0.27977,-6.33735 -1.76267,-11.5695 -3.91605,-13.81713 -1.50239,-1.56813 -2.16423,-0.97464 -0.74776,0.67054 1.05441,1.22466 1.81496,3.03468 2.55938,6.09104 0.79574,3.26705 0.96681,4.20895 0.9681,5.33027 8e-4,0.6902 0.16641,1.57128 0.36803,1.95796 0.21935,0.42068 0.40103,1.50696 0.45234,2.70463 0.0471,1.10087 0.16082,2.66304 0.25259,3.47149 0.11662,1.02734 0.0876,1.46991 -0.0965,1.46991 -0.14485,0 -0.32597,-0.29104 -0.40249,-0.64676 -0.0765,-0.35572 -0.31257,-1.05758 -0.52455,-1.5597 -0.21199,-0.50212 -0.39183,-1.50753 -0.39964,-2.23426 -0.008,-0.72672 -0.14559,-1.55506 -0.30615,-1.84074 -0.16055,-0.28568 -0.34814,-1.12716 -0.41688,-1.86995 -0.0687,-0.74279 -0.21175,-1.46155 -0.31784,-1.59724 -0.10609,-0.1357 -0.24997,-0.83071 -0.31973,-1.54447 -0.0698,-0.71377 -0.30214,-1.87793 -0.51641,-2.58704 -0.21426,-0.70911 -0.56396,-1.87137 -0.77712,-2.58281 -0.21316,-0.71143 -0.5082,-1.45226 -0.65564,-1.64629 -0.14745,-0.19403 -0.33958,-0.55314 -0.42696,-0.79802 -0.0874,-0.24488 -0.22364,-0.38047 -0.30279,-0.30132 -0.16071,0.16071 0.81805,3.44216 1.1311,3.79221 0.1099,0.12288 0.19981,0.57793 0.19981,1.01121 0,0.43329 0.1464,1.07358 0.32533,1.42288 0.17893,0.34929 0.4001,1.32299 0.4915,2.16378 0.0914,0.84079 0.27093,1.95204 0.39897,2.46944 0.12804,0.51741 0.3303,1.89324 0.44947,3.05741 0.61473,6.00541 0.99084,7.39089 2.01009,7.40473 0.14586,0.002 0.39107,0.15527 0.54492,0.34065 0.22492,0.27102 0.16859,0.40985 -0.28759,0.70876 -0.50453,0.33058 -0.65833,0.33368 -1.3898,0.0281 -0.45236,-0.18901 -1.04653,-0.28506 -1.32038,-0.21345 -0.65016,0.17002 -1.67791,-0.93862 -2.3943,-2.58275 -0.29177,-0.66961 -0.67665,-1.49839 -0.85528,-1.84173 -0.17863,-0.34334 -0.32478,-0.96205 -0.32478,-1.37491 0,-0.81924 -0.64538,-3.28922 -0.94326,-3.61001 -0.32604,-0.35112 -1.19396,0.74159 -1.04894,1.32062 0.0724,0.28907 0.11973,0.73725 0.10519,0.99596 -0.0145,0.2587 -0.0801,3.1231 -0.14571,6.36533 -0.0956,4.72208 -0.0573,5.94505 0.19237,6.14666 0.1714,0.13843 0.89373,0.48641 1.60516,0.77329 0.71144,0.28688 1.50519,0.61428 1.76389,0.72756 0.25871,0.11329 3.06299,1.16374 6.23175,2.33435 l 5.76138,2.12837 2.26831,-0.15623 c 2.79163,-0.19227 3.5542,-0.042 3.45152,0.68018 -0.0662,0.46574 -0.2856,0.54911 -2.07314,0.78783 -1.98483,0.26507 -4.00402,0.90328 -5.07223,1.6032 -0.30634,0.20072 -1.09427,0.57673 -1.75099,0.83557 -0.65669,0.25885 -1.48033,0.66774 -1.83029,0.90864 -0.34998,0.2409 -1.27132,0.84309 -2.04742,1.3382 -2.68339,1.71186 -4.31538,2.98269 -8.74355,6.80864 -2.02934,1.75334 -2.93326,2.69616 -3.10184,3.23531 -0.13745,0.43959 -0.30172,5.67162 -0.38902,12.39064 -0.13877,10.68024 -0.18668,11.69951 -0.58684,12.48389 -0.50793,0.99563 -1.7344,1.99647 -2.9912,2.44093 -0.48713,0.17227 -1.99695,0.90111 -3.35514,1.61963 -1.35819,0.71853 -3.07597,1.53284 -3.81729,1.80957 -1.39415,0.52043 -1.7208,0.77953 -1.47802,1.17235 0.16611,0.26878 2.04001,0.0853 3.06105,-0.29971 z m 70.60288,-3.81074 c 1.56091,-0.40447 2.01978,-0.85613 1.77031,-1.74251 -0.22077,-0.78442 -0.12655,-3.93057 0.13151,-4.39172 0.28316,-0.50595 -0.0433,-2.68586 -0.43969,-2.93618 -0.18344,-0.11584 -0.9156,-0.19313 -1.62705,-0.17177 -1.14715,0.0345 -1.63943,-0.12871 -4.35091,-1.44205 -1.68159,-0.81449 -3.26909,-1.56904 -3.52778,-1.67679 -0.97344,-0.40539 -3.8484,-1.72989 -6.23242,-2.87129 -1.35818,-0.65027 -2.83985,-1.28007 -3.29258,-1.39958 -2.01334,-0.53143 -3.30145,-0.65347 -4.28669,-0.40614 -3.62346,0.90962 -3.71032,0.88668 -4.24516,-1.12108 -0.19935,-0.74836 -0.58793,-2.10148 -0.86352,-3.00695 -0.27558,-0.90546 -0.71395,-2.44004 -0.97413,-3.41018 -0.2602,-0.97014 -0.64502,-2.39889 -0.8552,-3.175 -0.21015,-0.77611 -0.62866,-1.84474 -0.93001,-2.37474 -0.38579,-0.6785 -0.50672,-1.16951 -0.40874,-1.65947 0.0974,-0.48675 0.0238,-0.79159 -0.24476,-1.01448 -0.32552,-0.27016 -0.72428,-0.24204 -2.62054,0.1848 -1.23013,0.2769 -2.57461,0.65952 -2.98773,0.85029 -1.49271,0.68927 -3.24771,1.30897 -3.70703,1.30897 -0.74351,0 -0.77917,0.58491 -0.12304,2.01808 0.33522,0.73224 0.60951,1.41625 0.60951,1.52 0,0.80351 5.38037,9.32699 8.14036,12.89581 1.60535,2.0758 2.42029,2.49639 5.26519,2.71738 1.0995,0.0854 3.16325,0.36622 4.58611,0.62403 1.42288,0.25781 3.75121,0.56844 5.17407,0.69028 1.42288,0.12184 2.97696,0.34407 3.4535,0.49384 0.49233,0.15473 1.28858,0.20482 1.84401,0.116 0.59704,-0.0955 1.49562,-0.0238 2.30854,0.18417 0.73204,0.18726 1.91308,0.4586 2.62452,0.60297 1.64053,0.33291 3.24008,1.14333 3.83843,1.94476 0.46806,0.62691 0.79849,1.92272 1.0255,4.0215 0.1024,0.94662 0.0373,1.22627 -0.39141,1.68265 -0.28281,0.30105 -0.87566,0.61517 -1.31744,0.69804 -0.44178,0.0829 -0.80323,0.25173 -0.80323,0.37522 0,0.34039 1.9232,0.26871 3.4575,-0.12886 z M 193.9433,351.85943 c 0.16733,-0.2653 0.0931,-0.49762 -0.27718,-0.86795 -0.33686,-0.33685 -0.50618,-0.80015 -0.50715,-1.38763 -6.8e-4,-0.48507 -0.16737,-1.19945 -0.37016,-1.5875 -0.20279,-0.38806 -0.41927,-1.23472 -0.48105,-1.88148 -0.10721,-1.12214 -0.44152,-2.50029 -1.16955,-4.8213 -0.18258,-0.58208 -0.33111,-1.48167 -0.33006,-1.99907 0.003,-1.65501 -1.22841,-5.5457 -2.12206,-6.70278 l -0.4541,-0.58796 -0.005,0.63288 c -0.003,0.34808 0.0924,0.6932 0.21169,0.76694 0.3025,0.18695 0.95804,3.1861 0.96363,4.40864 0.003,0.55655 0.17159,1.85857 0.37565,2.89339 0.20405,1.03481 0.45625,2.72815 0.56042,3.76296 0.4244,4.21557 0.90897,5.71453 2.33559,7.22495 0.64852,0.6866 0.90957,0.7166 1.26956,0.14591 z m -8.55337,-3.16121 1.00039,-0.40028 -0.0945,-1.48408 c -0.052,-0.81625 -0.17794,-1.56752 -0.27991,-1.6695 -0.10197,-0.10198 -1.20846,-0.19867 -2.45887,-0.21487 -1.5981,-0.0207 -2.55293,-0.15189 -3.21421,-0.44159 -0.79857,-0.34985 -1.35677,-0.38891 -3.69369,-0.2585 -1.79294,0.10005 -3.12565,0.0598 -3.82176,-0.1155 -0.97849,-0.24639 -1.06995,-0.33135 -1.08229,-1.00556 -0.007,-0.40504 -0.0574,-1.53253 -0.11117,-2.50553 -0.25646,-4.64436 -0.21829,-13.07542 0.0628,-13.87072 0.16,-0.45273 0.38878,-1.77565 0.50837,-2.93982 0.11961,-1.16416 0.42837,-2.69043 0.68614,-3.3917 0.72007,-1.959 0.50754,-2.25274 -1.62996,-2.25274 h -1.73696 l 0.0561,1.46923 c 0.0308,0.80807 0.25653,2.07807 0.50155,2.82222 0.6465,1.96351 0.76695,2.89724 0.49332,3.82416 -0.13337,0.45179 -0.35211,1.56226 -0.48607,2.46772 -0.13398,0.90547 -0.39262,2.5988 -0.57476,3.76297 -0.75417,4.82042 -0.84116,5.91895 -0.77008,9.7252 0.0894,4.78602 0.0488,4.71055 2.99663,5.5774 1.10917,0.32617 2.65167,0.80243 3.42779,1.05836 1.24582,0.41083 1.86848,0.45234 5.31595,0.35437 2.92258,-0.0831 4.15649,-0.21166 4.90522,-0.51124 z m -1.48651,-5.62076 c 0.038,-0.12935 -0.38742,-0.57906 -0.94538,-0.99935 -0.68454,-0.51565 -1.30667,-1.31877 -1.91294,-2.46945 -0.49416,-0.9379 -1.03889,-1.96986 -1.2105,-2.29324 -0.17161,-0.32338 -0.31267,-0.86321 -0.31347,-1.19962 -0.002,-0.72191 -0.43826,-2.11159 -0.7683,-2.44575 -0.50453,-0.51081 0.31313,5.17273 1.00394,6.97845 0.61491,1.60732 1.22656,2.32593 2.1771,2.55785 0.96471,0.23536 1.88015,0.17546 1.96955,-0.12889 z m 3.61277,-1.5289 c 0.48323,-0.45141 0.70402,-0.83994 0.61265,-1.07807 -0.0786,-0.20478 -0.21261,-1.13073 -0.29783,-2.05767 -0.0977,-1.0623 -0.44539,-2.40754 -0.94055,-3.63882 -0.43208,-1.07441 -0.78906,-2.07983 -0.79331,-2.23426 -0.004,-0.15444 -0.49298,-0.69592 -1.08608,-1.20329 -0.85687,-0.73302 -1.27591,-0.92624 -2.04013,-0.94074 -0.87188,-0.0165 -0.98124,0.0477 -1.17019,0.68731 -0.11464,0.38805 -0.41019,1.09693 -0.65679,1.57529 -0.7416,1.4386 -0.60647,3.1892 0.40919,5.30085 1.82079,3.78558 4.21211,5.22501 5.96304,3.5894 z m -10.11317,-4.11555 c 0,-0.32337 -0.10584,-0.58796 -0.23519,-0.58796 -0.26274,0 -0.32237,0.77516 -0.0784,1.01914 0.25926,0.25925 0.31359,0.18455 0.31359,-0.43118 z m 12.54986,-7.52592 c -0.0745,-0.19403 -0.17697,-0.35278 -0.22781,-0.35278 -0.0508,0 -0.0924,0.15875 -0.0924,0.35278 0,0.19403 0.10252,0.35278 0.22781,0.35278 0.12529,0 0.16688,-0.15875 0.0924,-0.35278 z"
+ style="display:inline;fill:#051210;fill-opacity:1;stroke-width:0.23518519" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-132.72342"
+ y="149.47736"
+ id="text1440"><tspan
+ sodipodi:role="line"
+ id="tspan1438"
+ x="-132.72342"
+ y="149.47736"
+ style="fill:#ffffff;stroke-width:0.26458332">Not used.</tspan></text>
+ <g
+ id="layer5"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="matrix(0.26458333,0,0,0.26458333,164.38252,341.28298)">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g1495"
+ transform="translate(114.16647,-181.12221)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.72468376px;line-height:13.02413177px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:0.98999999;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.52096546"
+ x="139.06474"
+ y="409.31897"
+ id="text1706-9-1"
+ transform="scale(1.1782356,0.84872668)"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0-3"
+ x="139.06474"
+ y="409.31897"
+ style="fill:#e6e4dd;fill-opacity:1;stroke-width:0.52096546">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:5.09007835px;line-height:6.81707001px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.27268288"
+ x="166.03032"
+ y="346.04785"
+ id="text881"><tspan
+ sodipodi:role="line"
+ id="tspan879"
+ x="166.03032"
+ y="346.04785"
+ style="stroke-width:0.27268288">db</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="1122.5197"
+ height="793.70081"
+ viewBox="0 0 297 210"
+ version="1.1"
+ id="svg4112"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="0.Neophyte-Theme.svg">
+ <title
+ id="title4679">Theme: Neophyte</title>
+ <defs
+ id="defs4106">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-20"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21473562,0,0,0.32841911,195.59971,464.46723)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.20352562,0,0,0.26458333,31.413103,463.30986)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.20352562,0,0,0.26458333,31.352993,473.98785)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.20352562,0,0,0.26458333,31.216543,482.7659)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.20352562,0,0,0.26458333,31.034623,492.54455)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.20352562,0,0,0.26458333,31.080103,502.18674)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,28.521914,382.38136)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,28.521914,376.62396)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23314136,0,0,0.35656914,87.07465,383.40874)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487955,0,0,0.2497423,28.521914,369.03881)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,87.0243,358.85491)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,-108.16699,-382.67133)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23314136,0,0,0.35656914,87.07465,390.94661)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,87.0243,366.76051)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401774,0,0,0.37320354,27.111934,522.31226)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401774,0,0,0.37320354,27.111934,530.67963)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401776,0,0,0.37320354,-49.135574,-547.67809)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50356404,0,0,0.77015664,63.416194,551.67624)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50356404,0,0,0.77015664,63.416194,520.22539)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5035641,0,0,0.77015659,63.416194,535.94844)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2769654,0,0,0.30325099,321.74726,494.32808)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2769656,0,0,0.30325099,321.74705,502.26782)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2769654,0,0,0.30325099,321.71887,510.07313)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,128.52115,360.05044)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,128.60526,367.53587)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425705,0,0,0.35827544,-149.74795,-382.04107)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-2-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23314136,0,0,0.35656914,128.72107,382.95981)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23314136,0,0,0.35656914,128.59016,390.49768)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.297272,0,0,0.30318823,264.81504,493.75229)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-1-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2972771,0,0,0.30318826,264.84153,502.37572)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2972769,0,0,0.30318826,264.96048,509.92865)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0840191,0,0,0.30387493,329.81774,459.55159)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0840191,0,0,0.30387493,330.11251,467.75872)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0840236,0,0,0.30387435,329.6986,475.13324)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.51015,500.25575)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.63957,-505.8444)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.68594,507.70601)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.81535,-513.29466)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.26458333,111.80369,527.73105)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3389">
+ <stop
+ id="stop3387"
+ offset="0"
+ style="stop-color:#87aade;stop-opacity:1" />
+ <stop
+ id="stop3385"
+ offset="1"
+ style="stop-color:#3771c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(-0.26458333,0,0,-0.26458333,408.69757,493.26962)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-8"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.77455,515.20621)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.90396,-520.79485)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.78379,-528.58254)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.65437,522.9939)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,285.48292,443.74401)" />
+ <linearGradient
+ id="linearGradient2362">
+ <stop
+ id="stop2358"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop2360"
+ offset="1"
+ style="stop-color:#1a1a1a;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,-329.9072,-476.7123)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-2"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,285.46913,453.28165)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1-2"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,-329.89341,-486.24994)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-14"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,285.36192,467.33832)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1-3"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.24173294,-329.7862,-495.02818)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.46983,459.16615)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.59927,-464.7548)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.64562,466.61642)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.77506,-472.20506)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-9"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26458333,0,0,0.26458333,111.76339,486.64145)" />
+ <linearGradient
+ gradientTransform="matrix(-0.26458333,0,0,-0.26458333,408.65728,452.18002)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-8-2"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.73423,474.11661)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.86367,-479.70525)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,-268.74349,-487.49295)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-4-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.18979099,0,0,0.15019502,251.61405,481.9043)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.35094291,0,0,0.53673618,22.381814,570.54973)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-3-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.35094291,0,0,0.53673618,21.701114,583.33727)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.35094293,0,0,0.53673618,-53.053594,-608.21576)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,28.521914,389.14403)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,28.123224,361.67215)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.19500704,0,0,0.25155489,31.276404,408.01221)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.19500703,0,0,0.25155487,31.276404,423.12724)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.19500702,0,0,0.2515549,31.276404,415.54209)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-5-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.19343877,0,0,0.2491564,31.347174,435.67082)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-1-7-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.19343877,0,0,0.2491564,31.347174,429.27511)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient5681"
+ cx="-159.70334"
+ cy="259.60919"
+ fx="-159.70334"
+ fy="259.60919"
+ r="5.0000005"
+ gradientTransform="matrix(0.36578971,0.00323103,-0.0029072,0.32912833,99.798364,346.77111)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient5849">
+ <stop
+ id="stop5845"
+ offset="0"
+ style="stop-color:#ff1717;stop-opacity:1;" />
+ <stop
+ id="stop5847"
+ offset="1"
+ style="stop-color:#650000;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient5681-21"
+ cx="-159.70334"
+ cy="259.60919"
+ fx="-159.70334"
+ fy="259.60919"
+ r="5.0000005"
+ gradientTransform="matrix(0.36578971,0.00323103,-0.0029072,0.32912833,99.798364,353.16681)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2572268,0.61815251)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2836"
+ xlink:href="#linearGradient3614-91"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3614-91">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3616-62" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3618-1" />
+ </linearGradient>
+ <radialGradient
+ r="8.094326"
+ fy="6.8672218"
+ fx="11.961022"
+ cy="6.8672218"
+ cx="11.961022"
+ gradientTransform="matrix(1.1338252,-8.6128046e-8,3.6421506e-8,1.100974,-1.7979864,-1.7294681)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2973"
+ xlink:href="#linearGradient3614-9"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614-9">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616-1" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618-9" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401774,0,0,0.37320354,-7.7045319,290.03658)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#70-0-8"
+ id="linearGradient1521"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ x1="406.50085"
+ y1="527.01447"
+ x2="419.97357"
+ y2="539.82538" />
+ <linearGradient
+ id="70-0-8"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ spreadMethod="pad">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401774,0,0,0.37320354,411.64621,578.47066)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401776,0,0,0.37320354,-433.66985,-593.38177)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.30213845,0,0,0.46209402,69.713774,571.63977)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-11"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.30213847,0,0,0.46209397,69.621234,584.27809)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-09"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16784984,0,0,0.25671148,174.22763,572.89296)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16784984,0,0,0.25671148,174.31868,581.94321)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16593208,0,0,0.25377841,-189.3055,-596.40236)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-2-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21371292,0,0,0.32685505,195.64586,481.11408)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21374873,0,0,0.32690977,195.63081,456.58985)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-32"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21473556,0,0,0.32841914,-214.9805,-479.79306)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21371293,0,0,0.32685505,195.64587,488.65195)" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26137421,0,0,0.22216782,202.44707,489.21197)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2-9-4"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26137421,0,0,0.22216782,202.44707,481.67409)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="23.494934"
+ x2="45.612747"
+ y1="23.494934"
+ x1="5"
+ gradientTransform="matrix(0.707108,-0.707108,0.707108,0.707108,-10.75536,24.49377)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4904"
+ xlink:href="#linearGradient2239"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2239">
+ <stop
+ style="stop-color:#cee14b;stop-opacity:1;"
+ offset="0"
+ id="stop2241" />
+ <stop
+ id="stop2243"
+ offset="1"
+ style="stop-color:#727e0a;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.4000025,0,0,2.0399997,-1.1054681,0.74004228)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-26"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,193.49852,363.52874)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-72"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,193.51843,389.38187)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,193.43534,396.48989)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487955,0,0,0.2497423,193.45698,371.72881)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.25487956,0,0,0.24974227,193.3687,379.71885)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#70-0-8"
+ id="linearGradient3015"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ x1="406.50085"
+ y1="527.01447"
+ x2="419.97357"
+ y2="539.82538" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#70-0-8"
+ id="linearGradient3017"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ x1="406.50085"
+ y1="527.01447"
+ x2="419.97357"
+ y2="539.82538" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2223"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.8416,893.83879)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2221"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.84161,855.74209)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2219"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.8416,779.54859)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92058643,0,0,1.2314853,314.50259,802.40015)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2215"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.84161,741.45194)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-61"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,310.31066,874.03512)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-98"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,309.87466,841.91621)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,318.01338,759.36626)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,318.57199,721.64827)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient3418"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92058643,0,0,1.2314853,314.50259,802.40015)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.22449632,0,0,0.3433473,-149.47956,-439.98306)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-3-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.22449632,0,0,0.34334725,129.29459,424.34729)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.22449632,0,0,0.34334725,129.46797,416.61655)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425704,0,0,0.35827544,-107.37724,-440.09354)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425704,0,0,0.35827544,86.234555,424.08003)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.23425704,0,0,0.35827544,86.339125,416.55039)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.6111719"
+ inkscape:cx="728.41677"
+ inkscape:cy="-342.78436"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ showborder="true"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="215.63223,-43.778464"
+ orientation="0,1"
+ id="guide827"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="231.93273,-53.093031"
+ orientation="0,1"
+ id="guide829"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-0.46572837,-53.09303"
+ orientation="1,0"
+ id="guide831"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4109">
+ <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>Theme: Neophyte</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>Theme: Neophyte</dc:description>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Cinelera</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:source>UnFlat</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-87)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.8547087"
+ y="313.43674"
+ id="text3423"><tspan
+ sodipodi:role="line"
+ id="tspan3421"
+ x="7.8547087"
+ y="313.43674"
+ style="stroke-width:0.26458332">Andika</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:condensed;font-size:4.23333311px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.751132"
+ y="319.28513"
+ id="text3423-6"><tspan
+ sodipodi:role="line"
+ id="tspan3421-8"
+ x="7.751132"
+ y="319.28513"
+ style="stroke-width:0.26458332">Myriad pro condensed</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.6066618"
+ y="307.33829"
+ id="text3423-2"
+ inkscape:transform-center-x="4.4701568"
+ inkscape:transform-center-y="17.474249"><tspan
+ sodipodi:role="line"
+ id="tspan3421-86"
+ x="7.6066618"
+ y="307.33829"
+ style="stroke-width:0.26458332">Fonts:</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:4.23333311px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.6918669"
+ y="325.51328"
+ id="text3423-6-2"><tspan
+ sodipodi:role="line"
+ id="tspan3421-8-5"
+ x="7.6918669"
+ y="325.51328"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:4.23333311px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Myriad pro condensed bold</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="77.814346"
+ y="307.51035"
+ id="text873"><tspan
+ sodipodi:role="line"
+ id="tspan871"
+ x="77.814346"
+ y="307.51035"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">see: *_all.svg, *.up.svg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.168875"
+ y="68.616806"
+ id="text825"><tspan
+ sodipodi:role="line"
+ id="tspan823"
+ x="-27.168875"
+ y="72.629654"
+ style="stroke-width:0.26458332" /></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-20);fill-opacity:1;stroke:#141414;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-3"
+ width="5.5831261"
+ height="5.5831261"
+ x="202.49857"
+ y="464.89307" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0);fill-opacity:1;stroke:none;stroke-width:0.23205492;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5"
+ width="5.2916665"
+ height="4.4979167"
+ x="37.951801"
+ y="463.65286" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-4);fill-opacity:1;stroke:none;stroke-width:0.23205492;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-4"
+ width="5.2916665"
+ height="4.4979167"
+ x="37.891682"
+ y="474.33084" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-3);fill-opacity:1;stroke:none;stroke-width:0.23205492;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-1"
+ width="5.2916665"
+ height="4.4979167"
+ x="37.75523"
+ y="483.10892" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-0);fill-opacity:1;stroke:none;stroke-width:0.23205492;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-5"
+ width="5.2916665"
+ height="4.4979167"
+ x="37.573322"
+ y="492.88754" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-6);fill-opacity:1;stroke:none;stroke-width:0.23205492;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-9"
+ width="5.2916665"
+ height="4.4979167"
+ x="37.618793"
+ y="502.52975" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-1);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-7-2-10"
+ width="6.6268692"
+ height="4.2456188"
+ x="36.710442"
+ y="382.70514" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-50-11-3-8"
+ width="6.6268692"
+ height="4.2456188"
+ x="36.710442"
+ y="376.94775" />
+ <rect
+ style="fill:url(#linearGradient1811-2-2);fill-opacity:1;stroke:#141414;stroke-width:0.28832451;stroke-opacity:1"
+ id="rect3597-7-9"
+ width="6.0616751"
+ height="6.0616751"
+ x="94.564796"
+ y="383.87106" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="13.295799"
+ y="372.31415"
+ id="text1473"><tspan
+ sodipodi:role="line"
+ id="tspan1471"
+ x="13.295799"
+ y="372.31415"
+ style="stroke-width:0.26458332">recordpatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:11.6754818px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.46701926"
+ x="12.359539"
+ y="365.75433"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="12.359539"
+ y="365.75433"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;stroke-width:0.46701926">recordpatch_up</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 40.032164,377.35079 c -0.63365,0 -1.15786,0.41538 -1.19062,0.93431 -8e-4,0.0103 2.6e-4,0.0144 0,0.0248 v 0.57877 h -0.0579 c -0.19229,0 -0.34727,0.15498 -0.34727,0.34727 v 1.20716 c 0,0.19228 0.15498,0.34726 0.34727,0.34726 h 2.48047 c 0.19228,0 0.34726,-0.15498 0.34726,-0.34726 v -1.20716 c 0,-0.19229 -0.15498,-0.34727 -0.34726,-0.34727 h -2.02572 v -0.57877 -0.0248 c 0.0327,-0.33721 0.37886,-0.60358 0.79375,-0.60358 0.41444,0 0.74385,0.26689 0.77722,0.60358 h 0.40514 c -0.0325,-0.51912 -0.54854,-0.93431 -1.18236,-0.93431 z"
+ id="rect3456-0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="12.617058"
+ y="379.82581"
+ id="text1473-9"><tspan
+ sodipodi:role="line"
+ id="tspan1471-0"
+ x="12.617058"
+ y="379.82581"
+ style="stroke-width:0.26458332">recordpatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="5.2148056"
+ y="386.20813"
+ id="text1603"><tspan
+ sodipodi:role="line"
+ id="tspan1601"
+ x="5.2148056"
+ y="386.20813"
+ style="stroke-width:0.26458332">recordpatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="2.6990278"
+ y="393.18372"
+ id="text1607"><tspan
+ sodipodi:role="line"
+ id="tspan1605"
+ x="2.6990278"
+ y="393.18372"
+ style="stroke-width:0.26458332">recordpatch_checkedhi</tspan></text>
+ <flowRoot
+ transform="matrix(0.26458333,0,0,0.26458333,341.40899,717.06774)"
+ xml:space="preserve"
+ id="flowRoot1768"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion1770"><rect
+ id="rect1772"
+ width="43.652542"
+ height="24.923729"
+ x="-6.3389831"
+ y="52.008476" /></flowRegion><flowPara
+ id="flowPara1774" /></flowRoot> <rect
+ style="fill:url(#linearGradient1811-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.25229788;stroke-opacity:1"
+ id="rect3597-2-1-3"
+ width="6.6268692"
+ height="4.2456188"
+ x="36.710442"
+ y="369.36261" />
+ <g
+ style="fill:#f2f2f2;fill-opacity:1"
+ transform="matrix(0.51426258,0,0,0.42662697,58.850004,368.15078)"
+ id="g4429-1">
+ <g
+ style="fill:#f2f2f2;fill-opacity:1"
+ id="g2915-7"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-5"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-6"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-5"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ id="g1655"
+ transform="matrix(0.26458333,0,0,0.26458333,37.107874,361.3664)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.579536"
+ y="365.34341"
+ id="text2122"><tspan
+ sodipodi:role="line"
+ id="tspan2120"
+ x="64.579536"
+ y="365.34341"
+ style="stroke-width:0.26458332">editpanel_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8);fill-opacity:1;stroke:#141414;stroke-width:0.25929168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9"
+ width="6.0906835"
+ height="6.0906835"
+ x="94.550301"
+ y="359.31943" />
+ <rect
+ y="359.52054"
+ x="94.61911"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.579536"
+ y="372.93393"
+ id="text2122-2"><tspan
+ sodipodi:role="line"
+ id="tspan2120-9"
+ x="64.579536"
+ y="372.93393"
+ style="stroke-width:0.26458332">editpanel_hi</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1"
+ width="6.0906835"
+ height="6.0906835"
+ x="-100.64101"
+ y="-382.20676"
+ transform="scale(-1)" />
+ <rect
+ y="-382.00571"
+ x="-100.57218"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-3"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.579536"
+ y="380.93729"
+ id="text2122-2-5"><tspan
+ sodipodi:role="line"
+ id="tspan2120-9-5"
+ x="64.579536"
+ y="380.93729"
+ style="stroke-width:0.26458332">editpanel_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.579536"
+ y="388.67691"
+ id="text4201"><tspan
+ sodipodi:role="line"
+ id="tspan4199"
+ x="64.579536"
+ y="388.67691"
+ style="stroke-width:0.26458332">editpanel_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.579536"
+ y="395.93253"
+ id="text4205"><tspan
+ sodipodi:role="line"
+ id="tspan4203"
+ x="64.579536"
+ y="395.93253"
+ style="stroke-width:0.26458332">editpanel_checkedhi</tspan></text>
+ <rect
+ y="384.05765"
+ x="94.61911"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-0"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4);fill-opacity:1;stroke:#141414;stroke-width:0.28832451;stroke-opacity:1"
+ id="rect3597-2-3-0"
+ width="6.0616751"
+ height="6.0616751"
+ x="94.564796"
+ y="391.40891" />
+ <rect
+ y="391.65878"
+ x="94.68235"
+ height="5.5620031"
+ width="5.8265862"
+ id="rect3597-5-7-9-4-8-9-8-0-2"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.25883049;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3"
+ width="6.0906835"
+ height="6.0906835"
+ x="94.550301"
+ y="367.22507" />
+ <rect
+ y="367.48935"
+ x="94.68235"
+ height="5.5620031"
+ width="5.8265862"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.25883049;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-5);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2"
+ width="6.3444614"
+ height="6.3444614"
+ x="34.951542"
+ y="522.79614" />
+ <rect
+ y="522.99481"
+ x="35.017857"
+ height="5.947197"
+ width="6.2117801"
+ id="rect3597-5-7-9-4-8-9-8-2"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.1382197;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.2794833"
+ y="527.64697"
+ id="text6303"><tspan
+ sodipodi:role="line"
+ id="tspan6301"
+ x="4.2794833"
+ y="527.64697"
+ style="stroke-width:0.26458332">fileboxbutton_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.1159396"
+ y="535.76532"
+ id="text6303-9"><tspan
+ sodipodi:role="line"
+ id="tspan6301-1"
+ x="4.1159396"
+ y="535.76532"
+ style="stroke-width:0.26458332">fileboxbutton_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.5364413"
+ y="544.0918"
+ id="text6303-3"><tspan
+ sodipodi:role="line"
+ id="tspan6301-8"
+ x="4.5364413"
+ y="544.0918"
+ style="stroke-width:0.26458332">fileboxbutton_dn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6"
+ width="6.3444614"
+ height="6.3444614"
+ x="34.951542"
+ y="531.16351" />
+ <rect
+ y="531.42822"
+ x="35.083927"
+ height="5.8150773"
+ width="6.0796599"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27033988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0"
+ width="6.3444614"
+ height="6.3444614"
+ x="-41.295994"
+ y="-547.19421"
+ transform="scale(-1)" />
+ <rect
+ y="-546.99554"
+ x="-41.229649"
+ height="5.947197"
+ width="6.2117801"
+ id="rect3597-5-7-9-4-8-9-8-3-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.1382197;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="46.526859"
+ y="527.08075"
+ id="text6473"><tspan
+ sodipodi:role="line"
+ id="tspan6471"
+ x="46.526859"
+ y="527.08075"
+ style="stroke-width:0.26458332">filebox_bigbutton_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="46.697239"
+ y="543.0556"
+ id="text6473-6"><tspan
+ sodipodi:role="line"
+ id="tspan6471-3"
+ x="46.697239"
+ y="543.0556"
+ style="stroke-width:0.26458332">filebox_bigbutton_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="47.410892"
+ y="558.10199"
+ id="text6473-4"><tspan
+ sodipodi:role="line"
+ id="tspan6471-2"
+ x="47.410892"
+ y="558.10199"
+ style="stroke-width:0.26458332">filebox_bigbutton_dn</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0);fill-opacity:1;stroke:#141414;stroke-width:0.13652499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4"
+ width="13.092666"
+ height="13.092666"
+ x="79.594284"
+ y="552.67487" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7);fill-opacity:1;stroke:#141414;stroke-width:0.13650098;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3"
+ width="13.092666"
+ height="13.092666"
+ x="79.594284"
+ y="521.224" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6);fill-opacity:1;stroke:#141414;stroke-width:0.13650098;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8"
+ width="13.092666"
+ height="13.092666"
+ x="79.594284"
+ y="536.94702" />
+ <rect
+ y="537.08386"
+ x="79.731155"
+ height="12.818936"
+ width="12.818936"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.14564726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="345.84753"
+ y="498.31894"
+ id="text828"><tspan
+ sodipodi:role="line"
+ id="tspan826"
+ x="345.84753"
+ y="498.31894"
+ style="stroke-width:0.26458332">generic_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2);fill-opacity:1;stroke:#141414;stroke-width:0.13652499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9"
+ width="33.201103"
+ height="5.1552682"
+ x="362.77289"
+ y="494.72128"
+ inkscape:transform-center-x="24.989088"
+ inkscape:transform-center-y="-37.1744" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-1);fill-opacity:1;stroke:#141414;stroke-width:0.13639851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-3"
+ width="33.201103"
+ height="5.1552682"
+ x="362.77264"
+ y="502.66104" />
+ <rect
+ y="502.79715"
+ x="362.90881"
+ height="4.8830104"
+ width="32.928841"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-0"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.14407292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4);fill-opacity:1;stroke:#141414;stroke-width:0.13639851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5"
+ width="33.201103"
+ height="5.1552682"
+ x="362.74445"
+ y="510.46634" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="345.84753"
+ y="514.71954"
+ id="text828-5"><tspan
+ sodipodi:role="line"
+ id="tspan826-0"
+ x="345.84753"
+ y="514.71954"
+ style="stroke-width:0.26458332">generic_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="345.84753"
+ y="506.56747"
+ id="text828-9"><tspan
+ sodipodi:role="line"
+ id="tspan826-9"
+ x="345.84753"
+ y="506.56747"
+ style="stroke-width:0.26458332">generic_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="105.97166"
+ y="364.39725"
+ id="text1651"><tspan
+ sodipodi:role="line"
+ id="tspan1649"
+ x="105.97166"
+ y="364.39725"
+ style="stroke-width:0.26458332">locklabels_unlocked</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-0"
+ width="6.0906835"
+ height="6.0906835"
+ x="136.04716"
+ y="360.51498" />
+ <rect
+ y="360.71603"
+ x="136.11598"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="matrix(-0.27310678,0,0,0.26057414,142.31269,359.48029)"
+ id="g3607-1">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-9"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-6"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ id="g2915-9"
+ transform="matrix(0.26458333,0,0,0.26458333,135.80355,360.22848)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-3"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-3"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="105.97166"
+ y="379.66245"
+ id="text1694"><tspan
+ sodipodi:role="line"
+ id="tspan1692"
+ x="105.97166"
+ y="379.66245"
+ style="stroke-width:0.26458332">locklabels_dn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-2);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-7"
+ width="6.0906835"
+ height="6.0906835"
+ x="136.13127"
+ y="368.0004" />
+ <rect
+ y="368.26474"
+ x="136.26332"
+ height="5.5620031"
+ width="5.8265862"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-5"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.25883049;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-3);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-7"
+ width="6.0906835"
+ height="6.0906835"
+ x="-142.22197"
+ y="-381.57651"
+ transform="scale(-1)" />
+ <rect
+ y="-381.3754"
+ x="-142.15318"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-3-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-2-2-4);fill-opacity:1;stroke:#141414;stroke-width:0.28832451;stroke-opacity:1"
+ id="rect3597-7-9-1"
+ width="6.0616751"
+ height="6.0616751"
+ x="136.21123"
+ y="383.42215" />
+ <rect
+ y="383.60873"
+ x="136.26552"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-0-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4-5);fill-opacity:1;stroke:#141414;stroke-width:0.28832451;stroke-opacity:1"
+ id="rect3597-2-3-0-4"
+ width="6.0616751"
+ height="6.0616751"
+ x="136.08031"
+ y="390.95999" />
+ <rect
+ y="391.20981"
+ x="136.19786"
+ height="5.5620031"
+ width="5.8265862"
+ id="rect3597-5-7-9-4-8-9-8-0-2-1"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.25883049;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="105.97166"
+ y="394.9277"
+ id="text1801"><tspan
+ sodipodi:role="line"
+ id="tspan1799"
+ x="105.97166"
+ y="394.9277"
+ style="stroke-width:0.26458332">locklabels_lockedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="105.97166"
+ y="387.29507"
+ id="text1805"><tspan
+ sodipodi:role="line"
+ id="tspan1803"
+ x="105.97166"
+ y="387.29507"
+ style="stroke-width:0.26458332">locklabels_locked</tspan></text>
+ <g
+ id="g2915-3"
+ transform="matrix(0.26458333,0,0,0.26458333,135.88766,367.71391)"
+ style="fill:#27ae60;fill-opacity:1">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ transform="matrix(-0.27310678,0,0,0.26057414,142.3968,366.96572)"
+ id="g3607">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-3"
+ d="m 146.38837,377.88451 c -0.326,0 -0.59312,0.25638 -0.60998,0.57821 -2.6e-4,0.006 1.4e-4,0.0126 0,0.019 v 1.13736 h 0.20333 v -1.13736 -0.019 c 0.0168,-0.20913 0.19319,-0.37488 0.40665,-0.37488 0.21323,0 0.38314,0.16607 0.4003,0.37488 v 1.15642 h 0.20968 v -1.13736 c -1.3e-4,-0.006 2.7e-4,-0.0128 0,-0.0191 -0.0167,-0.32195 -0.28388,-0.57821 -0.60998,-0.57821 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="105.88755"
+ y="372.3873"
+ id="text1946"><tspan
+ sodipodi:role="line"
+ id="tspan1944"
+ x="105.88755"
+ y="372.3873"
+ style="stroke-width:0.26458332">locklabels_unlockedhi</tspan></text>
+ <g
+ id="g2915-3-8"
+ transform="matrix(0.26458333,0,0,0.26458333,135.95311,383.12113)"
+ style="fill:#800000">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1-1"
+ style="fill:#800000;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8-3"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#800000;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818-1"
+ d="m 139.62087,385.12182 c -0.002,0.34492 -0.31531,0.68813 -0.50787,0.69294 l -1.5011,0.002 v -1.39565 h 1.49786 c 0.26097,0.01 0.51344,0.35631 0.51111,0.70114 z"
+ style="fill:none;stroke:#782121;stroke-width:0.43855122;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccccc"
+ id="rect2825-1"
+ d="m 140.83215,384.97869 v 0.26057 1.62428 h 0.26457 l -0.56328,0.51301 -0.52914,-0.51301 h 0.2731 v -1.62428 h -0.61449 v -0.26057 h 0.61449 z"
+ style="fill:#800000;fill-opacity:1;stroke:none;stroke-width:0.26676688"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-3-3"
+ d="m 139.01458,386.5884 c -0.32601,0 -0.59313,0.25639 -0.60998,0.57822 -2.7e-4,0.006 1.3e-4,0.0126 0,0.0191 v 1.13735 h 0.20332 v -1.13735 -0.0191 c 0.0168,-0.20914 0.1932,-0.37489 0.40666,-0.37489 0.21322,0 0.38313,0.16608 0.4003,0.37489 v 1.15642 h 0.20968 v -1.13736 c -1.4e-4,-0.006 2.6e-4,-0.0128 0,-0.0191 -0.0167,-0.32195 -0.28389,-0.57821 -0.60998,-0.57821 z"
+ style="fill:#800000;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,46.021894,370.30349)"
+ id="g2028-3">
+ <g
+ style="fill:#800000"
+ transform="translate(339.39287,76.943865)"
+ id="g2915-3-8-7">
+ <rect
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ id="rect3456-1-1-9"
+ width="6.1738887"
+ height="4.4545779"
+ x="8.4406767"
+ y="16.628881"
+ ry="0.81355929" />
+ <path
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ id="path3458-8-3-8"
+ sodipodi:nodetypes="cscccccsccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#782121;stroke-width:1.65751636;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 353.25527,84.505506 c -0.009,1.303659 -1.19175,2.600837 -1.91953,2.618996 l -5.67343,0.0059 V 81.85552 h 5.66118 c 0.98634,0.03693 1.94056,1.346671 1.93178,2.649986 z"
+ id="rect2818-1-6"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#800000;fill-opacity:1;stroke:none;stroke-width:1.00825274"
+ d="m 357.83333,83.964539 v 0.984848 6.13902 h 0.99996 l -2.12895,1.938918 -1.99991,-1.938918 h 1.03221 v -6.13902 h -2.32248 v -0.984848 h 2.32248 z"
+ id="rect2825-1-7"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ d="m 350.96375,90.048511 c -1.23215,0 -2.24173,0.969008 -2.30543,2.185364 -10e-4,0.02422 5.1e-4,0.04764 0,0.07205 v 4.298684 h 0.76847 v -4.298684 -0.07205 c 0.0636,-0.790427 0.73019,-1.416884 1.53696,-1.416884 0.80589,0 1.44807,0.627689 1.51295,1.416884 v 4.370729 h 0.79249 v -4.298683 c -5e-4,-0.02408 0.001,-0.04815 0,-0.07205 -0.0632,-1.216816 -1.07295,-2.185364 -2.30544,-2.185364 z"
+ id="path3473-3-3-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g2100"
+ transform="matrix(0.26458333,0,0,0.26458333,46.155424,362.76307)">
+ <g
+ style="fill:#ffcc00"
+ transform="translate(339.14547,47.797933)"
+ id="g2915-3-4">
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ id="rect3456-1-8"
+ width="6.1738887"
+ height="4.4545779"
+ x="8.4406767"
+ y="16.628881"
+ ry="0.81355929" />
+ <path
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ id="path3458-8-4"
+ sodipodi:nodetypes="cscccccsccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#ffcc00;stroke-width:1.65751636;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 353.00787,55.359574 c -0.009,1.303659 -1.19175,2.600837 -1.91953,2.618996 l -5.67343,0.0059 v -5.274891 h 5.66118 c 0.98634,0.03694 1.94056,1.346671 1.93178,2.649987 z"
+ id="rect2818-16"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.00825274"
+ d="m 357.58593,54.818607 v 0.984848 6.13902 h 0.99996 l -2.12895,1.938918 -1.99991,-1.938918 h 1.03221 v -6.13902 h -2.32248 v -0.984848 h 2.32248 z"
+ id="rect2825-8"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ transform="matrix(-0.27310678,0,0,0.26057414,142.46226,382.37295)"
+ id="g3607-5">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-2"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-19"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ transform="matrix(-0.27310678,0,0,0.26057414,142.32873,389.91337)"
+ id="g3607-9">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-6"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-0"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ transform="matrix(-0.27310678,0,0,0.26057414,142.3968,374.66142)"
+ id="g3607-5-6">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-2-4"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-19-9"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ id="g2915-3-9"
+ transform="matrix(0.26458333,0,0,0.26458333,135.80355,360.22848)"
+ style="fill:#27ae60;fill-opacity:1">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1-0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8-8"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ </g>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1);fill-opacity:1;stroke:#141414;stroke-width:0.137592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-9"
+ width="33.729076"
+ height="5.1542015"
+ x="306.49304"
+ y="494.14542"
+ inkscape:transform-center-x="25.386468"
+ inkscape:transform-center-y="-37.166706" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="287.31763"
+ y="497.91196"
+ id="text2425"><tspan
+ sodipodi:role="line"
+ id="tspan2423"
+ x="287.31763"
+ y="497.91196"
+ style="stroke-width:0.26458332">mode_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="287.57959"
+ y="513.90155"
+ id="text2425-6"><tspan
+ sodipodi:role="line"
+ id="tspan2423-7"
+ x="287.57959"
+ y="513.90155"
+ style="stroke-width:0.26458332">mode_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="287.57959"
+ y="506.28915"
+ id="text2425-7"><tspan
+ sodipodi:role="line"
+ id="tspan2423-3"
+ x="287.57959"
+ y="506.28915"
+ style="stroke-width:0.26458332">mode_hi</tspan></text>
+ <flowRoot
+ transform="matrix(0.26458333,0,0,0.26458333,341.40899,717.06774)"
+ xml:space="preserve"
+ id="flowRoot2453"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion2455"><rect
+ id="rect2457"
+ width="13.036989"
+ height="18.431606"
+ x="452.69821"
+ y="406.76102" /></flowRegion><flowPara
+ id="flowPara2459" /></flowRoot> <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-1-7);fill-opacity:1;stroke:#141414;stroke-width:0.13746479;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-3-2"
+ width="33.729202"
+ height="5.154202"
+ x="306.51965"
+ y="502.76883" />
+ <rect
+ y="502.905"
+ x="306.65582"
+ height="4.8818769"
+ width="33.456875"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-0-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.14520663;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4-5);fill-opacity:1;stroke:#141414;stroke-width:0.13746479;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5-0"
+ width="33.729202"
+ height="5.154202"
+ x="306.63861"
+ y="510.32175" />
+ <image
+ y="518.15527"
+ x="306.49182"
+ id="image2629"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMIAAABpCAIAAADnWGtLAADSQ2lDQ1BJQ0MgcHJvZmlsZQAAeJzs un1wIt2eHtYzw8wgDZKQ1JKQ1IgWNNBIDTTQoAZaHy0JSS2pJSEJSUhCEpphZnjvy3sv15dd4128 MZXCNuWwNuXCNnGIQ7J4l9g4IQl2KBdxltTiMnawF6/ZLezgLOvFtaTMZolNOdgmzP2ovTdJlSup /BcfquDhnOZ8/c55nuc0Dbz4Uz97tMNevAQAwPPN9757vr8N39hv4be/AbwFBMA4sAjgzvd/4Dvs xd7l8BJg13IM6AkaB34i/YtfA158+ayuHp3u0sD/syR4/53vfg8AXvxnQ7z809/7zhf8N4cY/Nrn cf8I/5Tb9dND/A+HGDnCNQYA+NJjwDvEa0M8/A3AO8J1miH+936A8S/5f2KI/4sPnm8+AMAraog/ fPB8+IL/whAHPrj+wHsA4MBD/IeOcK3m9+vR6of5f/6HdQ7HyvnFL/i7w4kZ4v/6S38+/QB/v2/P P8Bf+gZ+9/J8Z4h/d4hnP/0Yfv4xTGu3h3W+5gLArxBH+NoQl7/0bXRb+2Veywc/zNf8KP97rj/4 pV/Azre/4/+u+9Pn78FaHDfCu66vv4aZb96rvpR9idkPY/EPfxgL0w/m7Pt59R/lAdt/bAXYG8Jj c2v4/vIHc/D99JZ1fuNzfv2jsHD/zQBgASfwDeAbvn/9k1f8mx9e9Pd/dwr4R41f/X4zD3/oFf/N 8PO3hnlvflj+J//5FPCLw3Jy9S8D6P1fBv7BTw0zfW6d9oflL340No0KB36sL9D1Z/f3XGffdn/z vfVdgx7HMXjf6fE417WqH/0UEA47eA18BtzA9wAXcAZ8e4i+GeJ1YBcwAHoAH74wAAb2h933DF/O YYkWUAHaf3sDquFQ5oZX/cI//sEQ//tf/Hs/vfu/TgH/2xB/Gd6XoVh/+sf6O/oTwfiJ9OvZre9/ DoZpchiFn5340/+Xa76kH+X/ZPmPtfHu+23YtGsazY9KecMp2B0O/uvhCwZsw6GtARpA83+++v/t AH+yffj3a4R3vv31t78Ln3332x/dX7sw+PsN/H888p9YJz+OX/7+Wv+zwy7uPA+z4N/PM/+PAPCX fnO4FX/l9/PEPw8AE3kA+OuW977v/tQP63k9nD947a/+0d8bDIbc9/F736//1Ss+8IO98mPp/+b7 C4D/w94AnCFTvgMmh2wJAyvDdUcDp8DDcDX+EeBPA78E/A3g14HfezH+YvUF8+KrF3/ixV958Wsv /tVL6cvTlz/z8pde/sard682Xv2BV+lXv8kRcuycP8OpvZ5/7XidfP07b3Rvfu7N3367+Pbrt/8d F+R+xS2OLI38zMhvjJpG//y7F+8+v/u7PDPvL47Njv3Rsf99/JvxfzLxMPEb/Cv+r01eTf7G1OPU b09/Z7oP/vGZ+Zn/fHZz9tfmvhFwBb8wvzv/Txb+2KJy8e9Df1i4Ivz1pT8mMok6cGr5Ubwgrkn+ DGKXCqVN2V+S/xS6o5hW/NbKX1uNYB+VtGpJ9a/V/xP+y5pf1P5J3c8Qn/XXhoM1itQaV00ys4QS ryMb6KZqa43e3j7dedz1WkJ7/9F+7uBXmd894h/r2JuTnzv9pbN/cM650F+6bf/xVe1myn56G7n7 u46Zh/vHX3j63efN9z//4Tc/kp9+/vPvfLX/rZSH+83X3/5Vr/m7f/F7M77QT/3LP/iN/7d/xvmz /+gPO36u8UfeB3/n3/9eCPijkT8uCmf/xMF/8D///M/+qYVo/k/fx178mV/6cxf/IfDn/0rC+Rdm /5O/85+GfmH7L774xV9Oh/7ScWbmr/zj/zLzX/3cf3P+V9H/FsjX//pfK/zZv/Ezv/z0Pxz8iu5v wn9r4m+//Dv/ovLP/t4/rf6TX/ut2m//Rrv+e//oX/1j7m/O/Zbit9f/6eXvfPO/hP/ZL/3u3/q9 f/bPZ3qb//Jb/T/3r8tfVs2/i/+/i/+/i///r+MPvECA4Bvmpf0FyIu+CryITdU5yZfoPPK69DIt 8rzpv8KkKS7/VWF1MEJwcC056uZkyeC7yGvLRpmXfV2ygGO1N/YjxwTvTd0a48NvHdedScvbzgP6 kvu6BGRfYW/sb/oc65v6mOW1761jOvIm/bYzX3tb4TphPrfJ7crco4IRH5Z8R430tG2eczRsJMZC 73ibgfH8u4ilNNHg8Y+BSQ4ves5MoWPITXSaHUs91DnAu8gL12uEx39beGPnRcd6bwNjCIhzk2Op hfBIaRyFi6Pt8bwc4vEnKKVtjJio6BLjbj5tbE1E+MUtmJ+dtO35J2uTtePsVH/Kft4H4am23TJj mfY8Rt5wJ20vBW+xyRrXybVO2cfTI76pNtgcjU97Fql3lenBso/XBL3yyrgA7Kq4E9RMiLDynbNc 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 hr5Gc43hGss1jms81wSuiVyTuCZzTeFa3rWia2XXQtci1xLXMtdqrzVea73Wea332uC10WuT12av 418nvk5+HXwdeh15HXud7jrTdbbrXNf5rgtdF7sudV3OJDBJTIBJYcJMlIkz6U1mk93kNvlNYVPc lDblrxdeL70evF55PX49fb3mesP1lusd13uuD1wfuT5xfeb6wg28G0Q3yG6AbkBuIG5gbtDeYLzB eoPzBu8NwRuiNyRvyN7Iv1F8o/xG+Eb0RvJG9kbdjaYbbTe6bvTdGLoxdmPqxpxZYJaYAbPCjJkp M2fWm81mu9lt9pvD5rg5bc7fJLxJehN4k/Im/Cb6Js1NhpssNzlu8twUuClyU+KmzE2Fm3k3i26W 3QzdjNxM3MzcrL3ZeLP1ZufN3puDN0dvTt6cvYV/i/gW+S3wLegt5C3sLbpbTLfYbnHd4rsldEvs ltQtOYvAIrEAFoUFs1AWzqK3mC12i9vit4QtcUvakr9VeKv0VvBW5a34rfStmlsNt1puddzquTVw a+TWxK2ZWwu38W4T3Sa7DboNuY24jblNe5vxNuttztu8twVvi96WvC17O/928e3y2+Hb0dvJ29nb dbebbrfd7rrdd3vo9tjtqdtzVoFVYgWsCitmpaycVW81W+1Wt9VvDVvj1rQ1f4fwDukd4B3KO/A7 6Ds0dxjusNzhuMNzR+COyB2JOzJ3FO7k3Sm6U3YndCdyJ3Enc6f2TuOd1judd3rvDN4ZvTN5Z/Yu /l3iu+R3wXehd5F3sXfp7jLdZbvLdZfvrtBdsbtSd+VsApvEBtgUNsxG2Tib3ma22W1um98WtsVt aVv+buHd0rvBu5V343fTd2vuNtxtudtxt+fuwN2RuxN3Z+4u3MO7R3SP7B7oHuQe4h7mHu09xnus 9zjv8d4TvCd6T/Ke7L38e8X3yu+F70XvJe9l79Xda7rXdq/rXt+9oXtj96buzdkFdokdsCvsmJ2y c3a93Wy32912vz1sj9vT9vx9wvuk94H3Ke/D76Pv09xnuM9yn+M+z32B+yL3Je7L3Fe4n3e/6H7Z /dD9yP3E/cz92vuN91vvd97vvT94f/T+5P3ZB/gPiB+QPwA/gD5APsA+oHvA9IDtAdcDvgdCD8Qe SD2QcwgcEgfgUDgwB+XgHHqH2WF3uB1+R9gRd6Qd+QeFD0ofBB9UPog/SD+oedDwoOVBx4OeBwMP Rh5MPJh5sPAQ7yHRQ7KHoIeQh4iHmIe0Dxkfsj7kfMj7UPCh6EPJh7IP8x8WPyx/GH4YfZh8mH1Y 97DpYdvDrod9D4cejj2cejjnFDglTsCpcGJOysk59U6z0+50O/3OsDPuTDvzjwgfkT4CPqJ8BH+E fkTziOERyyOORzyPBB6JPJJ4JPNI4VHeo6JHZY9CjyKPEo8yj2ofNT5qfdT5qPfR4KPRR5OPZh/j PyZ+TP4Y/Bj6GPkY+5juMdNjtsdcj/keCz0Weyz1WM4lcElcgEvhwlyUi3PpXWaX3eV2+V1hV9yV duUfFz4ufRx8XPk4/jj9uOZxw+OWxx2Pex4PPB55PPF45vHCE7wnRE/InoCeQJ4gnmCe0D5hfML6 hPMJ7xPBJ6JPJJ/IPsl/Uvyk/En4SfRJ8kn2Sd2TpidtT7qe9D0ZejL2ZOrJnFvglrgBt8KNuSk3 59a7zW672+32u8PuuDvtzj8lfEr6FPiU8in8KfopzVOGpyxPOZ7yPBV4KvJU4qnMU4WneU+LnpY9 DT2NPE08zTytfdr4tPVp59Pep4NPR59OPp19hv+M+Bn5M/Az6DPkM+wzumdMz9iecT3jeyb0TOyZ 1DM5j8Aj8QAehQfzUB7Oo/eYPXaP2+P3hD1xT9qTf1b4rPRZ8Fnls/iz9LOaZw3PWp51POt5NvBs 5NnEs5lnC8/xnhM9J3sOeg55jniOeU77nPE563PO57zPBZ+LPpd8Lvs8/3nx8/Ln4efR58nn2ed1 z5uetz3vet73fOj52POp53NegVfiBbwKL+alvJxX7zV77V631+8Ne+PetDf/gvAF6QvgC8oX8Bfo FzQvGF6wvOB4wfNC4IXIC4kXMi8UXuS9KHpR9iL0IvIi8SLzovZF44vWF50vel8Mvhh9Mfli9iX+ S+KX5C/BL6EvkS+xL+leMr1ke8n1ku+l0Euxl1Iv5XwCn8QH+BQ+zEf5OJ/eZ/bZfW6f3xf2xX1p X/5l4cvSl8GXlS/jL9Mva142vGx52fGy5+XAy5GXEy9nXi68wntF9IrsFegV5BXiFeYV7SvGV6yv OF/xvhJ8JfpK8pXsq/xXxa/KX4VfRV8lX2Vf1b1qetX2qutV36uhV2Ovpl7N+QV+iR/wK/yYn/Jz fr3f7Lf73X6/P+yP+9P+/GvC16Svga8pX8Nfo1/TvGZ4zfKa4zXPa4HXIq8lXsu8Vnid97roddnr 0OvI68TrzOva142vW193vu59Pfh69PXk69k3+G+I35C/Ab+BvkG+wb6he8P0hu0N1xu+N0JvxN5I vZELCAKSABBQBLAAFeAC+oA5YA+4A/5AOBAPpAP5N4VvSt8E31S+ib9Jv6l50/Cm5U3Hm543A29G 3ky8mXmz8BbvLdFbsregt5C3iLeYt7RvGd+yvuV8y/tW8K3oW8m3sm/z3xa/LX8bfht9m3ybfVv3 tult29uut31vh96OvZ16O/eO4B3JO8A7inewd6h3uHf075jfsb/jfsf/Tvid+Dvpd/JBYVAaBIPK IB6kg5qgIWgJOoKeYCAYCSaCmWDhXd67ondl70LvIu8S7zLvat81vmt91/mu993gu9F3k+9m3+O/ J35P/h78Hvoe+R77nu4903u291zv+d4LvRd7L/Ve7n3B+5L3gfcV72PvU+9z7+vfN79vf9/9vv/9 8Pvx99Pv50PCkDQEhpQhPESHNCFDyBJyhDyhQCgSSoQyocIHvA9EH8g+gD5APiA+YD7QfmD8wPqB 8wPvB8EPoh8kP8h+yP9Q/KH8Q/hD9EPyQ/ZD3YemD20fuj70fRj6MPZh6sPcR4KPJB8BHyk+wj6i PuI+0n9k/sj+kfsj/0fhj+IfpT/Kh4VhaRgMK8N4mA5rwoawJewIe8KBcCScCGfChY95H4s+ln0M fYx8THzMfKz92Pix9WPnx96Pgx9HP05+nP2E/4n4E/kn8CfoJ+Qn7Ce6T0yf2D5xfeL7JPRJ7JPU J7lPBZ9KPgU+VXyKfUp9yn2q/9T8qf1T96f+T8Ofxj9Nf5qPCCPSCBhRRvAIHdFEDBFLxBHxRAKR SCQRyUQKn/E+E30m+wz6DPmM+Iz5TPuZ8TPrZ87PvJ8FP4t+lvws+zn/c/Hn8s/hz9HPyc/Zz3Wf mz63fe763Pd56PPY56nPc18IvpB8AXyh+AL7gvqC+0L/hfkL+xfuL/xfhL+If5H+Ih8VRqVRMKqM 4lE6qokaopaoI+qJBqKRaCKaiRa+5H0p+lL2JfQl8iXxJfOl9kvjl9YvnV96vwx+Gf0y+WX2K/5X 4q/kX8FfoV+RX7Ff6b4yfWX7yvWV76vQV7GvUl/lvhZ8Lfka+FrxNfY19TX3tf5r89f2r91f+78O fx3/Ov11PiaMSWNgTBnDY3RMEzPELDFHzBMLxCKxRCwTK3zD+0b0jewb6BvkG+Ib5hvtN8ZvrN84 v/F+E/wm+k3ym+y3/G/F38q/hb9FvyW/Zb/VfWv61vat61vft6FvY9+mvs19J/hO8h3wneI77Dvq O+47/Xfm7+zfub/zfxf+Lv5d+rt8XBiXxsG4Mo7H6bgmbohb4o64Jx6IR+KJeCZe+J73veh72ffQ 98j3xPfM99rvjd9bv3d+7/0++H30++T32R/4P4h/kP8A/4D+QP7A/qD7wfSD7QfXD74fQj/Efkj9 kPtR8KPkR+BHxY/Yj9SP3I/6H80/2n90/+j/Mfxj/Mf0j/mEMCFNgAllAk/QCU3CkLAkHAlPIpCI JBKJTKLwE+8n0U+yn6CfkJ+In5iftD8Zf7L+5PzJ+1Pwp+hPyZ+yP/N/Fv8s/xn+Gf2Z/Jn9Wfez 6Wfbz66ffT+Hfo79nPo594vgF8kvwC+KX7BfqF+4X/S/mH+x/+L+xf9L+Jf4L+lf8sn/BsqDSWUS T9JJTdKQtCQdSU8ykIwkE8lMsvAr71fRr7JfoV+RX4lfmV+1vxp/tf7q/NX7a/DX6K/JX7O/8X8T /yb/Df4N/Y38jf1N95vpN9tvrt98v4V+i/2W+i33u+B3ye/A74rfsd+p37nf9b+bf7f/7v7d/3v4 9/jv6d/zKWFKmgJTyhSeolOalCFlSTlSnlQgFUklUplU4Q/eH6I/ZH9AfyB/EH8wf2j/MP5h/cP5 h/eP4B/RP5J/ZP/k/yn+U/4n/Cf6J/kn+6fuT9Oftj9df/r+DP0Z+zP1Z+4vwV+Sv4C/FH9hf1F/ cX/p/zL/Zf/L/Zf/r/Bf8b/Sf+XTwrQ0DaaVaTxNpzVpQ9qSdqQ96UA6kk6kM+nC37y/RX/L/ob+ Rv4m/mb+1v5t/Nv6t/Nv79/Bv6N/J//O/sP/R/yP/B/4H/Qf8h/2H90/pn9s/7j+8f0T+if2T+qf 3L+CfyX/Av8q/sX+pf7l/tX/a/7X/q/7X/+/4X/j/6b/zWeEGWkGzCgzeIbOaDKGjCXjyHgygUwk k8hkMoX/8f4n+p/sf9D/kP8R/2P+p/2f8X/W/zn/5/1f8H/R/yX/l/0//v+J/0/+f/D/s/f+cS6e 2d94dpvtZttsm27TbdpNu2mbrnSlbaqppkQ1JQgTBDGCMBmCGEEQhAkmQxAaI0MQBDGCqAxBEMSP GEHGBEGMIIgKYhozmZmMyZj7Odfd734/n+e7+3p9vv89fzzj9dp37TZzzX3Odc77nOt9rjtbL6yX 1ivrtfXGemu9s95bH6yP1ifrsw2kBloDq4HXIGqQNagadA2mBluDq8HXEGqINaQachlyhp5hZ/gZ cUaeUWf0GXPGnnFn/JlwJp5JZ7BGQiOlkdHIaRQ0ShoVjZpGQ6Ol0dHoaQw0RhoTjZkmYhO1idnE bRI2SZuUTdomY5O1ydnkbQo2RZuSTdlmUjOtmdXMaxY1y5pVzbpmU7Ot2dXsaw41x5pTzbksOUvP srP8rDgrz6qz+qw5a8+6s/5sOBvPprNYC6GF0sJo4bQIWiQtihZNi6HF0uJo8bQEWiItiZbMC+IL 6gvmC+4L4QvpC+UL7QvjC+sL5wvvi+CL6Ivki2wrqZXWymrltYpaZa2qVl2rqdXW6mr1tYZaY62p 1lyOnKPn2Dl+TpyT59Q5fc6cs+fcOX8unIvn0jmsjdBGaWO0cdoEbZI2RZumzdBmaXO0edoCbZG2 RFvmJfEl9SXzJfel8KX0pfKl9qXxpfWl86X3ZfBl9GXyZbad1E5rZ7Xz2kXtsnZVu67d1G5rd7X7 2kPtsfZUew4jY3SMjfExMSbH1JgeM2N2zI35sTAWx9IY1jH/75j/d8z/O+b/HfP/jvl/x/y/Y/7f Mf/vmP93zP875v8d8/+O+X/H/L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+3zH/75j/d8z/O+b/ HfP/jvl/x/y/Y/7fMf/vmP93zP875v8d8/+O+X/H/L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+ 3zH/75j/d8z/O+b/HfP/jvl/x/y/Y/7fMf/vmP93zP875v8d8/+O+X/H/P///Pxfq+LwCPDn978n ENQTZnVBf3/lFQqB8DvC//7nP/z33xEo6C+/+/3vX3mFSPzDH1599Y9/JJH+9KfXXnv9dTL5z39+ 440336RQ3nrrL395+20q9Z13/vrXd9+l0d577/33//Y3Ov2DDz788O9/ZzA++ujjjz/5hMn89NN/ /KNTJxbrs8/++c/Ondnszz//4osvv+RwvvqqS5evv+Zyv/mma9dvv+XxvvuuW7fu3fn8Hj2+/75n zx9+EAh+/LFXr969hcI+ffr27ddPJOrff8CAvDyxeODAQYMGD5ZIhgwZOnTYMKl0+PD8/BEjZLKR I0eNGj1aLh8zZuzYggKForBw3Ljx45XKCRMmTpw0SaWaPLmoaMoUtXrq1GnTpk/XaGbMmDlz1iyt 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 wF/qUaAK7qnymLDLe5BprbuElcLuEvyl7vy/sCvtTmeDOOFxis2NbnKFZyPtDemm/LNT8Ri7nzur nsM7GRL4S/0lK4e4ns21/vxOdkf70/CX+hOogvsT77Mr7Y/8M9NafxA+Qr/31/TuPkabjXS2QX9H OafAXxrKowoeSr+axilvy3SIDjYDhyKogoeCh/zYl3RajngZOyldmOhDNlTBQx232JUOUdaZjeSy DlFGG0s8zO7nWATvbo0FOXY/x7zwl8a8qILHXNvZNzZmO8A+11gHX0REFTxmvMaudEz3761wMj5l c2OM/NXZSE/MY+SyCt6HeOyMe0qBPemogoWOpTWIduwoN25lM1DQ7Wd3TGhEFSw0XtBjp3kigdM5 0+wzChWogq8Xcd7qdXJZr5PLep1c1mzHA2wGZo2ogrO6dgf8s84C4mo2A7NKVMHZmn3surMVwThi hGntZvFDP9ZlUQXfTP0X1mjjtyWIGPMmZfmb5LIWG++342y++fjvmoXsfhYrFqcQUQXPFLHLZya3 l83AmdRRHyKq4Jk4TlKfCafYPZihemDG82UWEWPOUC0xQ0/eYhOb2MQmNrGJTWxiE9sfZvujvsra P07/iexPS3P9f9ZYzf+57C+MNfa/9P9V/K/TCmFe8m/ifxusdf8d9/ct36r5Vr7OV8/dU3dP7h+8 Sv23pd/2f8fwneI/BlUaVeafLN+t/m74e7rvpdXt6sK9ju9Xfz/wA+UPIg2qhugPtT+M/ajlR/Ef 636caFQ18k21Tf6fVP/Ec1/Ffbb78ve33y9otJrQA3UPOB8oPtjxYPoh1UM+rVRr0SYfbnk48EjF I7ZH0s2qZndzoaW1JfRo9aPWR1OPNT7mfaz0U/1PeZ1Ux+lij1c/bn08Pl853zU/vUCxwL5A0Kv1 Dn3yiYYnnE+knlQ+6Xoy/ZTiKfNT0VZ5K9caelr2tOHpwNPFZ3TPeJ/JP6t61v6sYJAbOEPoOdlz Lc95nss93/i87flEm6RN3+ZryxjVRosx9oLsBcMLnhdyC5ULbQsjC0sval60vyi0y9tb2/3t2Zfq XjK9FH6p+HLjy7aXI4skizSL7IuinJTTcn1c8pXqVwyveF5JvVrzqvFV76vp16pe07/mfk0wyU2t pj5T8nXZ6y2vO1+Pv1Hxhu4N1xuRN0pvqt40v8m/memo7eA6/B3JxdWLDYs9i+NLKpboltiWRJaw urmzvdPXKZjlZq3ZYY6Zp95qeMv0VuCt1NKapbqlrqWRpaW3FW+3v+1+W7BILVqLxRKyZN+pe8fw jvOd+DvFZY3LOpZ5l6W7JF2qLnOXr0uwyq1aq8UasmaXVy83LHcuDy/Pvat81/iu693Iu6UVihX6 FfYV/IqCrdbWanPYQraplXUrDSudK8Mrc6uUq4yrXKsiq/Krq1ZrVptX+1YLa+RrtGssa/xrknaZ vcFusnvscXuxW9lt7HZ1R7rzPVU9mh5zj69HWCtdq17Lre1bG1s75ahzGBxOR9iRWlexrnFdxzrv usS60nrFev16+3rfemGDdIN6A7ehb0NsQ9ZZ7WxxWp0BZ8pZ3KjcaNzo2hjZmO6V9Kp623vdvXxv ZpN8k3YTt6lvU2zTlKva1eKyugKuuKu4WblZt9m2Obg5vbm0RbFFv8W8xbdF2FLYWru1datlq39r cuuUu85tcFvdAXfKXdym3KbbZtsW3JbYVtqu2K7Zbt7u3h7dXtgh36Hdwe3o2xHake2r7mvoM/U5 +8J9qf6K/sZ+Y7+rP9if7i/tVOzU7DTvdO+M7szsku9S7+J2OXaFdiU9Mk+dx+CxegKeuKe4u2a3 bnfHbu/uyO70HskexR79HvMe357onsJe+V71Xm6vY29ob9Ir89Z5W7xWr8cb9+b2Vexr3Gfc59oX 3JfYVxqoGlANtA/YB/gBYaCwv3a/dj+3v29/aH/SJ/PV+Vp8Vp/HF/blDlQcUB4wHrAd8B5IHMgf lBxUHdQfNB90H4wezBySHlIfaj1kOeQ/FDuU9cv8DX6D3+r3+OP+3OGKw8rDxsO2w97DkcP5I5Ij iiOaI+Yj7iP8EWFQOlg7qB3kBh2DocHk4FSgOtASMAWcgUAgHigO1Qw1DhmHbEPeocRQ/qjkqOKo 5qj5qPsof1Q4WjgmP6Y9xh1zHPMfix3LBquDDUFD0Br0BMPBVLB4XHlcd7zjuOt48HjieP5E1QnV Cf0J8wn3Cf6EcKJwUn5Se5I76TjpPxk7meVlfB3fwpt4Jx/mU3zxVM2pxlPGU7ZT3lORU+lTpeGq YdWwftg+7BuODmdOS0/Xntae5k47TvtPx05nQ7JQXaglZAo5Q4FQPJQ7U3FGeUZ3puOM60zwTOJM /qzkrOKs5mz7WftZ39no2cw56bnac9pz3DnHOf+52LlsWBauC7eETWFnOBCOh3PnK84rz+vOd5x3 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 YII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.037952"
+ width="27.070694" />
+ <ellipse
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:0.13731875;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2632"
+ cx="315.06085"
+ cy="528.16742"
+ rx="6.6013808"
+ ry="2.5572915" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="346.14618"
+ y="478.34805"
+ id="text2638"><tspan
+ sodipodi:role="line"
+ id="tspan2636"
+ x="346.14618"
+ y="478.34805"
+ style="stroke-width:0.26458332">column_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="346.36249"
+ y="470.42819"
+ id="text2638-4"
+ inkscape:transform-center-y="23.826222"><tspan
+ sodipodi:role="line"
+ id="tspan2636-0"
+ x="346.36249"
+ y="470.42819"
+ style="stroke-width:0.26458332">column_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="346.36249"
+ y="463.17258"
+ id="text2638-1"><tspan
+ sodipodi:role="line"
+ id="tspan2636-3"
+ x="346.36249"
+ y="463.17258"
+ style="stroke-width:0.26458332">column_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-5);fill-opacity:1;stroke:#141414;stroke-width:0.12591788;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4"
+ width="28.1845"
+ height="5.1658754"
+ x="364.64453"
+ y="459.94559"
+ inkscape:transform-center-x="21.213298"
+ inkscape:transform-center-y="-37.250886" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2);fill-opacity:1;stroke:#141414;stroke-width:0.12591788;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-7"
+ width="28.1845"
+ height="5.1658754"
+ x="364.93927"
+ y="468.15274"
+ inkscape:transform-center-x="21.213298"
+ inkscape:transform-center-y="-37.250886" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.22288765"
+ id="rect3611-3-64-8-2"
+ width="28.045834"
+ height="5.0270834"
+ x="365.00867"
+ y="468.22214" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4-4);fill-opacity:1;stroke:#141414;stroke-width:0.12580137;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5-5"
+ width="28.184614"
+ height="5.1658654"
+ x="364.52551"
+ y="475.52725" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.76416"
+ y="504.53766"
+ id="text3132"><tspan
+ sodipodi:role="line"
+ id="tspan3130"
+ x="228.76416"
+ y="504.53766"
+ style="stroke-width:0.26458332">zoomtumble_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.62817"
+ y="520.19672"
+ id="text3136"><tspan
+ sodipodi:role="line"
+ id="tspan3134"
+ x="228.62817"
+ y="520.19672"
+ style="stroke-width:0.26458332">zoomtumble_top</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="229.03604"
+ y="511.7706"
+ id="text3144"><tspan
+ sodipodi:role="line"
+ id="tspan3142"
+ x="229.03604"
+ y="511.7706"
+ style="stroke-width:0.26458332">zoomtumble_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.76416"
+ y="528.38147"
+ id="text3148"><tspan
+ sodipodi:role="line"
+ id="tspan3146"
+ x="228.76416"
+ y="528.38147"
+ style="stroke-width:0.26458332">zoomtumble_bottom</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9"
+ width="4.934566"
+ height="2.5533159"
+ x="257.60757"
+ y="500.4505" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.54214"
+ y="-505.64966"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6"
+ d="m 261.65534,503.5586 h -3.16098 l 1.60726,1.60603 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.49436,502.54156 h 3.16098 l -1.60727,-1.60603 z"
+ id="path2910-1-9-2"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.6936,503.05008 h 4.7625"
+ id="path1006-7"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="500.46851"
+ x="257.62561"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="500.56744"
+ x="257.72452"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5"
+ width="4.934566"
+ height="2.5533159"
+ x="257.78336"
+ y="507.90076" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.71793"
+ y="-513.09985"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5"
+ d="m 261.83113,511.00886 h -3.16098 l 1.60726,1.60603 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391);fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.67015,509.99182 h 3.16098 l -1.60727,-1.60603 z"
+ id="path2910-1-9-2-6"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.86939,510.50034 h 4.7625"
+ id="path1006-7-8"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="507.91876"
+ x="257.80139"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="508.0177"
+ x="257.9003"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-8);fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 261.83113,511.00886 h -3.16098 l 1.60726,1.60603 z"
+ id="path2910-1-9-2-6-7"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57"
+ width="4.934566"
+ height="2.5533159"
+ x="257.87198"
+ y="515.40088" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.80655"
+ y="-520.60004"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2"
+ d="m 261.91974,518.50905 h -3.16098 l 1.60726,1.60603 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.75876,517.49201 h 3.16098 l -1.6073,-1.60603 z"
+ id="path2910-1-9-2-7"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.958,518.00053 h 4.7625"
+ id="path1006-7-2"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="515.41895"
+ x="257.89001"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="515.51782"
+ x="257.98892"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-1);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-9"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.68637"
+ y="-528.38776"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-4);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-5"
+ width="4.934566"
+ height="2.5533159"
+ x="257.75177"
+ y="523.1886" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-7"
+ d="m 258.63861,525.2797 h 3.16095 l -1.60726,-1.60603 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 261.79956,526.29674 h -3.16095 l 1.60727,1.60603 z"
+ id="path2910-1-9-2-7-4"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 262.60035,525.78822 h -4.7625"
+ id="path1006-7-2-1"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="-528.36969"
+ x="-262.6683"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-2"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-528.27075"
+ x="-262.5694"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-2"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845"
+ width="43.391666"
+ height="2.6590626"
+ x="285.99957"
+ y="457.57571" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1"
+ width="43.391666"
+ height="2.6590626"
+ x="-329.39124"
+ y="-462.88058"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.26965627;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8"
+ width="43.122013"
+ height="5.0220108"
+ x="286.1344"
+ y="457.72379" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="286.92822"
+ y="455.61325"
+ id="text3683"><tspan
+ sodipodi:role="line"
+ id="tspan3681"
+ x="286.92822"
+ y="455.61325"
+ style="stroke-width:0.26458332">zoompopup_up</tspan></text>
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-9"
+ width="43.391666"
+ height="2.6590626"
+ x="285.98578"
+ y="467.11337" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1-7"
+ width="43.391666"
+ height="2.6590626"
+ x="-329.37744"
+ y="-472.41824"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.26965627;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8-4"
+ width="43.122013"
+ height="5.0220108"
+ x="286.12061"
+ y="467.26138" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.26819462"
+ id="rect3611-3-64-8-2-1"
+ width="42.862499"
+ height="4.7624998"
+ x="286.25037"
+ y="467.39114" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="285.81158"
+ y="476.62698"
+ id="text3840"><tspan
+ sodipodi:role="line"
+ id="tspan3838"
+ x="285.81158"
+ y="476.62698"
+ style="stroke-width:0.26458332">zoompopup_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="286.18683"
+ y="466.06717"
+ id="text3844"><tspan
+ sodipodi:role="line"
+ id="tspan3842"
+ x="286.18683"
+ y="466.06717"
+ style="stroke-width:0.26458332">zoompopup_hi</tspan></text>
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-14);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-0"
+ width="43.391666"
+ height="2.6590626"
+ x="285.8786"
+ y="481.17001" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20939426;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1-3"
+ width="43.391666"
+ height="2.6590626"
+ x="-329.27026"
+ y="-481.1965"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.26965627;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8-1"
+ width="43.122013"
+ height="5.0220108"
+ x="286.01343"
+ y="478.67227" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.6521482"
+ y="466.8768"
+ id="text3958"><tspan
+ sodipodi:role="line"
+ id="tspan3956"
+ x="4.6521482"
+ y="466.8768"
+ style="stroke-width:0.26458332">expandpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.72385"
+ y="463.44806"
+ id="text3132-2"><tspan
+ sodipodi:role="line"
+ id="tspan3130-0"
+ x="228.72385"
+ y="463.44806"
+ style="stroke-width:0.26458332">tumble_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.58789"
+ y="479.10724"
+ id="text3136-6"><tspan
+ sodipodi:role="line"
+ id="tspan3134-8"
+ x="228.58789"
+ y="479.10724"
+ style="stroke-width:0.26458332">tumble_top</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.99579"
+ y="470.68103"
+ id="text3144-7"><tspan
+ sodipodi:role="line"
+ id="tspan3142-4"
+ x="228.99579"
+ y="470.68103"
+ style="stroke-width:0.26458332">tumble_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="228.72385"
+ y="487.29193"
+ id="text3148-9"><tspan
+ sodipodi:role="line"
+ id="tspan3146-2"
+ x="228.72385"
+ y="487.29193"
+ style="stroke-width:0.26458332">tumble_bottom</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-1);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-4"
+ width="4.934566"
+ height="2.5533159"
+ x="257.56729"
+ y="459.3609" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-3);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-4"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.50183"
+ y="-464.56006"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-59"
+ d="m 261.61501,462.469 h -3.16095 l 1.60727,1.60603 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.45406,461.45196 h 3.16095 l -1.60726,-1.60603 z"
+ id="path2910-1-9-2-1"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.6533,461.96048 h 4.7625"
+ id="path1006-7-28"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="459.37891"
+ x="257.58533"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-9"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="459.47784"
+ x="257.6842"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-6"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4-1);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5-0"
+ width="4.934566"
+ height="2.5533159"
+ x="257.74304"
+ y="466.81116" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5-7);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6-6"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.67764"
+ y="-472.01031"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5-4"
+ d="m 261.7908,469.91926 h -3.16095 l 1.60727,1.60603 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-9);fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.62985,468.90222 h 3.16095 l -1.60726,-1.60603 z"
+ id="path2910-1-9-2-6-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.82909,469.41074 h 4.7625"
+ id="path1006-7-8-9"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="466.82916"
+ x="257.76111"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4-4"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="466.9281"
+ x="257.86002"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8-5"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-8-2);fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 261.7908,469.91926 h -3.16095 l 1.60727,1.60603 z"
+ id="path2910-1-9-2-6-7-4"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-0);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-6"
+ width="4.934566"
+ height="2.5533159"
+ x="257.83167"
+ y="474.31134" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-1);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-6"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.76627"
+ y="-479.5105"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-3"
+ d="m 261.87941,477.41945 h -3.16095 l 1.60727,1.60603 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 258.71846,476.40241 h 3.16095 l -1.60726,-1.60603 z"
+ id="path2910-1-9-2-7-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 257.9177,476.91093 h 4.7625"
+ id="path1006-7-2-9"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="474.32941"
+ x="257.84973"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-5"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="474.42828"
+ x="257.94864"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-21"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-9-3"
+ width="4.934566"
+ height="2.5533159"
+ x="-262.64606"
+ y="-487.29822"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-4-0);fill-opacity:1;stroke:#141414;stroke-width:0.09251762;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-5-0"
+ width="4.934566"
+ height="2.5533159"
+ x="257.71149"
+ y="482.09906" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-7-9"
+ d="m 258.59829,484.19011 h 3.16098 l -1.60727,-1.60604 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none;stroke-width:0.26458332" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ d="m 261.75927,485.20714 h -3.16098 l 1.60729,1.60603 z"
+ id="path2910-1-9-2-7-4-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.06275145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 262.56003,484.69862 h -4.7625"
+ id="path1006-7-2-1-1"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="-487.28015"
+ x="-262.62802"
+ height="5.1630812"
+ width="4.8984981"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-2-3"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.12858535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-487.18121"
+ x="-262.52911"
+ height="4.9652357"
+ width="4.7006521"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-2-4"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.06184778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="238.84995"
+ y="456.69196"
+ id="text4310"><tspan
+ sodipodi:role="line"
+ id="tspan4308"
+ x="238.84995"
+ y="456.69196"
+ style="stroke-width:0.26458332">Preferences etc.</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-8);fill-opacity:1;stroke:#141414;stroke-width:0.13590004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-9"
+ width="9.1245165"
+ height="9.1245165"
+ x="33.65659"
+ y="571.24567" />
+ <rect
+ y="571.44928"
+ x="33.860233"
+ height="8.7172251"
+ width="8.7172251"
+ id="rect3597-5-7-9-4-8-9-8-27-5"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.27860814;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-3-7);fill-opacity:1;stroke:#141414;stroke-width:0.13590004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-79-5"
+ width="9.1245165"
+ height="9.1245165"
+ x="32.975895"
+ y="584.0332" />
+ <rect
+ y="584.2973"
+ x="33.239994"
+ height="8.596302"
+ width="8.596302"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-3"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.39953187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-5);fill-opacity:1;stroke:#141414;stroke-width:0.13590004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-8"
+ width="9.1245165"
+ height="9.1245165"
+ x="-41.778812"
+ y="-607.51984"
+ transform="scale(-1)" />
+ <rect
+ y="-607.35547"
+ x="-41.614445"
+ height="8.7958088"
+ width="8.7958107"
+ id="rect3597-5-7-9-4-8-9-8-3-3-6"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.20002376;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="6.3021884"
+ y="576.20154"
+ id="text4532"><tspan
+ sodipodi:role="line"
+ id="tspan4530"
+ x="6.3021884"
+ y="576.20154"
+ style="stroke-width:0.26458332">tipbutton_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.1680636"
+ y="590.42645"
+ id="text4536"><tspan
+ sodipodi:role="line"
+ id="tspan4534"
+ x="7.1680636"
+ y="590.42645"
+ style="stroke-width:0.26458332">tipbutton_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.4154391"
+ y="604.52765"
+ id="text4540"><tspan
+ sodipodi:role="line"
+ id="tspan4538"
+ x="7.4154391"
+ y="604.52765"
+ style="stroke-width:0.26458332">tipbutton_dn</tspan></text>
+ <rect
+ y="369.56512"
+ x="36.912987"
+ height="3.8405776"
+ width="6.2218275"
+ id="rect3597-5-7-9-4-8-9-4-29-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.12817247;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="382.89935"
+ x="36.904655"
+ height="3.8571973"
+ width="6.2384472"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-3"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.11155266;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-5);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-7-2-1-8"
+ width="6.6268692"
+ height="4.2456188"
+ x="36.710442"
+ y="389.46783" />
+ <rect
+ y="389.7345"
+ x="36.977165"
+ height="3.7122204"
+ width="6.0934706"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-4"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.25652963;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-87-3-9);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-00-5-2"
+ width="6.6268692"
+ height="4.2456188"
+ x="36.311768"
+ y="361.99597" />
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ transform="matrix(0.51426258,0,0,0.42662697,58.451324,360.78413)"
+ id="g4429">
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ id="g2915"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3473"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1655-6"
+ transform="matrix(0.25506382,0,0,0.26478518,37.212794,368.48973)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.20681715px;line-height:14.54722691px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.58188903"
+ x="-108.61136"
+ y="111.42591"
+ id="text4265"><tspan
+ sodipodi:role="line"
+ id="tspan4263"
+ x="-108.61136"
+ y="111.42591"
+ style="stroke-width:0.58188903">green: slightly darker, because of the large and placement</tspan></text>
+ </g>
+ <rect
+ style="fill:url(#linearGradient1811);fill-opacity:1;stroke:#141414;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-19"
+ width="5.0701833"
+ height="4.276433"
+ x="37.541428"
+ y="408.33832" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="16.97364"
+ y="410.87823"
+ id="text5375"><tspan
+ sodipodi:role="line"
+ id="tspan5373"
+ x="16.97364"
+ y="410.87823"
+ style="stroke-width:0.26458332">mutepatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="17.903793"
+ y="419.10309"
+ id="text5379"><tspan
+ sodipodi:role="line"
+ id="tspan5377"
+ x="17.903793"
+ y="419.10309"
+ style="stroke-width:0.26458332">mutepatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="17.001205"
+ y="426.41406"
+ id="text5383"><tspan
+ sodipodi:role="line"
+ id="tspan5381"
+ x="17.001205"
+ y="426.41406"
+ style="stroke-width:0.26458332">mutepatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="9.6906891"
+ y="432.53699"
+ id="text5387"><tspan
+ sodipodi:role="line"
+ id="tspan5385"
+ x="9.6906891"
+ y="432.53699"
+ style="stroke-width:0.26458332">mutepatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="7.389389"
+ y="440.3963"
+ id="text5391"><tspan
+ sodipodi:role="line"
+ id="tspan5389"
+ x="7.389389"
+ y="440.3963"
+ style="stroke-width:0.26458332">mutepatch_checkedhi</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-0-1);fill-opacity:1;stroke:#141414;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-50-11-3-8-7"
+ width="5.0701833"
+ height="4.2764325"
+ x="37.541428"
+ y="423.45337" />
+ <rect
+ style="fill:url(#linearGradient1811-3-1-0-1);fill-opacity:1;stroke:#141414;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-2-1-3-3"
+ width="5.0701833"
+ height="4.2764325"
+ x="37.541428"
+ y="415.86823" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-5-9);fill-opacity:1;stroke:#141414;stroke-width:0.26225799;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-7-2-1-8-9"
+ width="5.0294089"
+ height="4.2356586"
+ x="37.561813"
+ y="435.99384" />
+ <rect
+ y="416.13684"
+ x="37.745461"
+ height="3.7391634"
+ width="4.6620827"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-4-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ style="display:inline;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.27807498;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 38.760344,417.36744 v 1.10766 h 1.37467 l 1.25767,0.97985 V 416.558 l -1.25767,0.80944 z"
+ id="path2928-3-4"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;fill:none;stroke:#ffcc00;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 38.827244,424.98211 v 1.05649 h 1.30479 l 1.19374,0.93459 v -2.76312 l -1.19374,0.77204 z"
+ id="path2928-3-9"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-1-7-3);fill-opacity:1;stroke:#141414;stroke-width:0.26225799;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-7-2-10-2-7"
+ width="5.0294089"
+ height="4.2356586"
+ x="37.561813"
+ y="429.59814" />
+ <rect
+ y="408.53394"
+ x="37.690018"
+ height="3.8851924"
+ width="4.7730036"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-3-2-2"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ style="display:inline;fill:url(#radialGradient5681);fill-opacity:1;stroke:#aa0000;stroke-width:0.29048157;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 38.766544,431.07971 v 1.10292 h 1.36819 l 1.25175,0.97565 v -2.88454 l -1.25175,0.80597 z"
+ id="path2928-3-5-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;fill:#2ca05a;fill-opacity:1;stroke:#100000;stroke-width:0.2780771;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
+ d="m 38.760344,409.83757 v 1.10766 h 1.37467 l 1.25767,0.97984 v -2.89694 l -1.25767,0.80944 z"
+ id="path2928-3-4-6"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;fill:url(#radialGradient5681-21);fill-opacity:1;stroke:#aa0000;stroke-width:0.29048157;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 38.766544,437.47541 v 1.10291 h 1.36819 l 1.25175,0.97566 v -2.88455 l -1.25175,0.80598 z"
+ id="path2928-3-5-7-3"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="436.17743"
+ x="37.696365"
+ height="3.8684521"
+ width="4.7602878"
+ id="rect3597-5-7-9-4-8-9-4-29-9-3"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-419.2532"
+ y="46.931442"
+ id="text6078"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076"
+ x="-419.2532"
+ y="46.931442"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-392.89484"
+ y="49.174805"
+ id="text6078-9"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-1"
+ x="-392.89484"
+ y="49.174805"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.27071831;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-1"
+ cx="-453.68811"
+ cy="177.12042"
+ transform="rotate(-73.43258)"
+ r="2.1135991" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26037875"
+ d="m 39.185003,486.57399 2.43215,-2.43215 -0.0206,2.45276 z"
+ id="path2910-5-2-1"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.6521482"
+ y="486.46451"
+ id="text7164"><tspan
+ sodipodi:role="line"
+ id="tspan7162"
+ x="4.6521482"
+ y="486.46451"
+ style="stroke-width:0.26458332">expandpatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.6521482"
+ y="476.67062"
+ id="text7168"><tspan
+ sodipodi:role="line"
+ id="tspan7166"
+ x="4.6521482"
+ y="476.67062"
+ style="stroke-width:0.26458332">expandpatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.6521482"
+ y="496.25839"
+ id="text7172"><tspan
+ sodipodi:role="line"
+ id="tspan7170"
+ x="4.6521482"
+ y="496.25839"
+ style="stroke-width:0.26458332">expandpatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="4.6521482"
+ y="506.05222"
+ id="text7176"><tspan
+ sodipodi:role="line"
+ id="tspan7174"
+ x="4.6521482"
+ y="506.05222"
+ style="stroke-width:0.26458332">expandpatch_checkedhi</tspan></text>
+ <g
+ id="g7345"
+ transform="matrix(0.26458333,0,0,0.26458333,32.851053,324.35611)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="645.46942"
+ cx="27.847933"
+ id="path950-1-0"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-1-6"
+ d="m 21.347934,645.46942 h 13 l -6.610169,6.5 z"
+ style="fill:#37c871;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g7341"
+ transform="matrix(0.26458333,0,0,0.26458333,33.185363,324.62075)">
+ <g
+ transform="matrix(0.82457511,0,0,0.82457511,16.470378,670.90034)"
+ id="g3832"
+ style="display:inline">
+ <g
+ id="g2832"
+ transform="matrix(0.93460521,-0.3556868,-0.3556868,-0.93460521,5.052979,27.483504)">
+ <circle
+ r="10.416074"
+ cy="14.566575"
+ cx="13.101979"
+ transform="matrix(0.90398745,0,0,0.90398745,0.15597518,-1.1680011)"
+ id="path2890-1"
+ style="opacity:0.5;fill:#333333;fill-opacity:1;stroke:#1a1a1a;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3599-9"
+ d="m 12.032581,3.087581 c -4.9980592,0 -9.0404158,4.0423566 -9.0404158,9.040416 0,0.531888 0.062144,1.055088 0.150173,1.561799 0.00517,0.0063 -0.00519,0.02374 0,0.03003 1.6598639,2.01129 4.1866543,3.303807 6.9980628,3.303807 4.99806,0 9.040416,-4.042357 9.040416,-9.0404157 0,-0.531888 -0.06214,-1.0550883 -0.150173,-1.5617994 C 17.371292,4.3817989 14.866897,3.087581 12.032581,3.087581 Z"
+ style="opacity:0.5;fill:url(#radialGradient2836);fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.33067729;fill:url(#radialGradient2973);fill-opacity:1;stroke:none"
+ d="M 14.976416,3.659368 C 10.262307,1.9987158 5.1064935,4.4683072 3.4458413,9.1824168 3.2691165,9.6840872 3.1538918,10.198211 3.0685602,10.705383 c 0.00278,0.0077 -0.012783,0.02067 -0.00998,0.02832 0.8972937,2.44853 2.8510813,4.507167 5.5027679,5.441284 4.7141109,1.660652 9.8699239,-0.80894 11.5305759,-5.523049 0.176725,-0.50167 0.291953,-1.0157929 0.377281,-1.5229665 C 19.581809,6.6538959 17.649709,4.6010962 14.976416,3.659368 Z"
+ id="path3599-5" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path2910"
+ d="m 19.95477,678.3598 h 12.750001 l -6.483052,6.84322 z"
+ style="display:inline;fill:#b3b3b3;fill-opacity:1;stroke:none" />
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="680.91223"
+ cx="26.785278"
+ id="path950-1-4"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-1-1"
+ d="m 20.285279,680.91224 h 13 l -6.610169,6.5 z"
+ style="fill:#37c871;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g7353"
+ transform="matrix(0.26458333,0,0,0.26458333,32.896533,324.62902)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="574.30249"
+ cx="28.879339"
+ id="path950"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#5f8dd3;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2"
+ d="m 28.859711,580.67748 v -13 l 6.500001,6.61017 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g7250"
+ transform="matrix(0.26458333,0,0,0.26458333,32.592783,323.77514)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="537.17194"
+ cx="30.254545"
+ id="path950-9"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6"
+ d="m 30.234918,543.5469 v -13 l 6.5,6.61017 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="90.843887"
+ y="316.48395"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="90.843887"
+ y="316.48395"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">arrows see: play</tspan></text>
+ <g
+ transform="translate(419.35074,280.77008)"
+ id="g2237">
+ <rect
+ y="290.52045"
+ x="0.13506095"
+ height="6.3444614"
+ width="6.3444614"
+ id="rect3597-9-2-2"
+ style="fill:url(#linearGradient1811-8-5-5);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g2176">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.03577137;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path27"
+ d="m 2.3949937,291.69738 -0.2529036,0.25292 1.5356645,1.53566 -1.5356645,1.53566 0.2529036,0.2529 1.7885681,-1.78856 -0.2529035,-0.2529 z" />
+ <path
+ d="m 2.3960669,295.27452 1.7145213,1.71453 h 2.503995 v -1.07313 l -2.4299483,-2.42996 z"
+ id="path31"
+ style="opacity:0.4;fill:url(#linearGradient3015);fill-opacity:1;fill-rule:evenodd;stroke-width:0.13760279"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-2);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-9"
+ width="6.3444614"
+ height="6.3444614"
+ x="419.48578"
+ y="578.95453" />
+ <rect
+ y="579.21924"
+ x="419.61816"
+ height="5.8150773"
+ width="6.0796599"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-0"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27033988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4-4);fill-opacity:1;stroke:#141414;stroke-width:0.27012187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0-2"
+ width="6.3444614"
+ height="6.3444614"
+ x="-425.83023"
+ y="-592.89789"
+ transform="scale(-1)" />
+ <rect
+ y="-592.69922"
+ x="-425.76389"
+ height="5.947197"
+ width="6.2117801"
+ id="rect3597-5-7-9-4-8-9-8-3-1-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.1382197;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <g
+ transform="translate(419.35074,288.42988)"
+ id="g2176-8">
+ <path
+ d="m 2.3949937,291.69738 -0.2529036,0.25292 1.5356645,1.53566 -1.5356645,1.53566 0.2529036,0.2529 1.7885681,-1.78856 -0.2529035,-0.2529 z"
+ id="path27-1"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.03577137;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.4;fill:url(#linearGradient3017);fill-opacity:1;fill-rule:evenodd;stroke-width:0.13760279"
+ id="path31-7"
+ d="m 2.3960669,295.27452 1.7145213,1.71453 h 2.503995 v -1.07313 l -2.4299483,-2.42996 z" />
+ </g>
+ <g
+ transform="translate(419.35074,296.0394)"
+ id="g2176-2">
+ <path
+ d="m 2.3949937,291.69738 -0.2529036,0.25292 1.5356645,1.53566 -1.5356645,1.53566 0.2529036,0.2529 1.7885681,-1.78856 -0.2529035,-0.2529 z"
+ id="path27-0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.03577137;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.4;fill:url(#linearGradient1521);fill-opacity:1;fill-rule:evenodd;stroke-width:0.13760279"
+ id="path31-2"
+ d="m 2.3960669,295.27452 1.7145213,1.71453 h 2.503995 v -1.07313 l -2.4299483,-2.42996 z" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="404.47864"
+ y="582.38513"
+ id="text2249"><tspan
+ sodipodi:role="line"
+ id="tspan2247"
+ x="404.47864"
+ y="582.38513"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">shbtn_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="404.47864"
+ y="589.64124"
+ id="text2253"><tspan
+ sodipodi:role="line"
+ id="tspan2251"
+ x="404.47864"
+ y="589.64124"
+ style="stroke-width:0.26458332">shbtn_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="404.47864"
+ y="575.0119"
+ id="text2257"><tspan
+ sodipodi:role="line"
+ id="tspan2255"
+ x="404.47864"
+ y="575.0119"
+ style="stroke-width:0.26458332">shbtn_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="65.560257"
+ y="575.92334"
+ id="text1533"><tspan
+ sodipodi:role="line"
+ id="tspan1531"
+ x="65.560257"
+ y="575.92334"
+ style="stroke-width:0.26458332">pan_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="65.239182"
+ y="589.08752"
+ id="text1537"><tspan
+ sodipodi:role="line"
+ id="tspan1535"
+ x="65.239182"
+ y="589.08752"
+ style="stroke-width:0.26458332">pan_hi</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.0819006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-0"
+ width="7.8555994"
+ height="7.8555994"
+ x="79.420639"
+ y="572.23889" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-11);fill-opacity:1;stroke:#141414;stroke-width:0.0819006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-39"
+ width="7.8555994"
+ height="7.8555994"
+ x="79.328079"
+ y="584.87726" />
+ <rect
+ y="585.05731"
+ x="79.462173"
+ height="7.5414162"
+ width="7.5414162"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.13150045;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="164.17328"
+ y="575.86133"
+ id="text1620"><tspan
+ sodipodi:role="line"
+ id="tspan1618"
+ x="164.17328"
+ y="575.86133"
+ style="stroke-width:0.26458332">pane_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="164.17328"
+ y="585.83759"
+ id="text1624"><tspan
+ sodipodi:role="line"
+ id="tspan1622"
+ x="164.17328"
+ y="585.83759"
+ style="stroke-width:0.26458332">pane_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="164.17328"
+ y="594.8988"
+ id="text1628"><tspan
+ sodipodi:role="line"
+ id="tspan1626"
+ x="164.17328"
+ y="594.8988"
+ style="stroke-width:0.26458332">pane_dn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-5-09);fill-opacity:1;stroke:#141414;stroke-width:0.13382064;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-8"
+ width="4.3640957"
+ height="4.3640957"
+ x="179.62018"
+ y="573.22577" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4);fill-opacity:1;stroke:#141414;stroke-width:0.13382064;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5"
+ width="4.3640957"
+ height="4.3640957"
+ x="179.71121"
+ y="582.276" />
+ <rect
+ y="582.5553"
+ x="179.90393"
+ height="3.8055496"
+ width="3.9786999"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-8"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.25463346;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4-9);fill-opacity:1;stroke:#141414;stroke-width:0.13229166;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0-20"
+ width="4.3142338"
+ height="4.3142338"
+ x="-183.97455"
+ y="-596.0733"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04583269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3584"
+ width="0.26458332"
+ height="3.4395833"
+ x="181.68121"
+ y="573.63379" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04583269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3584-3"
+ width="0.26458332"
+ height="3.4395833"
+ x="575.12225"
+ y="-183.52722"
+ transform="rotate(90)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="163.62997"
+ y="568.0799"
+ id="text1542"><tspan
+ sodipodi:role="line"
+ id="tspan1540"
+ x="163.62997"
+ y="568.0799"
+ style="stroke-width:0.26458332">Mainwindow, between scrollbars</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="187.69818"
+ y="575.85248"
+ id="text1546"><tspan
+ sodipodi:role="line"
+ id="tspan1544"
+ x="187.69818"
+ y="575.85248"
+ style="stroke-width:0.26458332">pane</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="428.91544"
+ y="575.7016"
+ id="text2623"><tspan
+ sodipodi:role="line"
+ id="tspan2621"
+ x="428.91544"
+ y="575.7016"
+ style="stroke-width:0.26458332">does nort work</tspan><tspan
+ sodipodi:role="line"
+ x="428.91544"
+ y="582.31616"
+ id="tspan2625"
+ style="stroke-width:0.26458332">see shbtn_up.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="166.45403"
+ y="461"
+ id="text1373"><tspan
+ sodipodi:role="line"
+ id="tspan1371"
+ x="166.45403"
+ y="461"
+ style="stroke-width:0.26458332">checkbox_up</tspan></text>
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-0"
+ cx="205.29013"
+ cy="467.68463"
+ r="1.5875" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="166.45403"
+ y="469.27637"
+ id="text1373-9"><tspan
+ sodipodi:role="line"
+ id="tspan1371-6"
+ x="166.45403"
+ y="469.27637"
+ style="stroke-width:0.26458332">checkbox_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="166.45403"
+ y="477.43555"
+ id="text1373-8"
+ inkscape:transform-center-x="37.835395"><tspan
+ sodipodi:role="line"
+ id="tspan1371-7"
+ x="166.45403"
+ y="477.43555"
+ style="stroke-width:0.26458332">checkbox_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="166.45403"
+ y="485.59479"
+ id="text5431"><tspan
+ sodipodi:role="line"
+ id="tspan5429"
+ x="166.45403"
+ y="485.59479"
+ style="stroke-width:0.26458332">checkbox_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="166.87538"
+ y="493.75397"
+ id="text5435"><tspan
+ sodipodi:role="line"
+ id="tspan5433"
+ x="166.87538"
+ y="493.75397"
+ style="stroke-width:0.26458332">checkbox_checkedhi</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-2-6);fill-opacity:1;stroke:#141414;stroke-width:0.26429746;stroke-opacity:1"
+ id="rect3597-7-9-9"
+ width="5.5565357"
+ height="5.5565357"
+ x="202.51187"
+ y="481.5379" />
+ <rect
+ style="fill:url(#linearGradient1811-8-6);fill-opacity:1;stroke:#141414;stroke-width:0.26336631;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-4"
+ width="5.5574675"
+ height="5.5574675"
+ x="202.49796"
+ y="457.01373" />
+ <rect
+ y="457.21991"
+ x="202.68951"
+ height="5.15974"
+ width="5.15974"
+ id="rect3597-5-7-9-4-8-9-8-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13192689;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-32);fill-opacity:1;stroke:#141414;stroke-width:0.2377072;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-69"
+ width="5.5831261"
+ height="5.5831261"
+ x="-208.0817"
+ y="-479.36725"
+ transform="scale(-1)" />
+ <rect
+ y="-479.1629"
+ x="-207.73038"
+ height="5.15974"
+ width="5.15974"
+ id="rect3597-5-7-9-4-8-9-8-3-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13192689;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4-0);fill-opacity:1;stroke:#141414;stroke-width:0.26429746;stroke-opacity:1"
+ id="rect3597-2-3-0-9"
+ width="5.5565357"
+ height="5.5565357"
+ x="202.51187"
+ y="489.07574" />
+ <circle
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-9"
+ cx="205.29013"
+ cy="476.57568"
+ r="1.5875" />
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-1-3"
+ cx="205.29013"
+ cy="491.854"
+ r="1.5875" />
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4-2-9-4);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 207.86066,490.70353 c 0,0 -0.58369,-0.34938 -0.90465,-0.90879 l -2.07447,2.1825 c 0,0 -0.68842,-0.74044 -1.1928,-1.29067 0,0 -0.32192,0.51351 -0.96918,0.9084 1.13205,0.74562 1.50295,1.1525 2.16198,2.3183 z"
+ id="path2787-7-3-6-8-1"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.25198412"
+ id="rect3685-1-9"
+ width="5.1059942"
+ height="5.1059942"
+ x="194.08588"
+ y="494.32745"
+ ry="0.36616692" />
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4-2);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 207.86066,483.16566 c 0,0 -0.58369,-0.34941 -0.90465,-0.90879 l -2.07447,2.18249 c 0,0 -0.68842,-0.74046 -1.1928,-1.29069 0,0 -0.32192,0.51353 -0.96918,0.90842 1.13205,0.74563 1.50295,1.1525 2.16198,2.31831 z"
+ id="path2787-7-3-6"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <flowRoot
+ transform="matrix(0.26458333,0,0,0.26458333,341.40899,717.06774)"
+ xml:space="preserve"
+ id="flowRoot5751"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion5753"><rect
+ id="rect5755"
+ width="30.178232"
+ height="15.314326"
+ x="253.58723"
+ y="668.7597" /></flowRegion><flowPara
+ id="flowPara5757" /></flowRoot> <g
+ id="g1829"
+ transform="matrix(0.26458333,0,0,0.26458333,199.21133,510.31839)">
+ <g
+ transform="translate(1.000004,-0.435805)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(1.000004,-0.435805)"
+ inkscape:label="Layer 1"
+ id="layer1-7" />
+ <g
+ transform="translate(1.000004,-0.435805)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ style="display:none"
+ inkscape:label="Layer 1"
+ id="layer44">
+ <g
+ transform="translate(1.148518,-0.43290965)"
+ id="g3079">
+ <g
+ id="layer2-9"
+ inkscape:label="Shadow" />
+ <g
+ id="layer1-8"
+ inkscape:label="Layer 1" />
+ <g
+ id="layer3-9"
+ inkscape:label="Error Box" />
+ <g
+ id="layer4"
+ inkscape:label="Glossy Shine">
+ <g
+ id="g4906"
+ transform="matrix(0.986431,0,0,0.986431,0.571463,-2.899481)">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-1"
+ d="M 47.413326,19.106757 38.980533,10.667614 19.643086,30.005066 8.5242589,18.886238 0.0882903,27.322205 19.643086,46.877 Z"
+ style="fill:url(#linearGradient4904);fill-opacity:1;fill-rule:evenodd;stroke:#727e0a;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccszsc"
+ id="path6779-4"
+ d="M 45.242378,18.947394 38.92375,12.88014 19.719855,31.318325 8.510661,20.519364 1.75,27.235328 c 0,0 4.8274712,5.447773 9.639862,7.716281 3.722405,1.7547 5.761893,2.041874 9.562258,1.552521 3.731352,-0.480467 6.448752,-1.974084 8.303663,-2.960828 2.956351,-1.57267 15.986595,-14.595908 15.986595,-14.595908 z"
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2263-9"
+ d="M 45.524529,19.120462 38.948338,12.537922 19.643086,31.843178 8.5242599,20.724349 1.9733297,27.324997 19.647931,44.997063 Z"
+ style="fill:none;stroke:#9db029;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:label="Layer 2"
+ id="layer45">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-7"
+ d="m 48.603408,14.436031 c 0,0 -5.359519,-3.208248 -8.306697,-8.3447583 L 21.24842,26.131463 c 0,0 -6.32129,-6.79898 -10.95257,-11.851285 0,0 -2.9559911,4.715323 -8.8992597,8.3413 C 11.791332,29.467916 15.19705,33.203924 21.24842,43.90873 Z"
+ style="display:inline;fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:1.38266575;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="190.88052"
+ y="520.30023"
+ id="text1833"><tspan
+ sodipodi:role="line"
+ id="tspan1831"
+ x="190.88052"
+ y="520.30023"
+ style="stroke-width:0.26458332">ok</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:6.3499999px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="438.1683"
+ y="912.56683"
+ id="text2942"><tspan
+ sodipodi:role="line"
+ id="tspan2940"
+ x="438.1683"
+ y="917.46167"
+ style="stroke-width:0.26458332" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="411.39355"
+ y="988.12231"
+ id="text2022"><tspan
+ sodipodi:role="line"
+ id="tspan2020"
+ x="411.39355"
+ y="992.15656"
+ style="stroke-width:0.26458332" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="188.65729"
+ y="526.2063"
+ id="text2062"><tspan
+ sodipodi:role="line"
+ id="tspan2060"
+ x="188.65729"
+ y="526.2063"
+ style="stroke-width:0.26458332">check</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="167.45668"
+ y="505.87427"
+ id="text2399"><tspan
+ sodipodi:role="line"
+ id="tspan2397"
+ x="167.45668"
+ y="505.87427"
+ style="stroke-width:0.26458332">s.a: loadmode_all</tspan></text>
+ <flowRoot
+ transform="matrix(0.26458333,0,0,0.26458333,341.40899,717.06774)"
+ xml:space="preserve"
+ id="flowRoot3481"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion3483"><rect
+ id="rect3485"
+ width="303.5643"
+ height="165.3958"
+ x="-666.86615"
+ y="-163.43178" /></flowRegion><flowPara
+ id="flowPara3487" /></flowRoot> <g
+ id="g1655-1"
+ transform="matrix(0.26458333,0,0,0.26458333,37.107874,368.12907)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2-0"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27-7"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.755272"
+ y="466.40793"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="64.755272"
+ y="466.40793"
+ style="stroke-width:0.26458332">mixpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.755272"
+ y="476.32462"
+ id="text1799"><tspan
+ sodipodi:role="line"
+ id="tspan1797"
+ x="64.755272"
+ y="476.32462"
+ style="stroke-width:0.26458332">mixpatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.755272"
+ y="486.24124"
+ id="text1803"><tspan
+ sodipodi:role="line"
+ id="tspan1801"
+ x="64.755272"
+ y="486.24124"
+ style="stroke-width:0.26458332">mixpatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.755272"
+ y="496.15787"
+ id="text1807"><tspan
+ sodipodi:role="line"
+ id="tspan1805"
+ x="64.755272"
+ y="496.15787"
+ style="stroke-width:0.26458332">mixpatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="64.755272"
+ y="506.07455"
+ id="text1811"><tspan
+ sodipodi:role="line"
+ id="tspan1809"
+ x="64.755272"
+ y="506.07455"
+ style="stroke-width:0.26458332">mixpatch_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="82.732605"
+ y="459.77103"
+ id="text1815"><tspan
+ sodipodi:role="line"
+ id="tspan1813"
+ x="82.732605"
+ y="459.77103"
+ style="stroke-width:0.26458332">Mixer</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.24057586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9"
+ cx="95.542351"
+ cy="465.53458"
+ r="2.260962" />
+ <g
+ id="g868"
+ transform="matrix(0.24756336,0,0,0.24756336,96.844573,463.80169)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.24057586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4"
+ cx="95.760696"
+ cy="474.48685"
+ r="2.260962" />
+ <g
+ id="g868-0"
+ transform="matrix(0.24756336,0,0,0.24756336,97.062923,472.75396)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.24057586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-7"
+ cx="-275.45532"
+ cy="410.39249"
+ r="2.260962"
+ transform="rotate(-45)" />
+ <g
+ id="g868-0-4"
+ transform="matrix(0.17505373,-0.17505373,0.17505373,0.17505373,95.110423,482.82143)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-1"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-1"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.24057586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-3"
+ cx="-493.84702"
+ cy="95.251213"
+ r="2.260962"
+ transform="rotate(-90)" />
+ <g
+ id="g868-0-0"
+ transform="matrix(0,-0.24756336,0.24756336,0,93.518293,492.54489)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-3"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-2"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.24057586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-3-1"
+ cx="-504.34592"
+ cy="95.16024"
+ r="2.260962"
+ transform="rotate(-90)" />
+ <g
+ id="g868-0-0-7"
+ transform="matrix(0,-0.24756336,0.24756336,0,93.427313,503.0438)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-3-5"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-2-6"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="171.10814"
+ y="365.96405"
+ id="text1637"><tspan
+ sodipodi:role="line"
+ id="tspan1635"
+ x="171.10814"
+ y="365.96405"
+ style="stroke-width:0.26458332">playpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="170.50273"
+ y="382.47925"
+ id="text1637-0"><tspan
+ sodipodi:role="line"
+ id="tspan1635-7"
+ x="170.50273"
+ y="382.47925"
+ style="stroke-width:0.26458332">playpatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="171.33946"
+ y="374.22168"
+ id="text1637-8"><tspan
+ sodipodi:role="line"
+ x="171.33946"
+ y="374.22168"
+ id="tspan6181"
+ style="stroke-width:0.26458332">playpatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-400.08356"
+ y="212.38803"
+ id="text6078-91"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-6"
+ x="-400.08356"
+ y="212.38803"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-26);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-9-6"
+ width="6.6268692"
+ height="4.2456188"
+ x="201.68709"
+ y="363.85254" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5348478;marker:none"
+ d="m 203.28072,367.49672 v -3.04271 l 3.43959,1.52136 z"
+ id="path3375-6-7-2-1-6-7-9-0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-72);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-7-2-4"
+ width="6.6268692"
+ height="4.2456188"
+ x="201.70699"
+ y="389.70563" />
+ <rect
+ y="389.89984"
+ x="201.9012"
+ height="3.8571973"
+ width="6.2384472"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-37"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.11155266;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5348478;marker:none"
+ d="m 203.30062,393.34985 v -3.04271 l 3.43958,1.52136 z"
+ id="path3375-6-7-2-1-6-7-9-6"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-7-2-1-3"
+ width="6.6268692"
+ height="4.2456188"
+ x="201.62389"
+ y="396.81366" />
+ <rect
+ y="397.08038"
+ x="201.89061"
+ height="3.7122204"
+ width="6.0934706"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-47"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.25652963;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5348478;marker:none"
+ d="m 203.21753,400.45787 v -3.04271 l 3.43958,1.52135 z"
+ id="path3375-6-7-2-1-6-7-9"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-3-1-7);fill-opacity:1;stroke:#141414;stroke-width:0.25229788;stroke-opacity:1"
+ id="rect3597-2-1-6"
+ width="6.6268692"
+ height="4.2456188"
+ x="201.64554"
+ y="372.05255" />
+ <rect
+ y="372.25513"
+ x="201.84807"
+ height="3.8405776"
+ width="6.2218275"
+ id="rect3597-5-7-9-4-8-9-4-29-4"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.12817247;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.5348478;marker:none"
+ d="m 203.23917,375.69679 v -3.04271 l 3.43959,1.52136 z"
+ id="path3375-6-7-2-1-6-7-9-9"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4);fill-opacity:1;stroke:#141414;stroke-width:0.25229785;stroke-opacity:1"
+ id="rect3597-50-11-3-0"
+ width="6.6268692"
+ height="4.2456188"
+ x="201.55727"
+ y="380.04266" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffd42a;fill-opacity:1;fill-rule:evenodd;stroke:#ffd42a;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none"
+ d="m 203.2206,383.62903 v -2.91042 l 3.175,1.45521 z"
+ id="path3375-6-7-2-1-6-7-0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.00464773px;line-height:9.38589287px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.37543571"
+ x="202.82242"
+ y="362.69092"
+ id="text4357-0"><tspan
+ sodipodi:role="line"
+ id="tspan4355-8"
+ x="202.82242"
+ y="362.69092"
+ style="stroke-width:0.37543571">26</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="170.44545"
+ y="399.92529"
+ id="text6514"><tspan
+ sodipodi:role="line"
+ id="tspan6512"
+ x="170.44545"
+ y="399.92529"
+ style="stroke-width:0.26458332">playpatch_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="170.37544"
+ y="391.66772"
+ id="text6518"><tspan
+ sodipodi:role="line"
+ id="tspan6516"
+ x="170.37544"
+ y="391.66772"
+ style="stroke-width:0.26458332">playpatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="182.81813"
+ y="408.23196"
+ id="text4686"><tspan
+ sodipodi:role="line"
+ id="tspan4684"
+ x="182.81813"
+ y="408.23196"
+ style="stroke-width:0.26458332">Too small, seems restless.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="232.34171"
+ y="361.78424"
+ id="text1847"><tspan
+ sodipodi:role="line"
+ id="tspan1845"
+ x="232.34171"
+ y="361.78424"
+ style="stroke-width:0.26458332">proxy_s_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="232.34171"
+ y="372.36224"
+ id="text1851"><tspan
+ sodipodi:role="line"
+ id="tspan1849"
+ x="232.34171"
+ y="372.36224"
+ style="stroke-width:0.26458332">proxy_s_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="232.34171"
+ y="382.55432"
+ id="text1855"><tspan
+ sodipodi:role="line"
+ id="tspan1853"
+ x="232.34171"
+ y="382.55432"
+ style="stroke-width:0.26458332">proxy_s_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="232.34171"
+ y="392.74646"
+ id="text1859"><tspan
+ sodipodi:role="line"
+ id="tspan1857"
+ x="232.34171"
+ y="392.74646"
+ style="stroke-width:0.26458332">proxy_s_chkd</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="232.34171"
+ y="402.9386"
+ id="text1863"><tspan
+ sodipodi:role="line"
+ id="tspan1861"
+ x="232.34171"
+ y="402.9386"
+ style="stroke-width:0.26458332">proxy_s_chkdhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="284.02707"
+ y="361.51587"
+ id="text1847-0"><tspan
+ sodipodi:role="line"
+ id="tspan1845-4"
+ x="284.02707"
+ y="361.51587"
+ style="stroke-width:0.26458332">proxy_p_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="284.02707"
+ y="372.14368"
+ id="text1851-1"><tspan
+ sodipodi:role="line"
+ id="tspan1849-0"
+ x="284.02707"
+ y="372.14368"
+ style="stroke-width:0.26458332">proxy_p_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="284.02707"
+ y="382.38568"
+ id="text1855-4"><tspan
+ sodipodi:role="line"
+ id="tspan1853-8"
+ x="284.02707"
+ y="382.38568"
+ style="stroke-width:0.26458332">proxy_p_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="284.02707"
+ y="392.62762"
+ id="text1859-7"><tspan
+ sodipodi:role="line"
+ id="tspan1857-0"
+ x="284.02707"
+ y="392.62762"
+ style="stroke-width:0.26458332">proxy_p_chkd</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="284.02707"
+ y="402.86963"
+ id="text1863-8"><tspan
+ sodipodi:role="line"
+ id="tspan1861-6"
+ x="284.02707"
+ y="402.86963"
+ style="stroke-width:0.26458332">proxy_p_chkdhi</tspan></text>
+ <image
+ y="358.35693"
+ x="271.86682"
+ id="image2504"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAWCAYAAAChWZ5EAAAAHnRFWHRUaXRsZQAvdG1wL3NhbTEv cHJveHlfc191cC5wbmf8PlKdAAAAHnRFWHREYXRlAE1vbiBKdWwgMzAgMTA6NDU6MDYgMjAxOApq 3C1sAAAAG3RFWHREZXNjcgBDb21wcmVzc2VkIGJ5IFBoeWxsaXO6K+GxAAACqklEQVRIidWWv0vr UBTHv6d5g1Xq0mILVUqGWuMiYgNOyVoEWxwdHfx/nN1cdGsHRVwVRMGS4iKklfprsYYiWNNO8fsG NVit2mB98L5b7r2c7+fccw43sri4iPcSEVdEPqz/RCRBcuT9+p+3H7qu0zAMRKNR/AZAs9nkwcEB Tk5O/OA+QDabZT6fh2VZ2NnZAcmBAogIpqenkc/nQZLlclm6AAzDgGVZKJVKg039jWzbBgAahoFy uQwfQEQYi8Wwt7fXVyARoaZpSCaTUBQFnueh0WigVquh0+l8mYBt29B1HSJCkvIKABGB53nfmi8s LDCbzSIcDn/Y8zwPl5eX3NzcRLvd7gnieZ7vR7K7Cb9ToVDg/Pw8AOD6+hqnp6d4fHzE8PAwVFWF qqpwXfdT814KBDA5OQnguaM3Nja6jI6Pj4OE8hUKcrjVagF4Ltnq6ipM02QsFvvRuAS6gVKphOXl ZcTjcSQSCeRyOeRyObRaLd7e3qJareLw8BAkf6cEjUZD1tbWkMlkqGkaEokEotEoIpEIIpEI0uk0 dF3H+vo6XdftCyIQwKts25aXmQYAqKrKQqGAeDyOsbExmKaJ3d3dvmIF6oHR0dGeNb+4uOgCCqK+ b2B8fJwrKysYGhrCzc0Na7Ua7u7uoCgKJiYmMDc3BwBot9s4OjoaPECn08H5+TnS6TRSqRRSqVTX PklcXV1he3sb9/f3wZrw5amEoiifHmw2m7K1tQURoaqqSCaTCIfDIImHhwdUq9W+jBVF8f3eAojj OJyamsLZ2dmXAUhKvV5HvV7vN8kuaZoGx3H8UfVLsL+/j6WlJYRCIdq2/SvPcSaTwczMDIrFor/u A1iWJSRpmiZmZ2cRCgUakG/19PQEx3FQLBZRqVT8UkmvX7J/qcGm+T8C/AXHHDGeyhnarAAAAABJ RU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.1740742"
+ width="7.5259261" />
+ <g
+ id="g1933"
+ transform="matrix(0.26458333,0,0,0.26458333,165.09743,166.75982)">
+ <rect
+ y="723.24524"
+ x="348.14819"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5"
+ style="fill:url(#linearGradient1811-87-3);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7"
+ width="22.758106"
+ height="19.559982"
+ x="348.73691"
+ y="723.93311" />
+ <text
+ id="text2605"
+ y="742.24121"
+ x="351.18817"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="742.24121"
+ x="351.18817"
+ id="tspan2603"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3"
+ y="742.17987"
+ x="364.33551"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="742.17987"
+ x="364.33551"
+ id="tspan2603-1-0"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <g
+ id="g1917"
+ transform="matrix(0.26458333,0,0,0.26458333,166.17429,165.55382)">
+ <rect
+ y="803.99695"
+ x="344.0784"
+ height="20.935253"
+ width="23.935251"
+ id="rect3597-50-11-3"
+ style="fill:url(#linearGradient3418);fill-opacity:1;stroke:#141414;stroke-width:1.06474829;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3"
+ width="21.902523"
+ height="18.902525"
+ x="345.09476"
+ y="805.01331" />
+ </g>
+ <g
+ id="g1925"
+ transform="matrix(0.26458333,0,0,0.26458333,165.24526,166.86002)">
+ <rect
+ y="760.96326"
+ x="347.5896"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-5"
+ style="fill:url(#linearGradient1811-87-3-3);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-40"
+ y="779.95923"
+ x="350.62958"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="779.95923"
+ x="350.62958"
+ id="tspan2603-0"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-4"
+ y="779.89789"
+ x="363.77692"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="779.89789"
+ x="363.77692"
+ id="tspan2603-1-0-6"
+ sodipodi:role="line">S</tspan></text>
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-6"
+ width="21.902523"
+ height="18.902525"
+ x="348.60611"
+ y="761.9798" />
+ </g>
+ <g
+ id="g1905"
+ transform="matrix(0.26458333,0,0,0.26458333,167.39862,165.17822)">
+ <rect
+ y="843.51318"
+ x="339.45087"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-8"
+ style="fill:url(#linearGradient1811-87-3-98);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-9"
+ y="862.50916"
+ x="342.49084"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="862.50916"
+ x="342.49084"
+ id="tspan2603-96"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-0"
+ y="862.44781"
+ x="355.63818"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="862.44781"
+ x="355.63818"
+ id="tspan2603-1-0-27"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <g
+ id="g1913"
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,166.75982)">
+ <rect
+ y="875.63208"
+ x="339.88687"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-1"
+ style="fill:url(#linearGradient1811-87-3-61);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-02"
+ width="22.758106"
+ height="19.559982"
+ x="340.47562"
+ y="876.31989" />
+ <text
+ id="text2605-91"
+ y="894.62805"
+ x="342.92685"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="894.62805"
+ x="342.92685"
+ id="tspan2603-4"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-9"
+ y="894.56671"
+ x="356.07419"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="894.56671"
+ x="356.07419"
+ id="tspan2603-1-0-1"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="242.65128"
+ y="353.77081"
+ id="text2018"><tspan
+ sodipodi:role="line"
+ id="tspan2016"
+ x="242.65128"
+ y="353.77081"
+ style="stroke-width:0.26458332">Proxy Scaler - main right</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-369.37683"
+ y="254.36331"
+ id="text6078-91-5"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-6-8"
+ x="-369.37683"
+ y="254.36331"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="304.71368"
+ y="354.08795"
+ id="text2018-7"><tspan
+ sodipodi:role="line"
+ id="tspan2016-0"
+ x="304.71368"
+ y="354.08795"
+ style="stroke-width:0.26458332">Proxy P </tspan></text>
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,161.46815)"
+ id="g2282">
+ <rect
+ y="743.04889"
+ x="555.41779"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-9"
+ style="fill:url(#linearGradient2215);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6"
+ width="22.758106"
+ height="19.559982"
+ x="556.00653"
+ y="743.73676" />
+ <text
+ id="text2605-1"
+ y="762.04486"
+ x="558.45776"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="762.04486"
+ x="558.45776"
+ id="tspan2603-04"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-2"
+ y="761.98352"
+ x="571.6051"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="761.98352"
+ x="571.6051"
+ id="tspan2603-1-0-2"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,161.46815)"
+ id="g2266">
+ <g
+ transform="translate(211.33957,15.245503)"
+ id="g1917-2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1);fill-opacity:1;stroke:#141414;stroke-width:1.06474829;stroke-opacity:1"
+ id="rect3597-50-11-3-05"
+ width="23.935251"
+ height="20.935253"
+ x="344.0784"
+ y="803.99695" />
+ <rect
+ y="805.01331"
+ x="345.09476"
+ height="18.902525"
+ width="21.902523"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,161.46815)"
+ id="g2274">
+ <rect
+ y="781.14557"
+ x="555.41785"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-5-9"
+ style="fill:url(#linearGradient2219);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-40-0"
+ y="800.14154"
+ x="558.45782"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="800.14154"
+ x="558.45782"
+ id="tspan2603-0-2"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-4-8"
+ y="800.0802"
+ x="571.60516"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="800.0802"
+ x="571.60516"
+ id="tspan2603-1-0-6-3"
+ sodipodi:role="line">S</tspan></text>
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-6-8"
+ width="21.902523"
+ height="18.902525"
+ x="556.43433"
+ y="782.16211" />
+ </g>
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,161.46815)"
+ id="g2261">
+ <rect
+ y="857.33905"
+ x="555.41785"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-8-4"
+ style="fill:url(#linearGradient2221);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-9-0"
+ y="876.33502"
+ x="558.45782"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="876.33502"
+ x="558.45782"
+ id="tspan2603-96-9"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-0-1"
+ y="876.27368"
+ x="571.60516"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="876.27368"
+ x="571.60516"
+ id="tspan2603-1-0-27-9"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,167.28326,161.46815)"
+ id="g2254">
+ <rect
+ y="895.43573"
+ x="555.41779"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-1-2"
+ style="fill:url(#linearGradient2223);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-02-5"
+ width="22.758106"
+ height="19.559982"
+ x="556.00653"
+ y="896.12354" />
+ <text
+ id="text2605-91-4"
+ y="914.4317"
+ x="558.45776"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="914.4317"
+ x="558.45776"
+ id="tspan2603-4-4"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-9-9"
+ y="914.37036"
+ x="571.6051"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="914.37036"
+ x="571.6051"
+ id="tspan2603-1-0-1-9"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.15456653px;line-height:5.04976559px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.20199062"
+ x="232.31493"
+ y="408.77927"
+ id="text4290"><tspan
+ sodipodi:role="line"
+ id="tspan4288"
+ x="232.31493"
+ y="408.77927"
+ style="stroke-width:0.20199062">the white s separates from the following C-switch.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="354.35529"
+ y="365.67282"
+ id="text1459"><tspan
+ sodipodi:role="line"
+ id="tspan1457"
+ x="354.35529"
+ y="365.67282"
+ style="stroke-width:0.26458332">plugin_on</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="354.48105"
+ y="373.47031"
+ id="text1463"><tspan
+ sodipodi:role="line"
+ id="tspan1461"
+ x="354.48105"
+ y="373.47031"
+ style="stroke-width:0.26458332">plugin_onhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="354.54395"
+ y="381.14206"
+ id="text1467"><tspan
+ sodipodi:role="line"
+ id="tspan1465"
+ x="354.54395"
+ y="381.14206"
+ style="stroke-width:0.26458332">plugin_ondn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="353.9151"
+ y="388.93954"
+ id="text1471"><tspan
+ sodipodi:role="line"
+ id="tspan1469"
+ x="353.9151"
+ y="388.93954"
+ style="stroke-width:0.26458332">plugin_onselect</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="353.78934"
+ y="396.04526"
+ id="text1475"><tspan
+ sodipodi:role="line"
+ id="tspan1473"
+ x="353.78934"
+ y="396.04526"
+ style="stroke-width:0.26458332">plugin_onselecthi</tspan></text>
+ <g
+ id="g3789"
+ style="stroke:#000000"
+ transform="matrix(0.26458333,0,0,0.26458333,384.32081,362.46191)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 386.98289,364.49745 -5e-5,-0.99712"
+ id="path10581"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:0.52775508;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:0.45378166;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783"
+ d="m 386.28054,363.76264 c -1.17706,0.62654 -0.64479,2.42193 0.70087,2.42193 1.33165,0 1.92848,-1.70211 0.70087,-2.42193" />
+ <g
+ id="g3789-5"
+ style="stroke:#000000"
+ transform="matrix(0.26458333,0,0,0.26458333,384.54108,370.31763)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.20314,372.35316 -5e-5,-0.99711"
+ id="path10581-0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:0.52775508;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:0.45378166;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8"
+ d="m 386.5008,371.61836 c -1.17707,0.62654 -0.6448,2.42192 0.70087,2.42192 1.33165,0 1.92847,-1.70211 0.70087,-2.42192" />
+ <g
+ id="g3789-5-9-5"
+ style="stroke:#000000"
+ transform="matrix(0.26458333,0,0,0.26458333,384.90541,385.90868)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-6-5"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-1-2"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.56749,387.94423 -5e-5,-0.99711"
+ id="path10581-0-0-9"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:0.52775508;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:0.45378166;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-4-0"
+ d="m 386.86515,387.20943 c -1.17707,0.62654 -0.6448,2.42192 0.70087,2.42192 1.33165,0 1.92847,-1.70211 0.70088,-2.42192" />
+ <g
+ id="g3789-5-2"
+ style="stroke:#000000"
+ transform="matrix(0.26458333,0,0,0.26458333,384.43903,379.24628)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-5"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-4"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.1011,381.28183 -6e-5,-0.9971"
+ id="path10581-0-4"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#e6e4dd;stroke-width:0.52775508;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#e6e4dd;stroke-width:0.45378166;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-9"
+ d="m 386.39875,380.54704 c -1.17706,0.62653 -0.6448,2.42192 0.70087,2.42192 1.33165,0 1.92848,-1.70211 0.70087,-2.42192" />
+ <g
+ id="g3789-5-9-5-5"
+ style="stroke:#ffcc00"
+ transform="matrix(0.26458333,0,0,0.26458333,384.85564,393.60834)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-6-5-0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffcc00;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffcc00;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-1-2-2"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.51772,395.64388 -5e-5,-0.99711"
+ id="path10581-0-0-9-9"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:0.52775508;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:0.45378166;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-4-0-4"
+ d="m 386.81538,394.90908 c -1.17707,0.62653 -0.6448,2.42194 0.70086,2.42194 1.33166,0 1.92848,-1.70211 0.70088,-2.42194" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-396.19955"
+ y="380.90259"
+ id="text6078-91-1"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-6-7"
+ x="-396.19955"
+ y="380.90259"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 436.36209,363.40913 c -0.61778,0 -1.11936,0.48583 -1.11936,1.08424 0,0.59839 0.50158,1.08423 1.11936,1.08423 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47992,1.44567 0.20989,-0.27671 -1.49608,-1.33837 c 0.18635,-0.19368 0.30137,-0.44876 0.30137,-0.73411 0,-0.59841 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43575 1.00097,0.97129 0,0.53556 -0.44805,0.97131 -1.00097,0.97131 -0.55292,0 -1.00097,-0.43575 -1.00097,-0.97131 0,-0.53554 0.44805,-0.97129 1.00097,-0.97129 z"
+ id="path15529" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1"
+ d="m 436.36209,363.14444 c -0.61778,0 -1.11936,0.48586 -1.11936,1.08424 0,0.5984 0.50158,1.08423 1.11936,1.08423 0.22909,0 0.44678,-0.0661 0.62426,-0.1807 l 1.47992,1.44566 0.20989,-0.27671 -1.49608,-1.33834 c 0.18635,-0.19371 0.30137,-0.44875 0.30137,-0.73414 0,-0.59838 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43574 1.00097,0.97131 0,0.53555 -0.44805,0.97129 -1.00097,0.97129 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97129 0,-0.53557 0.44805,-0.97131 1.00097,-0.97131 z"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="402.33191"
+ y="364.99344"
+ id="text2196"><tspan
+ sodipodi:role="line"
+ id="tspan2194"
+ x="402.33191"
+ y="364.99344"
+ style="stroke-width:0.26458332">plugin_show</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="402.14572"
+ y="375.70724"
+ id="text2200"><tspan
+ sodipodi:role="line"
+ id="tspan2198"
+ x="402.14572"
+ y="375.70724"
+ style="stroke-width:0.26458332">plugin_showhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="402.8905"
+ y="385.82504"
+ id="text2204"><tspan
+ sodipodi:role="line"
+ id="tspan2202"
+ x="402.8905"
+ y="385.82504"
+ style="stroke-width:0.26458332">plugin_showdn</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 436.54829,383.03087 c -0.61778,0 -1.11936,0.48585 -1.11936,1.08426 0,0.59838 0.50158,1.08424 1.11936,1.08424 0.2291,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44565 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.1937 0.30136,-0.44876 0.30136,-0.73411 0,-0.59841 -0.50158,-1.08426 -1.11936,-1.08426 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43572 1.00097,0.97129 0,0.53557 -0.44805,0.97131 -1.00097,0.97131 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97131 0,-0.53557 0.44805,-0.97129 1.00097,-0.97129 z"
+ id="path15529-6" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-1"
+ d="m 436.54829,382.76621 c -0.61778,0 -1.11936,0.48585 -1.11936,1.08423 0,0.59838 0.50158,1.08424 1.11936,1.08424 0.2291,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44565 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.19367 0.30136,-0.44876 0.30136,-0.73411 0,-0.59838 -0.50158,-1.08423 -1.11936,-1.08423 z m 0.0161,0.0677 c 0.55292,0 1.00097,0.43575 1.00097,0.97132 0,0.53554 -0.44805,0.97128 -1.00097,0.97128 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97128 0,-0.53557 0.44805,-0.97132 1.00097,-0.97132 z"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 436.36209,373.81056 c -0.61778,0 -1.11936,0.48583 -1.11936,1.08424 0,0.59838 0.50158,1.08423 1.11936,1.08423 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.1937 0.30136,-0.44876 0.30136,-0.73411 0,-0.59841 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43572 1.00097,0.97129 0,0.53557 -0.44805,0.97131 -1.00097,0.97131 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97131 0,-0.53557 0.44805,-0.97129 1.00097,-0.97129 z"
+ id="path15529-6-4" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-1-3"
+ d="m 436.36209,373.54587 c -0.61778,0 -1.11936,0.48586 -1.11936,1.08424 0,0.59838 0.50158,1.08423 1.11936,1.08423 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.19367 0.30136,-0.44876 0.30136,-0.73411 0,-0.59838 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43574 1.00097,0.97131 0,0.53555 -0.44805,0.97129 -1.00097,0.97129 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97129 0,-0.53557 0.44805,-0.97131 1.00097,-0.97131 z"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="402.33191"
+ y="394.48288"
+ id="text2232"><tspan
+ sodipodi:role="line"
+ id="tspan2230"
+ x="402.33191"
+ y="394.48288"
+ style="stroke-width:0.26458332">plugin_showselect</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="402.14572"
+ y="404.72073"
+ id="text2236"><tspan
+ sodipodi:role="line"
+ id="tspan2234"
+ x="402.14572"
+ y="404.72073"
+ style="stroke-width:0.26458332">plugin_showselecthi</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 436.36209,392.77013 c -0.61778,0 -1.11936,0.48583 -1.11936,1.08423 0,0.59839 0.50158,1.08424 1.11936,1.08424 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.27671 -1.49607,-1.33836 c 0.18634,-0.19368 0.30136,-0.44876 0.30136,-0.73412 0,-0.5984 -0.50158,-1.08423 -1.11936,-1.08423 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43571 1.00097,0.97128 0,0.53557 -0.44805,0.97131 -1.00097,0.97131 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97131 0,-0.53557 0.44805,-0.97128 1.00097,-0.97128 z"
+ id="path15529-1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-4"
+ d="m 436.36209,392.50544 c -0.61778,0 -1.11936,0.48585 -1.11936,1.08423 0,0.59839 0.50158,1.08424 1.11936,1.08424 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.19368 0.30136,-0.44876 0.30136,-0.73412 0,-0.59838 -0.50158,-1.08423 -1.11936,-1.08423 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43574 1.00097,0.97131 0,0.53554 -0.44805,0.97129 -1.00097,0.97129 -0.55292,0 -1.00097,-0.43575 -1.00097,-0.97129 0,-0.53557 0.44805,-0.97131 1.00097,-0.97131 z"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#fff6d5;fill-opacity:1;fill-rule:evenodd;stroke:#ffeeaa;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 436.36209,401.59157 c -0.61778,0 -1.11936,0.48586 -1.11936,1.08424 0,0.59841 0.50158,1.08426 1.11936,1.08426 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.27673 -1.49607,-1.33834 c 0.18634,-0.1937 0.30136,-0.44876 0.30136,-0.73414 0,-0.59838 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43575 1.00097,0.97132 0,0.53557 -0.44805,0.97128 -1.00097,0.97128 -0.55292,0 -1.00097,-0.43571 -1.00097,-0.97128 0,-0.53557 0.44805,-0.97132 1.00097,-0.97132 z"
+ id="path15529-69" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-42"
+ d="m 436.36209,401.32691 c -0.61778,0 -1.11936,0.48583 -1.11936,1.08424 0,0.59838 0.50158,1.08423 1.11936,1.08423 0.22909,0 0.44678,-0.0661 0.62426,-0.18071 l 1.47993,1.44566 0.20988,-0.2767 -1.49607,-1.33837 c 0.18634,-0.19367 0.30136,-0.44876 0.30136,-0.73411 0,-0.59841 -0.50158,-1.08424 -1.11936,-1.08424 z m 0.0161,0.0678 c 0.55292,0 1.00097,0.43574 1.00097,0.97129 0,0.53557 -0.44805,0.97131 -1.00097,0.97131 -0.55292,0 -1.00097,-0.43574 -1.00097,-0.97131 0,-0.53555 0.44805,-0.97129 1.00097,-0.97129 z"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.27073768;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="414.51346"
+ y="359.70718"
+ id="text4658"><tspan
+ sodipodi:role="line"
+ id="tspan4656"
+ x="414.51346"
+ y="359.70718"
+ style="stroke-width:0.26458332">Without background.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="363.73505"
+ y="358.56812"
+ id="text4658-7"><tspan
+ sodipodi:role="line"
+ id="tspan4656-0"
+ x="363.73505"
+ y="358.56812"
+ style="stroke-width:0.26458332">Without background.</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9"
+ width="6.0906835"
+ height="6.0906835"
+ x="93.865128"
+ y="417.01492" />
+ <rect
+ y="417.21603"
+ x="93.933945"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-27"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="66.059868"
+ y="421.0015"
+ id="text2896"><tspan
+ sodipodi:role="line"
+ id="tspan2894"
+ x="66.059868"
+ y="421.0015"
+ style="stroke-width:0.26458332">transportup</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="66.059868"
+ y="429.15048"
+ id="text2900"><tspan
+ sodipodi:role="line"
+ id="tspan2898"
+ x="66.059868"
+ y="429.15048"
+ style="stroke-width:0.26458332">transporthi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="66.059868"
+ y="437.10654"
+ id="text2904"><tspan
+ sodipodi:role="line"
+ id="tspan2902"
+ x="66.059868"
+ y="437.10654"
+ style="stroke-width:0.26458332">transportdn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-3);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-79"
+ width="6.0906835"
+ height="6.0906835"
+ x="93.760544"
+ y="424.54459" />
+ <rect
+ y="424.80893"
+ x="93.892593"
+ height="5.5620031"
+ width="5.8265862"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.25883049;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2);fill-opacity:1;stroke:#141414;stroke-width:0.25931701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6"
+ width="6.0906835"
+ height="6.0906835"
+ x="-99.851242"
+ y="-439.629"
+ transform="scale(-1)" />
+ <rect
+ y="-439.42789"
+ x="-99.782455"
+ height="5.6884985"
+ width="5.9530816"
+ id="rect3597-5-7-9-4-8-9-8-3-3"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13233523;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="107.10515"
+ y="420.70798"
+ id="text2120"><tspan
+ sodipodi:role="line"
+ id="tspan2118"
+ x="107.10515"
+ y="420.70798"
+ style="stroke-width:0.26458332">file_size_capb_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="107.56038"
+ y="428.85696"
+ id="text2124"><tspan
+ sodipodi:role="line"
+ id="tspan2122"
+ x="107.56038"
+ y="428.85696"
+ style="stroke-width:0.26458332">file_size_capb_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="107.20323"
+ y="437.65494"
+ id="text2128"><tspan
+ sodipodi:role="line"
+ id="tspan2126"
+ x="107.20323"
+ y="437.65494"
+ style="stroke-width:0.26458332">file_size_capb_dn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9);fill-opacity:1;stroke:#141414;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2"
+ width="5.8369045"
+ height="5.8369045"
+ x="136.6804"
+ y="417.06174" />
+ <rect
+ y="417.26956"
+ x="136.88823"
+ height="5.4212689"
+ width="5.4212689"
+ id="rect3597-5-7-9-4-8-9-8-27-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13498089;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-3-1);fill-opacity:1;stroke:#141414;stroke-width:0.24844375;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-79-51"
+ width="5.8369045"
+ height="5.8369045"
+ x="136.50703"
+ y="424.79251" />
+ <rect
+ y="425.05618"
+ x="136.77074"
+ height="5.3094797"
+ width="5.3094797"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.24676968;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3);fill-opacity:1;stroke:#141414;stroke-width:0.24851212;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0"
+ width="5.8369045"
+ height="5.8369045"
+ x="-142.26717"
+ y="-439.53787"
+ transform="scale(-1)" />
+ <rect
+ y="433.90878"
+ x="136.63805"
+ height="5.4212689"
+ width="5.4212689"
+ id="rect3597-5-7-9-4-8-9-8-27-4-9"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.13498089;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="112.77489"
+ y="412.80753"
+ id="text2120-9"><tspan
+ sodipodi:role="line"
+ id="tspan2118-0"
+ x="112.77489"
+ y="412.80753"
+ style="stroke-width:0.26458332">see: file_size_capb_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-369.35025"
+ y="310.25998"
+ id="text6078-91-0"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-6-86"
+ x="-369.35025"
+ y="310.25998"
+ style="stroke-width:0.26458332">default</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="240.72858"
+ y="498.33197"
+ id="text3869"><tspan
+ sodipodi:role="line"
+ id="tspan3867"
+ x="240.72858"
+ y="498.33197"
+ style="stroke-width:0.26458332">main window</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="417.50162"
+ y="567.91559"
+ id="text3873"><tspan
+ sodipodi:role="line"
+ id="tspan3871"
+ x="417.50162"
+ y="567.91559"
+ style="stroke-width:0.26458332">draft</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-379.55353"
+ y="276.34644"
+ id="text3877"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan3875"
+ x="-379.55353"
+ y="276.34644"
+ style="stroke-width:0.26458332">max. 32x22</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="320"
+ height="400"
+ viewBox="0 0 84.666669 105.83333"
+ version="1.1"
+ id="svg963"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="about.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/about_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1881">Neophyte theme – about_bg</title>
+ <defs
+ id="defs957" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#262626"
+ bordercolor="#ac00ac"
+ borderopacity="1"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8645387"
+ inkscape:cx="129.22205"
+ inkscape:cy="187.86755"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer7"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ units="px"
+ borderlayer="true"
+ guidecolor="#00ffff"
+ guideopacity="0.49803922"
+ inkscape:measure-start="298.104,235"
+ inkscape:measure-end="298.104,255">
+ <sodipodi:guide
+ position="78.566711,97.916306"
+ orientation="1,0"
+ id="guide2533"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="34.703174,99.482433"
+ orientation="0,1"
+ id="guide2535"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="8.0269307,100.24938"
+ orientation="1,0"
+ id="guide2537"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="77.51918,101.30242"
+ orientation="1,0"
+ id="guide2541"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="34.703174,91.801464"
+ orientation="1,0"
+ id="guide2543"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="29.304903,94.238398"
+ orientation="1,0"
+ id="guide2545"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64.785896,62.151929"
+ orientation="0,1"
+ id="guide2674"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2678" />
+ <sodipodi:guide
+ position="78.873321,67.468748"
+ orientation="0,1"
+ id="guide2680"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="81.227086,94.191664"
+ orientation="1,0"
+ id="guide2682"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="78.566714,97.916303"
+ orientation="0,1"
+ id="guide2700"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="73.23411,66.629323"
+ orientation="0,1"
+ id="guide2758"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="66.370368,97.916298"
+ orientation="1,0"
+ id="guide2760"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="69.4504,87.42374"
+ orientation="1,0"
+ id="guide2916"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="61.510719,79.309561"
+ orientation="0,1"
+ id="guide2918"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="70.257456,75.492406"
+ orientation="1,0"
+ id="guide2920"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata960">
+ <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>Neophyte theme – about_bg</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>Neu angelegt.
+Logo vectorised.
+Frames now in 16:9.
+The slight inclination of the film strip creates an optical illusion.</dc:description>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>cinelerra</rdf:li>
+ <rdf:li>theme</rdf:li>
+ <rdf:li>neophyte</rdf:li>
+ <rdf:li>about</rdf:li>
+ <rdf:li>logo</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="pixmap"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <image
+ transform="translate(0,-191.16668)"
+ y="194.57686"
+ x="-1.0583332"
+ id="image2522"
+ xlink:href="data:image/png;base64,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 ZAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="99.012962"
+ width="86.783333" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="film backup"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.18919778;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555"
+ width="73.015152"
+ height="0.79374999"
+ x="8.2119322"
+ y="6.3500004" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.08967816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-3"
+ width="16.404175"
+ height="0.79374999"
+ x="64.822914"
+ y="42.862499" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.17446826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5"
+ width="46.566666"
+ height="1.0583334"
+ x="34.703175"
+ y="11.594935" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13109586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0"
+ width="26.291784"
+ height="1.0583335"
+ x="54.935303"
+ y="37.306248" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13085122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8"
+ width="26.19375"
+ height="1.0583336"
+ x="12.170833"
+ y="-81.227081"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75273961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="use2632"
+ width="5.3326058"
+ height="2.6867726"
+ x="61.037766"
+ y="39.20401"
+ inkscape:tile-x0="78.190344"
+ inkscape:tile-y0="7.5406574"
+ inkscape:tile-cx="81.233017"
+ inkscape:tile-cy="9.2604136"
+ inkscape:tile-w="6.0853456"
+ inkscape:tile-h="3.4395123" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10800269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-7"
+ width="17.844782"
+ height="1.0583336"
+ x="11.594935"
+ y="-35.761509"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.06922579;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-6"
+ width="7.3312483"
+ height="1.0583336"
+ x="11.594935"
+ y="-29.304903"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11793537;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-6-3"
+ width="21.277973"
+ height="1.0583336"
+ x="8.0269308"
+ y="11.594935" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ id="use2730"
+ transform="translate(12.196347,-31.286981)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(12.196345,-1.6192868e-6)"
+ id="use2732"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(-1.9213867e-6,-31.286978)"
+ id="use2734"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(-12.196347,-31.286978)"
+ id="use2736"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(-24.392704,-31.286978)"
+ id="use2738"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(-36.589053,-31.286978)"
+ id="use2740"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632"
+ xlink:href="#use2632"
+ transform="translate(-48.785404,-31.286978)"
+ id="use2742"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="hg"
+ style="display:none">
+ <path
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 35.82619,29.566982 35.182085,12.47287 79.98065,11.661652 l 0.874179,25.47066 -25.075231,0.799595 -7.068402,-3.262339 -7.0684,-3.486224 z"
+ id="path989"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccc" />
+ <path
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 7.8532187,13.180874 20.5125693,-0.793672 0.170677,5.501756 -3.839901,-3.423867 -12.031659,3.166226 -2.138382,7.610171 3.947654,6.140296 -7.0561613,0.271391 -0.2713908,-11.127023 0.7065938,-7.345278"
+ id="path991"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="film copie"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.18919778;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-50"
+ width="73.015152"
+ height="0.79374999"
+ x="7.8479719"
+ y="6.9891124"
+ transform="rotate(-0.82349436)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.08967817;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-3-8"
+ width="16.404175"
+ height="0.79374999"
+ x="64.458954"
+ y="43.501614"
+ transform="rotate(-0.82349436)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75273961;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="use2632-3"
+ width="5.3326063"
+ height="2.6867726"
+ x="60.673805"
+ y="39.843124"
+ inkscape:tile-x0="78.190344"
+ inkscape:tile-y0="7.5406574"
+ inkscape:tile-cx="81.233017"
+ inkscape:tile-cy="9.2604136"
+ inkscape:tile-w="6.0853456"
+ inkscape:tile-h="3.4395123"
+ transform="rotate(-0.82349436)" />
+ <g
+ id="g2896"
+ transform="rotate(-0.82349436,44.648386,25.003124)">
+ <rect
+ y="11.594935"
+ x="34.703175"
+ height="1.0583335"
+ width="46.566666"
+ id="rect2555-5-04"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.17446826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="37.306248"
+ x="54.935307"
+ height="1.0583336"
+ width="26.291784"
+ id="rect2555-5-0-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13109586;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-81.227081"
+ x="12.170832"
+ height="1.0583336"
+ width="26.19375"
+ id="rect2555-5-0-8-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13085122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-35.761509"
+ x="11.594935"
+ height="1.0583336"
+ width="17.844782"
+ id="rect2555-5-0-8-7-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10800269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.06922579;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-6-9"
+ width="7.3312483"
+ height="1.0583336"
+ x="12.234048"
+ y="-28.940941"
+ transform="rotate(89.176506)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11793537;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2555-5-0-8-6-3-3"
+ width="21.277973"
+ height="1.0583336"
+ x="7.6629696"
+ y="12.234048"
+ transform="rotate(-0.82349436)" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ id="use2730-4"
+ transform="translate(11.745425,-31.459039)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(12.195085,-0.17528973)"
+ id="use2732-1"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(-0.44966383,-31.283747)"
+ id="use2734-5"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(-12.64475,-31.10846)"
+ id="use2736-0"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(-24.839847,-30.933171)"
+ id="use2738-8"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(-37.034935,-30.757883)"
+ id="use2740-3"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use2632-3"
+ xlink:href="#use2632-3"
+ transform="translate(-49.230028,-30.582594)"
+ id="use2742-5"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="version"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36.64895248px;line-height:49.08342361px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.96333671"
+ x="34.993858"
+ y="43.718803"
+ id="text1706-5"
+ transform="scale(1.2482481,0.8011228)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-4"
+ x="34.993858"
+ y="43.718803"
+ style="fill:#2ca089;fill-opacity:1;stroke-width:1.96333671">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.75223351px;line-height:5.27421904px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.21096875"
+ x="53.903088"
+ y="30.07745"
+ id="text2852"><tspan
+ sodipodi:role="line"
+ id="tspan2850"
+ x="53.903088"
+ y="30.07745"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.75223351px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke-width:0.21096875">5</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.98470783px;line-height:3.00829196px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.12033166"
+ x="62.886402"
+ y="26.923384"
+ id="text2852-7"><tspan
+ sodipodi:role="line"
+ id="tspan2850-0"
+ x="62.886402"
+ y="26.923384"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.98470783px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke-width:0.12033166">.1</tspan></text>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="logo"
+ style="display:inline">
+ <g
+ style="display:inline"
+ transform="translate(-99.542173,-238.74005)"
+ id="g874">
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-8-1"
+ y="339.07217"
+ x="110.50091"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;stroke-width:1.54880381"
+ y="339.07217"
+ x="110.50091"
+ id="tspan1704-0-5"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text838-9"
+ y="266.03046"
+ x="148.92941"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975"
+ y="266.03046"
+ x="148.92941"
+ id="tspan836-9"
+ sodipodi:role="line">inelerra</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#dee3db;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-41.335335"
+ y="104.96961"
+ id="text3890"><tspan
+ sodipodi:role="line"
+ id="tspan3888"
+ x="-41.335335"
+ y="104.96961"
+ style="fill:#dee3db;stroke-width:0.26458332">s.a.: 0.Neophyte-Logos</tspan></text>
+ </g>
+ <g
+ inkscape:label="girl"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-191.16668)"
+ style="display:inline">
+ <path
+ style="fill:#051210;fill-opacity:1;stroke-width:0.23518519"
+ d="m 22.496586,204.7376 c 0,0 5.2177,-1.50266 7.56781,7.0777 0.4609,1.61976 0.874,4.05258 1.10771,6.52353 0.10399,1.09949 0.19829,2.03755 0.20956,2.08457 0.0113,0.047 0.36443,0.0155 0.78483,-0.07 0.42039,-0.0855 2.77927,-0.21492 3.19966,-0.28761 1.94529,-0.62168 12.73663,3.15841 20.13933,8.67177 5.82649,4.33942 13.06693,6.50811 13.12266,6.3688 -0.23394,1.30265 -1.93616,3.60503 -2.89798,4.37797 -0.73674,0.59206 -1.04898,0.70625 -1.57232,0.57502 -0.62013,-0.1555 -2.59956,-1.03543 -3.35765,-1.49261 -0.19402,-0.11701 -1.47635,-0.90335 -2.84961,-1.74743 -1.37325,-0.84408 -3.25063,-1.83754 -4.17194,-2.2077 -0.9213,-0.37016 -1.86148,-0.83867 -2.08927,-1.04113 -0.2278,-0.20247 -1.59709,-0.97007 -3.04287,-1.70577 -1.92892,-0.98157 -3.02455,-1.38951 -4.11574,-1.53245 -0.81788,-0.10713 -1.80455,-0.30074 -2.1926,-0.43022 -0.38806,-0.12949 -1.47578,-0.29813 -2.41717,-0.37475 -2.40245,-0.19554 -2.48285,0.17541 -0.43803,2.02093 0.85892,0.77521 1.56168,1.5137 1.56168,1.64109 0,0.40638 1.96493,2.54076 2.93981,3.19334 0.51741,0.34635 1.15241,0.81198 1.41111,1.03473 0.25871,0.22275 1.31295,0.73857 2.34276,1.14625 1.51163,0.59843 2.21399,1.06211 3.64537,2.40659 1.00781,0.94662 2.07136,2.21523 2.46435,2.93949 0.60894,1.12223 0.69307,1.51747 0.70556,3.31503 0.0143,2.0622 -0.42773,3.59657 -1.30109,4.51592 -0.18206,0.19165 -0.70632,0.84056 -1.16502,1.44201 -0.8014,1.05081 -0.82772,1.14732 -0.67323,2.46881 0.16427,1.40508 1.04493,4.96059 1.85522,7.49007 0.24862,0.77611 0.63232,2.04611 0.85266,2.82222 0.22034,0.77611 0.56101,1.87028 0.75703,2.43149 0.33721,0.96544 0.39539,1.01247 1.08084,0.87363 0.39844,-0.0807 1.62611,-0.2077 2.72815,-0.2822 2.69644,-0.18229 4.98167,0.49167 7.63889,2.25286 0.5174,0.34293 1.8826,1.02539 3.03377,1.51658 1.15116,0.49118 2.89741,1.26487 3.88055,1.7193 0.98314,0.45443 2.56741,1.1866 3.5206,1.62704 0.95319,0.44044 2.17027,0.86644 2.70463,0.94666 1.14513,0.17192 2.25755,0.79572 2.6963,1.51197 0.22912,0.37403 0.2964,1.34419 0.24966,3.59994 -0.0352,1.69835 -0.0705,3.71078 -0.0784,4.47207 -0.0125,1.19478 -0.0949,1.44365 -0.60244,1.81903 -0.63178,0.4673 -2.89681,0.91449 -5.48622,1.08317 -1.29652,0.0845 -1.69273,0.0258 -2.05787,-0.30464 -1.00858,-0.91276 -0.33629,-1.92477 2.0875,-3.14233 0.55605,-0.27932 1.07161,-0.66582 1.14569,-0.85888 0.2248,-0.58581 -0.65149,-2.51466 -1.5572,-3.42765 -0.66887,-0.67424 -1.10537,-0.89457 -2.01989,-1.01958 -0.64165,-0.0877 -2.38372,-0.3505 -3.87126,-0.58399 -1.48755,-0.23349 -3.65713,-0.55238 -4.8213,-0.70863 -1.16417,-0.15626 -2.69875,-0.38865 -3.41019,-0.51644 -1.21421,-0.2181 -4.83725,-0.68982 -8.58426,-1.11767 -2.84303,-0.32464 -3.77796,-0.6704 -4.72199,-1.74632 -0.94016,-1.0715 -4.56782,-5.97933 -4.56782,-6.17976 0,-0.0692 -0.30285,-0.56642 -0.673,-1.10498 -1.20259,-1.7497 -3.50978,-5.48453 -4.03839,-6.53726 -0.28367,-0.56491 -0.70241,-1.23878 -0.93054,-1.49748 -0.22812,-0.2587 -0.48556,-0.86725 -0.57208,-1.35232 -0.15615,-0.87548 -0.28963,-0.97536 -1.19432,-0.8936 -0.52332,0.0473 -2.6986,0.81205 -3.34617,1.1764 -0.70811,0.39841 -2.21833,0.95151 -2.62098,0.95991 -0.21057,0.004 -0.80619,0.21246 -1.32359,0.46239 -0.51741,0.24992 -1.16715,0.458 -1.44386,0.46239 -0.27671,0.004 -0.74099,0.2006 -1.03174,0.43604 -0.48147,0.38986 -0.50382,0.50322 -0.25054,1.27066 0.43314,1.31244 0.16904,6.28174 -0.44095,8.29665 -0.65202,2.15377 -2.19188,7.11102 -3.04552,9.80443 -0.40317,1.27207 -0.7984,3.49661 -0.76516,4.30668 0.0159,0.38805 0.0909,1.65805 0.16653,2.82222 0.13287,2.04411 0.11669,2.13874 -0.47193,2.7607 -0.33523,0.35422 -0.8445,0.69289 -1.13169,0.7526 -0.2872,0.0597 -2.63885,0.17106 -5.22588,0.24744 -2.58704,0.0764 -5.17996,0.2358 -5.7620397,0.35428 -1.24433,0.25328 -3.57647,0.26046 -4.60664,0.0142 l 10e-6,-3.1e-4 c -1.01111,-0.24172 -1.19306,-0.38653 -1.46467,-1.16567 -0.31721,-0.90996 0.14605,-1.56498 1.2538,-1.7728 1.941,-0.36413 8.6860697,-3.89285 10.1416897,-5.30568 l 0.96439,-0.93604 0.0335,-10.52728 c 0.0347,-10.90706 0.14006,-13.47378 0.58758,-14.31544 0.29708,-0.55873 2.03794,-2.17284 5.30401,-4.91781 2.41562,-2.03023 2.69963,-2.24375 5.66041,-4.25567 1.09949,-0.74713 2.47952,-1.75241 3.06673,-2.23396 0.58721,-0.48155 1.6881,-1.085 2.44643,-1.34101 1.27695,-0.4311 2.02874,-1.03924 1.60411,-1.29761 -0.0986,-0.06 -1.07889,-0.44461 -2.17838,-0.85468 -3.19066,-1.19 -3.56592,-1.33629 -5.08589,-1.98273 -0.79228,-0.33695 -1.506,-0.61263 -1.58603,-0.61263 -0.37746,0 -4.57907,-2.14605 -5.18572,-2.64869 -0.54176,-0.44889 -0.67591,-0.73762 -0.6368,-1.37065 0.0706,-1.14249 0.0279,-5.65118 -0.0588,-6.21122 -0.0687,-0.4439 -0.30316,-0.47741 -4.16671,-0.59554 -2.25165,-0.0688 -4.23063,-0.21012 -4.39775,-0.31396 -0.16711,-0.10383 -1.0667,-0.27253 -1.9990697,-0.37488 -0.93237,-0.10235 -2.01273,-0.30082 -2.40078,-0.44105 -0.38806,-0.14023 -1.41616,-0.44197 -2.28467,-0.67054 -1.08692,-0.28604 -1.83024,-0.65249 -2.38478,-1.17566 l -0.80565,-0.76009 -0.17383,-4.40442 c -0.24183,-6.12711 0.61852,-13.65757 1.91091,-16.72589 0.54769,-1.30031 0.66751,-2.60455 0.28112,-3.06018 -0.59075,-0.6966 -1.12921,-2.48614 -1.12921,-3.75285 0,-1.1013 0.0735,-1.27098 0.78655,-1.81482 0.6823,-0.52042 1.02136,-0.59993 2.55824,-0.59993 1.28792,0 1.85163,0.0963 2.06447,0.35277 0.16103,0.19403 0.44189,0.35278 0.62414,0.35278 0.18225,0 0.39228,0.15875 0.46673,0.35278 0.52285,0.52508 0.3137,1.29387 0.3137,1.29387 -0.63421,5.66789 -1.86803,11.68206 -1.81877,15.28827 -0.10463,5.74357 0.10579,7.9036 0.83937,8.03894 0.21886,0.0404 1.32398,0.0904 2.4558097,0.11124 1.53972,0.0283 2.05787,-0.0383 2.05787,-0.26458 v -5e-5 c 0,-0.78652 -0.32312,-1.77232 -0.58091,-1.77232 -0.41848,0 -0.94566,-0.6584 -1.64619,-2.05596 -1.2459097,-2.48556 -1.3470397,-5.81882 -0.22663,-7.46982 0.31473,-0.46379 0.57224,-1.08674 0.57224,-1.38432 0,-0.75911 0.62889,-1.24379 2.12355,-1.63661 0.70765,-0.18598 1.55122,-0.45453 1.8746,-0.59678 0.32338,-0.14224 1.17005,-0.35987 1.88148,-0.48361 2.28011,-0.3966 3.86729,-1.0943 3.86729,-1.0943 M 8.9419263,291.41065 c 0.43511,-0.16408 2.5753697,-0.27353 5.5835997,-0.28555 4.54627,-0.0182 4.92218,-0.0525 5.52685,-0.50517 0.62195,-0.46556 0.64664,-0.56246 0.59648,-2.3405 -0.0288,-1.02016 -0.0707,-2.17234 -0.0932,-2.56039 -0.0817,-1.41138 0.67135,-4.38362 2.50269,-9.87778 1.66147,-4.98456 2.01084,-6.38193 2.02863,-8.11389 0.0179,-1.74479 -0.28862,-4.72567 -0.60643,-5.89708 -0.20131,-0.74198 0.12903,-1.04326 1.34954,-1.23086 0.7449,-0.11449 3.52754,-1.03858 5.4544,-1.81135 0.57631,-0.23113 3.46192,-1.27709 4.58611,-1.66235 0.45274,-0.15515 1.10865,-0.42888 1.45759,-0.60828 0.77545,-0.39869 3.53258,-1.35522 5.59797,-1.9421 5.60284,-1.59206 6.71507,-1.98204 7.53739,-2.64287 2.0741,-1.6668 2.97928,-5.3146 1.8815,-7.58232 -0.5786,-1.19522 -3.01272,-3.14454 -4.7718,-3.8214 -0.55095,-0.212 -1.11106,-0.51788 -1.2447,-0.67973 -0.20765,-0.2515 -1.1869,-1.09636 -4.08,-3.52009 -0.30801,-0.25804 -1.14757,-0.97439 -1.86569,-1.5919 -0.71812,-0.61751 -1.73686,-1.39553 -2.26387,-1.72894 -0.98378,-0.62239 -3.19223,-3.60354 -3.18553,-4.30009 0.006,-0.65467 0.39693,-1.02681 1.0887,-1.03718 2.19784,-0.0329 7.11603,0.40661 7.70449,0.68858 0.37559,0.17997 1.11642,0.32876 1.64629,0.33064 1.2047,0.004 2.78749,0.54473 3.75372,1.28171 0.40675,0.31025 1.00366,0.67849 1.32647,0.81833 0.32281,0.13983 0.91502,0.45359 1.31604,0.69723 0.40101,0.24364 1.40643,0.81086 2.23426,1.26049 2.28502,1.24111 5.10526,3.03616 6.8766,4.37688 0.89384,0.67655 1.84009,1.20453 2.15873,1.20453 0.31203,0 0.92894,-0.3175 1.37091,-0.70555 0.44197,-0.38806 0.88711,-0.70556 0.9892,-0.70556 0.36503,0 1.04581,-0.78629 1.04581,-1.20789 0,-0.43478 -0.18421,-0.50808 -1.99908,-0.79545 -2.56892,-0.29795 -4.59165,-1.02808 -9.26837,-4.53076 -4.4103,-3.27304 -9.98791,-5.63099 -14.49592,-7.58151 -3.47478,-1.47895 -4.67368,-1.72316 -6.43831,-1.3115 -2.29962,0.53646 -3.19881,1.38374 -2.61876,2.46758 0.42172,0.788 0.31169,1.67064 -0.20827,1.67064 -0.25107,0 -0.54212,-0.13229 -0.64676,-0.29398 -0.10465,-0.16169 -0.26036,-1.88148 -0.34601,-3.82176 -0.27977,-6.33735 -1.76267,-11.5695 -3.91605,-13.81713 -1.50239,-1.56813 -2.16423,-0.97464 -0.74776,0.67054 1.05441,1.22466 1.81496,3.03468 2.55938,6.09104 0.79573,3.26705 0.9668,4.20895 0.9681,5.33027 7e-4,0.6902 0.16641,1.57128 0.36803,1.95796 0.21935,0.42068 0.40102,1.50696 0.45233,2.70463 0.0471,1.10087 0.16082,2.66304 0.25259,3.47149 0.11662,1.02734 0.0876,1.46991 -0.0965,1.46991 -0.14485,0 -0.32597,-0.29104 -0.40249,-0.64676 -0.0765,-0.35572 -0.31257,-1.05758 -0.52455,-1.5597 -0.21198,-0.50212 -0.39182,-1.50753 -0.39964,-2.23426 -0.008,-0.72672 -0.14559,-1.55506 -0.30614,-1.84074 -0.16056,-0.28568 -0.34815,-1.12716 -0.41688,-1.86995 -0.0687,-0.74279 -0.21176,-1.46155 -0.31785,-1.59724 -0.10609,-0.1357 -0.24997,-0.83071 -0.31973,-1.54447 -0.0698,-0.71377 -0.30214,-1.87793 -0.51641,-2.58704 -0.21426,-0.70911 -0.56396,-1.87137 -0.77712,-2.58281 -0.21316,-0.71143 -0.5082,-1.45226 -0.65564,-1.64629 -0.14745,-0.19403 -0.33958,-0.55314 -0.42696,-0.79802 -0.0874,-0.24488 -0.22364,-0.38047 -0.30279,-0.30132 -0.16071,0.16071 0.81805,3.44216 1.1311,3.79221 0.1099,0.12288 0.19981,0.57793 0.19981,1.01121 0,0.43329 0.1464,1.07358 0.32533,1.42288 0.17893,0.34929 0.4001,1.32299 0.4915,2.16378 0.0914,0.84079 0.27093,1.95204 0.39897,2.46944 0.12804,0.51741 0.3303,1.89324 0.44947,3.05741 0.61473,6.00541 0.99084,7.39089 2.0101,7.40473 0.14585,0.002 0.39106,0.15527 0.54491,0.34065 0.22492,0.27102 0.16859,0.40985 -0.28759,0.70876 -0.50453,0.33058 -0.65833,0.33368 -1.3898,0.0281 -0.45236,-0.18901 -1.04653,-0.28506 -1.32038,-0.21345 -0.65016,0.17002 -1.67791,-0.93862 -2.3943,-2.58275 -0.29177,-0.66961 -0.67665,-1.49839 -0.85528,-1.84173 -0.17863,-0.34334 -0.32478,-0.96205 -0.32478,-1.37491 0,-0.81924 -0.64538,-3.28922 -0.94326,-3.61001 -0.32604,-0.35112 -1.19396,0.74159 -1.04894,1.32062 0.0724,0.28907 0.11973,0.73725 0.10519,0.99596 -0.0145,0.2587 -0.0801,3.1231 -0.14571,6.36533 -0.0956,4.72208 -0.0573,5.94505 0.19237,6.14666 0.1714,0.13843 0.89373,0.48641 1.60516,0.77329 0.71144,0.28688 1.50519,0.61428 1.76389,0.72756 0.25871,0.11329 3.06299,1.16374 6.23175,2.33435 l 5.76138,2.12837 2.26831,-0.15623 c 2.79163,-0.19227 3.55421,-0.042 3.45152,0.68018 -0.0662,0.46574 -0.2856,0.54911 -2.07314,0.78783 -1.98483,0.26507 -4.00402,0.90328 -5.07223,1.6032 -0.30634,0.20072 -1.09427,0.57673 -1.75098,0.83557 -0.6567,0.25885 -1.48034,0.66774 -1.8303,0.90864 -0.34997,0.2409 -1.27131,0.84309 -2.04742,1.3382 -2.68339,1.71186 -4.31538,2.98269 -8.74355,6.80864 -2.02934,1.75334 -2.93326,2.69616 -3.10184,3.23531 -0.13745,0.43959 -0.30172,5.67162 -0.38902,12.39064 -0.13877,10.68024 -0.18668,11.69951 -0.58684,12.48389 -0.50793,0.99563 -1.7344,1.99647 -2.9912,2.44093 -0.48713,0.17227 -1.99695,0.90111 -3.35514,1.61963 -1.3581897,0.71853 -3.0759697,1.53284 -3.8172897,1.80957 -1.39415,0.52043 -1.7208,0.77953 -1.47802,1.17235 0.16611,0.26878 2.04001,0.0853 3.06105,-0.29971 z m 70.6028797,-3.81074 c 1.5609,-0.40447 2.01977,-0.85613 1.7703,-1.74251 -0.22077,-0.78442 -0.12655,-3.93057 0.13152,-4.39172 0.28315,-0.50595 -0.0433,-2.68586 -0.4397,-2.93618 -0.18344,-0.11584 -0.9156,-0.19313 -1.62704,-0.17177 -1.14716,0.0345 -1.63944,-0.12871 -4.35092,-1.44205 -1.68158,-0.81449 -3.26908,-1.56904 -3.52778,-1.67679 -0.97343,-0.40539 -3.84839,-1.72989 -6.23241,-2.87129 -1.35819,-0.65027 -2.83986,-1.28007 -3.29259,-1.39958 -2.01333,-0.53143 -3.30145,-0.65347 -4.28668,-0.40614 -3.62347,0.90962 -3.71033,0.88668 -4.24517,-1.12108 -0.19935,-0.74836 -0.58793,-2.10148 -0.86352,-3.00695 -0.27558,-0.90546 -0.71394,-2.44004 -0.97413,-3.41018 -0.26019,-0.97014 -0.64502,-2.39889 -0.85519,-3.175 -0.21016,-0.77611 -0.62867,-1.84474 -0.93002,-2.37474 -0.38578,-0.6785 -0.50672,-1.16951 -0.40873,-1.65947 0.0974,-0.48675 0.0238,-0.79159 -0.24477,-1.01448 -0.32551,-0.27016 -0.72428,-0.24204 -2.62053,0.1848 -1.23013,0.2769 -2.57461,0.65952 -2.98773,0.85029 -1.49272,0.68927 -3.24771,1.30897 -3.70703,1.30897 -0.74351,0 -0.77918,0.58491 -0.12305,2.01808 0.33523,0.73224 0.60951,1.41625 0.60951,1.52 0,0.80351 5.38037,9.32699 8.14036,12.89581 1.60535,2.0758 2.42029,2.49639 5.2652,2.71738 1.09949,0.0854 3.16324,0.36622 4.58611,0.62403 1.42287,0.25781 3.7512,0.56844 5.17407,0.69028 1.42287,0.12184 2.97695,0.34407 3.4535,0.49384 0.49232,0.15473 1.28857,0.20482 1.844,0.116 0.59704,-0.0955 1.49562,-0.0238 2.30854,0.18417 0.73205,0.18726 1.91308,0.4586 2.62452,0.60297 1.64053,0.33291 3.24008,1.14333 3.83843,1.94476 0.46806,0.62691 0.7985,1.92272 1.02551,4.0215 0.10239,0.94662 0.0373,1.22627 -0.39142,1.68265 -0.28281,0.30105 -0.87566,0.61517 -1.31744,0.69804 -0.44178,0.0829 -0.80323,0.25173 -0.80323,0.37522 0,0.34039 1.9232,0.26871 3.45751,-0.12886 z m -51.12279,-56.12853 c 0.16734,-0.2653 0.0931,-0.49762 -0.27718,-0.86795 -0.33685,-0.33685 -0.50617,-0.80015 -0.50714,-1.38763 -7e-4,-0.48507 -0.16737,-1.19945 -0.37016,-1.5875 -0.20279,-0.38806 -0.41927,-1.23472 -0.48105,-1.88148 -0.10721,-1.12214 -0.44152,-2.50029 -1.16955,-4.8213 -0.18258,-0.58208 -0.33111,-1.48167 -0.33006,-1.99907 0.003,-1.65501 -1.22841,-5.5457 -2.12206,-6.70278 l -0.4541,-0.58796 -0.005,0.63288 c -0.003,0.34808 0.0924,0.6932 0.21169,0.76694 0.3025,0.18695 0.95804,3.1861 0.96363,4.40864 0.003,0.55655 0.17159,1.85857 0.37565,2.89339 0.20405,1.03481 0.45625,2.72815 0.56042,3.76296 0.4244,4.21557 0.90897,5.71453 2.33559,7.22495 0.64852,0.6866 0.90956,0.7166 1.26955,0.14591 z m -8.55336,-3.16121 1.00039,-0.40028 -0.0945,-1.48408 c -0.052,-0.81625 -0.17794,-1.56752 -0.27991,-1.6695 -0.10197,-0.10198 -1.20846,-0.19867 -2.45887,-0.21487 -1.5981,-0.0207 -2.55293,-0.15189 -3.21421,-0.44159 -0.79857,-0.34985 -1.35677,-0.38891 -3.69369,-0.2585 -1.7929497,0.10005 -3.1256597,0.0598 -3.8217597,-0.1155 -0.9785,-0.24639 -1.06995,-0.33135 -1.0823,-1.00556 -0.007,-0.40504 -0.0574,-1.53253 -0.11117,-2.50553 -0.25645,-4.64436 -0.21828,-13.07542 0.0628,-13.87072 0.16001,-0.45273 0.38878,-1.77565 0.50838,-2.93982 0.1196,-1.16416 0.42836,-2.69043 0.68613,-3.3917 0.72007,-1.959 0.50754,-2.25274 -1.62996,-2.25274 h -1.73695 l 0.0561,1.46923 c 0.0308,0.80807 0.25653,2.07807 0.50155,2.82222 0.64649,1.96351 0.76694,2.89724 0.49331,3.82416 -0.13336,0.45179 -0.3521,1.56226 -0.48607,2.46772 -0.13397,0.90547 -0.39261,2.5988 -0.57475,3.76297 -0.75417,4.82042 -0.84116,5.91895 -0.77008,9.7252 0.0894,4.78602 0.0488,4.71055 2.99663,5.5774 1.10917,0.32617 2.65167,0.80243 3.42779,1.05836 1.2458197,0.41083 1.8684797,0.45234 5.3159497,0.35437 2.92258,-0.0831 4.15649,-0.21166 4.90522,-0.51124 z m -1.48651,-5.62076 c 0.038,-0.12935 -0.38742,-0.57906 -0.94538,-0.99935 -0.68454,-0.51565 -1.30667,-1.31877 -1.91294,-2.46945 -0.49416,-0.9379 -1.03889,-1.96986 -1.2105,-2.29324 -0.17161,-0.32338 -0.31267,-0.86321 -0.31347,-1.19962 -0.002,-0.72191 -0.43826,-2.11159 -0.7683,-2.44575 -0.50453,-0.51081 0.31313,5.17273 1.00394,6.97845 0.61491,1.60732 1.22656,2.32593 2.1771,2.55785 0.96471,0.23536 1.88015,0.17546 1.96955,-0.12889 z m 3.61277,-1.5289 c 0.48323,-0.45141 0.70402,-0.83994 0.61265,-1.07807 -0.0786,-0.20478 -0.21261,-1.13073 -0.29783,-2.05767 -0.0977,-1.0623 -0.44539,-2.40754 -0.94055,-3.63882 -0.43208,-1.07441 -0.78906,-2.07983 -0.79331,-2.23426 -0.004,-0.15444 -0.49298,-0.69592 -1.08608,-1.20329 -0.85687,-0.73302 -1.27591,-0.92624 -2.04013,-0.94074 -0.87188,-0.0165 -0.98124,0.0477 -1.17019,0.68731 -0.11464,0.38805 -0.41019,1.09693 -0.65679,1.57529 -0.7416,1.4386 -0.60647,3.1892 0.40919,5.30085 1.82079,3.78558 4.21211,5.22501 5.96304,3.5894 z m -10.11317,-4.11555 c 0,-0.32337 -0.10584,-0.58796 -0.23519,-0.58796 -0.26274,0 -0.32237,0.77516 -0.0784,1.01914 0.25926,0.25925 0.31359,0.18455 0.31359,-0.43118 z m 12.54986,-7.52592 c -0.0745,-0.19403 -0.17697,-0.35278 -0.22781,-0.35278 -0.0508,0 -0.0924,0.15875 -0.0924,0.35278 0,0.19403 0.10252,0.35278 0.22781,0.35278 0.12529,0 0.16688,-0.15875 0.0924,-0.35278 z"
+ id="path2525"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccscsscccccccccsccccccccccssccscssccccccccccccccccscccccccccccccccccccccccscsccssccscscccccscccccccscscscccccsssccscccccccccccccsccccccccscccsccccccscsscccccscccscccccscscccccccccscscsccccccccsscccccccccccccccccsscccccccccccccccccccsccccccscsccsscccccsccsccccccccsccccccccccccscccccccscsccccccccccccccssccscccccccccccscsscscsssc" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="arrow.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//arrow.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3598" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.4766083"
+ inkscape:cx="23.694916"
+ inkscape:cy="12.305085"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.45820022;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 8.0753894,16.339994 7.7291001,4.7291 16.2709,12.845454 12.34629,12.732728 15.462892,17.918176 13.385156,19.2709 10.153125,13.747272 8.0753894,16.339996 Z"
+ id="path2818"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.45820022;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 8.0754441,16.339958 7.7291551,4.7290641 16.270955,12.845418 12.346345,12.732692 15.462947,17.91814 13.385211,19.270864 10.15318,13.747236 8.0754441,16.33996 Z"
+ id="path2818-0"
+ sodipodi:nodetypes="cccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:9.36088085;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="131.07092"
+ height="62.217209"
+ x="-59.453693"
+ y="-93.506348" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="autokeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/autokeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="12.824346"
+ inkscape:cx="-45.755683"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 7.6488899,16.506752 c 1.6525968,-0.0044 3.1014341,-1.047261 3.7646931,-2.591183 h 0.883254 l 0.883256,-0.969706 0.883254,0.969706 h 0.579184 l 0.579184,-1.287644 h 0.593663 l 0.593663,1.287644 0.579184,-0.01589 0.883256,-0.953808 0.883254,0.953808 h 0.579184 l 1.172846,-1.605578 v -1.621478 l -0.883254,-0.635874 -8.209928,0.0159 C 10.738507,8.5270705 9.2337679,7.4888519 7.5909717,7.4932481 5.3012336,7.4994011 3.4876454,9.4213918 3.4932476,11.94436 c 0.00562,2.522972 1.8659042,4.56852 4.1556423,4.562392 z"
+ id="path6767"
+ sodipodi:nodetypes="cccccccccccccccccssc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 7.6488899,16.506752 c 1.6525968,-0.0044 3.1014341,-1.047261 3.7646931,-2.591183 h 0.883254 l 0.883256,-0.969706 0.883254,0.969706 h 0.579184 l 0.579184,-1.287644 h 0.593663 l 0.593663,1.287644 0.579184,-0.01589 0.883256,-0.953808 0.883254,0.953808 h 0.579184 l 1.172846,-1.605578 v -1.621478 l -0.883254,-0.635874 -8.209928,0.0159 C 10.738507,8.5270708 9.2337679,7.4888522 7.5909717,7.4932484 5.3012336,7.4994014 3.4876454,9.4213919 3.4932476,11.94436 c 0.00562,2.522972 1.8659042,4.56852 4.1556423,4.562392 z"
+ id="path6767-6"
+ sodipodi:nodetypes="cccccccccccccccccssc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="2"
+ sodipodi:docname="bar.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/bar.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ id="stop3602"
+ offset="0.5"
+ style="stop-color:#202020;stop-opacity:1;" />
+ <stop
+ style="stop-color:#969696;stop-opacity:1;"
+ offset="0.5"
+ id="stop3606" />
+ <stop
+ style="stop-color:#969696;stop-opacity:1;"
+ offset="1"
+ id="stop3604" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3600"
+ x1="58.729622"
+ y1="-0.066757977"
+ x2="58.729618"
+ y2="2.2868314"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99744255,0,0,0.85321692,0.0165285,0.05096807)" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4"
+ inkscape:cx="44.956662"
+ inkscape:cy="2.0625"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient3600);fill-opacity:1;stroke:none"
+ id="rect2820"
+ width="128.01083"
+ height="2.0081222"
+ x="-0.00075174606"
+ y="-0.0059909648" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.70710677"
+ id="rect2818-1"
+ width="128"
+ height="1"
+ x="0"
+ y="1"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.70710677"
+ id="rect2829-0"
+ width="128"
+ height="1"
+ x="0"
+ y="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="16.5"
+ y="-31.5"
+ id="text895"><tspan
+ sodipodi:role="line"
+ x="16.5"
+ y="-31.5"
+ id="tspan897">z.B. in Preferences.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="15"
+ y="-20.25"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="15"
+ y="-20.25">s.a.: mbutton_bg</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="blank30x30.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/blank30x30.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8666667"
+ inkscape:cx="-30.572034"
+ inkscape:cy="11.771649"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="bottom_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/bottom_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8250206"
+ inkscape:cx="-33.756065"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11.5"
+ height="4"
+ x="6.25"
+ y="13.75"
+ ry="0" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-42.645931"
+ y="-6.4584479" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="camera.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/camera.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.3015211"
+ inkscape:cx="-63.152619"
+ inkscape:cy="14.209074"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98378259"
+ d="M 11.583223,4.6382038 9.1885208,7.6243646 9.9253521,8.2400679 11.0613,6.8547355 v 4.6485595 0.430992 H 6.210494 L 7.5920528,10.795236 6.9780267,10.056392 4,12.42685 6.9780267,14.858878 7.5920528,14.120034 6.210494,12.950198 H 11.0613 v 0.184711 4.648559 L 9.9253521,16.398136 9.1885208,17.013839 11.583223,20 l 2.394702,-2.986161 -0.736832,-0.615703 -1.166649,1.385332 v -4.648559 -0.184711 h 4.912209 l -1.381559,1.169836 0.614026,0.738844 2.947325,-2.432028 -2.947325,-2.370458 -0.614026,0.738844 1.381559,1.139051 H 12.074444 V 11.503295 6.8547355 l 1.166649,1.3853324 0.736832,-0.6157033 z"
+ id="rect5208" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98378259"
+ d="M 15.028007,3.9999999 V 8.9273224 H 20 V 7.953235 H 16.023702 V 3.9999999 Z"
+ id="rect5196"
+ sodipodi:nodetypes="ccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-53.915173"
+ y="-36.365726" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16"
+ height="16"
+ sodipodi:docname="camerakeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/camerakeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.
+Inkonsistenzen vermeiden.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.734375"
+ inkscape:cx="38.012692"
+ inkscape:cy="25.139415"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:#00be00;fill-opacity:1;stroke:#006c00;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.5905716,2.101695 c -0.135593,1.7136299 0,1.7323445 0,3.3781779 L 0.47457553,7.3103814 1.8983046,14.35964 10.512181,14.573623 v -4.0625 l 4.750001,4.1875 V 3.7298729 c -1.583334,1.4270833 -3.166667,2.8541667 -4.750001,4.28125 0,-2.46875 0,-3.717161 0,-6.185911 C 7.3970686,1.0586158 5.5022946,1.1055791 2.5905716,2.101695 Z m 1.54661,1.2346398 h 4.75 v 2.1435381 h -4.75 z"
+ id="path2818"
+ sodipodi:nodetypes="cccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#217844;fill-opacity:1;stroke:#16502d;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.7341664,1.950098 c -0.135593,1.713629 0,1.732344 0,3.378177 l -2.11599597,1.830509 1.42372897,7.049257 8.6138766,0.213983 v -4.062498 l 4.750001,4.187498 V 3.578275 c -1.583334,1.427084 -3.166667,2.854167 -4.750001,4.28125 0,-2.46875 0,-3.717161 0,-6.185911 C 7.5406632,0.90701798 5.6458894,0.95398198 2.7341664,1.950098 Z m 1.54661,1.234639 H 9.0307762 V 5.328275 H 4.2807764 Z"
+ id="path2818-2-4"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <g
+ id="g833"
+ transform="translate(-23.935795,-29.072231)">
+ <rect
+ y="34.469242"
+ x="55.815987"
+ height="4.9641423"
+ width="8.8251419"
+ id="rect834-0"
+ style="opacity:1;fill:#217844;fill-opacity:1;fill-rule:evenodd;stroke:#16502d;stroke-width:0.27578568;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect836-6"
+ d="m 68.325878,32.347295 a 3.0728233,2.7461165 0 0 0 -3.072901,2.746577 3.0728233,2.7461165 0 0 0 0.001,0.01346 c -9.24e-4,0.01002 -0.007,0.01849 -0.007,0.02873 v 6.62267 c 0,0.202762 0.182644,0.36633 0.409052,0.36633 h 5.342735 c 0.226408,0 0.408049,-0.163568 0.408049,-0.36633 v -6.622661 c 0,-0.01306 -0.0065,-0.02412 -0.008,-0.03682 a 3.0728233,2.7461165 0 0 0 0,-0.0054 3.0728233,2.7461165 0 0 0 -3.072899,-2.746577 z"
+ style="opacity:1;fill:#217844;fill-opacity:1;fill-rule:evenodd;stroke:#16502d;stroke-width:0.48231593;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="35.093872"
+ x="64.774582"
+ height="0.90800226"
+ width="0.24011409"
+ id="rect831"
+ style="opacity:1;fill:#16502d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11988268;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="50"
+ height="50"
+ id="svg1306"
+ sodipodi:version="0.32"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="cancel.svg"
+ version="1.0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//cancel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1308">
+ <linearGradient
+ id="linearGradient46073">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1;"
+ offset="0"
+ id="stop46071" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1;"
+ offset="1"
+ id="stop46069" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9647">
+ <stop
+ style="stop-color:#fe4747;stop-opacity:1;"
+ offset="0"
+ id="stop9649" />
+ <stop
+ id="stop3219"
+ offset="1"
+ style="stop-color:#c80909;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9647"
+ id="linearGradient6943"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1.000001,-1.000001,0,93.25488,-50.19949)"
+ x1="48.907528"
+ y1="21.527676"
+ x2="94.546799"
+ y2="21.527676" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="translate(57.701518,-50.902186)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.21568627"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="25.166705"
+ inkscape:cx="-0.64896759"
+ inkscape:cy="25"
+ inkscape:current-layer="layer5"
+ showgrid="true"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:window-width="1280"
+ inkscape:window-height="752"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:showpageshadow="false"
+ fill="#fce94f"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata1311">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>Dialog Cancel</dc:title>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ <dc:date>2018-08-01</dc:date>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(0,2)"
+ style="display:inline" />
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ transform="translate(0,2)"
+ style="display:inline" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(0,2)"
+ style="display:inline" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Glossy Shine"
+ transform="translate(0,2)"
+ style="display:none">
+ <g
+ id="g6848"
+ transform="matrix(0.858316,-0.858316,0.858316,0.858316,-54.908959,66.277556)">
+ <path
+ id="path2787"
+ d="m 93.996843,26.44197 v -9.828504 l -17.355398,2e-6 V -0.74193099 l -9.828505,-9.2e-7 10e-7,17.35539791 H 49.457543 l 2e-6,9.828503 17.355396,3e-6 2e-6,17.355394 9.828503,3e-6 -10e-7,-17.355399 z"
+ style="fill:url(#linearGradient6943);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.1000011;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccczzcc"
+ id="path6779"
+ d="m 93.451391,25.89825 -8.01e-4,-8.74438 -17.340396,-0.0092 -0.02053,-17.33519703 -8.688015,0.0831879 -0.04452,17.24664513 -10.809464,0.02383 c 0,0 3.367913,2.462278 6.722386,3.653778 3.354474,1.191501 4.324472,-1.061284 9.808885,2.105388 5.498224,3.169434 8.018312,2.96676 8.018312,2.96676 l 12.354135,0.0091 z"
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path6842"
+ d="m 92.93632,25.389772 0.03315,-7.703074 -17.402534,-0.01105 V 0.30981713 l -7.680765,-9.6e-7 10e-7,17.38792683 -17.354794,-0.04419 2e-6,7.72517 17.354792,-0.01104 0.0442,17.410022 7.629065,-0.02209 0.08839,-17.376882 17.288504,0.01105 z"
+ style="fill:none;stroke:#dd5843;stroke-width:1.047791;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Verlauf">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient46063);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1.33522773;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 48.332377,10.103586 39.896415,1.667623 25.000001,16.564041 10.103584,1.667624 1.6676211,10.103587 16.564037,25.000001 1.6676211,39.896417 10.103584,48.332377 25.000001,33.435965 39.896415,48.332376 48.332379,39.896417 33.435961,25.000001 Z"
+ id="path2787-9" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="440"
+ height="100"
+ sodipodi:docname="cbuttons_left.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_left.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: cbuttons_left</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient85406">
+ <stop
+ id="stop85402"
+ offset="0"
+ style="stop-color:#2d2d2d;stop-opacity:1" />
+ <stop
+ id="stop85404"
+ offset="1"
+ style="stop-color:#121212;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.1050113,0)" />
+ <inkscape:perspective
+ id="perspective2895"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(1,0,0,0.99208547,0,0.12475137)"
+ gradientUnits="userSpaceOnUse"
+ y2="15.76232"
+ x2="40.867283"
+ y1="43.375023"
+ x1="41.195095"
+ id="linearGradient2823"
+ xlink:href="#linearGradient2817"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ id="linearGradient2817">
+ <stop
+ id="stop2819"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#323232;stop-opacity:1;"
+ offset="0.5"
+ id="stop2827" />
+ <stop
+ style="stop-color:#969696;stop-opacity:1;"
+ offset="0.5"
+ id="stop2825" />
+ <stop
+ id="stop2821"
+ offset="1"
+ style="stop-color:#c8c8c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2817"
+ id="linearGradient3419"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.99208547,467.42198,-26.672132)"
+ x1="41.195095"
+ y1="43.375023"
+ x2="40.867283"
+ y2="15.76232" />
+ <filter
+ id="filter8082"
+ inkscape:label="Raised border"
+ inkscape:menu="Bevels"
+ inkscape:menu-tooltip="Strongly raised border around a flat surface"
+ height="1.5"
+ width="1.5"
+ y="-0.25"
+ x="-0.25"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8084"
+ stdDeviation="4"
+ result="result1" />
+ <feComposite
+ id="feComposite8086"
+ in2="result1"
+ in="result1"
+ result="result4"
+ operator="in" />
+ <feGaussianBlur
+ id="feGaussianBlur8088"
+ stdDeviation="2"
+ result="result6"
+ in="result4" />
+ <feComposite
+ id="feComposite8090"
+ in2="result4"
+ operator="xor"
+ in="result6"
+ result="result8" />
+ <feComposite
+ id="feComposite8092"
+ in2="result8"
+ operator="atop"
+ result="fbSourceGraphic"
+ in="result4" />
+ <feSpecularLighting
+ id="feSpecularLighting8094"
+ specularExponent="10"
+ specularConstant="1.3"
+ surfaceScale="3"
+ lighting-color="rgb(255,255,255)"
+ result="result1"
+ in="fbSourceGraphic">
+ <feDistantLight
+ id="feDistantLight8096"
+ azimuth="235"
+ elevation="55" />
+ </feSpecularLighting>
+ <feComposite
+ id="feComposite8098"
+ in2="fbSourceGraphic"
+ operator="atop"
+ result="result2"
+ in="result1" />
+ <feComposite
+ id="feComposite8100"
+ in2="result2"
+ k3="1"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic" />
+ <feComposite
+ id="feComposite8102"
+ in2="SourceGraphic"
+ operator="over"
+ in="result4"
+ result="result9" />
+ <feBlend
+ id="feBlend8104"
+ in2="result2"
+ mode="multiply" />
+ </filter>
+ <filter
+ id="filter8106"
+ inkscape:label="In and Out"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Inner colorized shadow, outer black shadow"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8108"
+ result="result0"
+ in="SourceAlpha"
+ stdDeviation="4" />
+ <feOffset
+ id="feOffset8110"
+ dx="5"
+ dy="5"
+ result="result4" />
+ <feComposite
+ id="feComposite8112"
+ in2="result4"
+ in="SourceGraphic"
+ operator="xor"
+ result="result3" />
+ </filter>
+ <filter
+ id="filter3632"
+ inkscape:label="Inner Shadow"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur3634"
+ stdDeviation="4"
+ result="result8" />
+ <feOffset
+ id="feOffset3636"
+ dx="4"
+ dy="4"
+ result="result11" />
+ <feComposite
+ id="feComposite3638"
+ in2="result11"
+ result="result6"
+ in="SourceGraphic"
+ operator="in" />
+ <feFlood
+ id="feFlood3640"
+ result="result10"
+ in="result6"
+ flood-opacity="1"
+ flood-color="rgb(0,0,0)" />
+ <feBlend
+ id="feBlend3642"
+ in2="result10"
+ mode="normal"
+ in="result6"
+ result="result12" />
+ <feComposite
+ id="feComposite3644"
+ in2="SourceGraphic"
+ result="result2"
+ operator="in" />
+ </filter>
+ <filter
+ id="filter2855"
+ inkscape:label="Cutout"
+ x="0"
+ y="0"
+ width="1"
+ height="1"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Drop shadow under the cut-out of the shape"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur2857"
+ in="SourceAlpha"
+ stdDeviation="4.2" />
+ <feOffset
+ id="feOffset2859"
+ dy="5"
+ dx="5"
+ result="result91" />
+ <feComposite
+ id="feComposite2861"
+ in2="result91"
+ operator="out"
+ in="SourceGraphic" />
+ </filter>
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.020055,0,0,1.4451084,-1.0589722,-113.19555)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601-1">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603-5" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605-9" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-8" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient3607-1"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)" />
+ <inkscape:perspective
+ id="perspective2895-6"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-85"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(3.3846154,0,0,1,-3.05e-5,1e-5)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient2305"
+ id="linearGradient2299"
+ x1="64.7089"
+ y1="16.90979"
+ x2="64.792068"
+ y2="100"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient2305">
+ <stop
+ id="stop2303"
+ offset="0"
+ style="stop-color:#121212;stop-opacity:1" />
+ <stop
+ id="stop2301"
+ offset="1"
+ style="stop-color:#2d2d2d;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.673395"
+ inkscape:cx="-70.581161"
+ inkscape:cy="139.25303"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer49"
+ inkscape:snap-bbox="true"
+ inkscape:showpageshadow="false"
+ showborder="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer48"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ y="0"
+ x="440"
+ height="100"
+ width="130"
+ id="rect8114"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="440"
+ height="100"
+ x="0"
+ y="0" />
+ <rect
+ y="-113"
+ x="0"
+ height="131.38678"
+ width="23"
+ id="rect3597-4"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#666666;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -1.8620758,16.137925 v 83.72415 H 577.3975 v -83.72415 z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:none"
+ id="rect2818-5"
+ width="130"
+ height="100"
+ x="440"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer49"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:none;fill-opacity:1;stroke:none"
+ id="rect2818-5-2"
+ width="130"
+ height="100"
+ x="442.36209"
+ y="-0.36205956" />
+ <rect
+ y="0"
+ x="0"
+ height="18"
+ width="440"
+ id="rect8114-2-1"
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.78053236" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:url(#linearGradient2299);fill-opacity:1;stroke:none;stroke-width:0.86776757;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 5.0000001e-7,17.00002 V 100 H 440 V 17.00001 Z"
+ id="rect2818-6-8"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-1.8344966"
+ y="-36.815056"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-1.8344966"
+ y="-36.815056"
+ id="tspan2289">Compositor, (only) bottom left, before LED.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="130"
+ height="100"
+ sodipodi:docname="cbuttons_right.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cbuttons_right.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title920">cbuttons_right</title>
+ <metadata
+ id="metadata8">
+ <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>cbuttons_right</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description></dc:description>
+ <dc:relation>cbuttons_left</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient2305">
+ <stop
+ id="stop2303"
+ offset="0"
+ style="stop-color:#121212;stop-opacity:1" />
+ <stop
+ id="stop2301"
+ offset="1"
+ style="stop-color:#2d2d2d;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.1050113,0)" />
+ <inkscape:perspective
+ id="perspective2895"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(1,0,0,0.99208547,0,0.12475137)"
+ gradientUnits="userSpaceOnUse"
+ y2="15.76232"
+ x2="40.867283"
+ y1="43.375023"
+ x1="41.195095"
+ id="linearGradient2823"
+ xlink:href="#linearGradient2817"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ id="linearGradient2817">
+ <stop
+ id="stop2819"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#323232;stop-opacity:1;"
+ offset="0.5"
+ id="stop2827" />
+ <stop
+ style="stop-color:#969696;stop-opacity:1;"
+ offset="0.5"
+ id="stop2825" />
+ <stop
+ id="stop2821"
+ offset="1"
+ style="stop-color:#c8c8c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2817"
+ id="linearGradient3419"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.99208547,467.42198,-26.672132)"
+ x1="41.195095"
+ y1="43.375023"
+ x2="40.867283"
+ y2="15.76232" />
+ <filter
+ id="filter8082"
+ inkscape:label="Raised border"
+ inkscape:menu="Bevels"
+ inkscape:menu-tooltip="Strongly raised border around a flat surface"
+ height="1.5"
+ width="1.5"
+ y="-0.25"
+ x="-0.25"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8084"
+ stdDeviation="4"
+ result="result1" />
+ <feComposite
+ id="feComposite8086"
+ in2="result1"
+ in="result1"
+ result="result4"
+ operator="in" />
+ <feGaussianBlur
+ id="feGaussianBlur8088"
+ stdDeviation="2"
+ result="result6"
+ in="result4" />
+ <feComposite
+ id="feComposite8090"
+ in2="result4"
+ operator="xor"
+ in="result6"
+ result="result8" />
+ <feComposite
+ id="feComposite8092"
+ in2="result8"
+ operator="atop"
+ result="fbSourceGraphic"
+ in="result4" />
+ <feSpecularLighting
+ id="feSpecularLighting8094"
+ specularExponent="10"
+ specularConstant="1.29999995"
+ surfaceScale="3"
+ lighting-color="#ffffff"
+ result="result1"
+ in="fbSourceGraphic">
+ <feDistantLight
+ id="feDistantLight8096"
+ azimuth="235"
+ elevation="55" />
+ </feSpecularLighting>
+ <feComposite
+ id="feComposite8098"
+ in2="fbSourceGraphic"
+ operator="atop"
+ result="result2"
+ in="result1" />
+ <feComposite
+ id="feComposite8100"
+ in2="result2"
+ k3="1"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic"
+ k1="0"
+ k4="0" />
+ <feComposite
+ id="feComposite8102"
+ in2="SourceGraphic"
+ operator="over"
+ in="result4"
+ result="result9" />
+ <feBlend
+ id="feBlend8104"
+ in2="result2"
+ mode="multiply" />
+ </filter>
+ <filter
+ id="filter8106"
+ inkscape:label="In and Out"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Inner colorized shadow, outer black shadow"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8108"
+ result="result0"
+ in="SourceAlpha"
+ stdDeviation="4" />
+ <feOffset
+ id="feOffset8110"
+ dx="5"
+ dy="5"
+ result="result4" />
+ <feComposite
+ id="feComposite8112"
+ in2="result4"
+ in="SourceGraphic"
+ operator="xor"
+ result="result3" />
+ </filter>
+ <filter
+ id="filter3632"
+ inkscape:label="Inner Shadow"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur3634"
+ stdDeviation="4"
+ result="result8" />
+ <feOffset
+ id="feOffset3636"
+ dx="4"
+ dy="4"
+ result="result11" />
+ <feComposite
+ id="feComposite3638"
+ in2="result11"
+ result="result6"
+ in="SourceGraphic"
+ operator="in" />
+ <feFlood
+ id="feFlood3640"
+ result="result10"
+ in="result6"
+ flood-opacity="1"
+ flood-color="rgb(0,0,0)" />
+ <feBlend
+ id="feBlend3642"
+ in2="result10"
+ mode="normal"
+ in="result6"
+ result="result12" />
+ <feComposite
+ id="feComposite3644"
+ in2="SourceGraphic"
+ result="result2"
+ operator="in" />
+ </filter>
+ <filter
+ id="filter2855"
+ inkscape:label="Cutout"
+ x="0"
+ y="0"
+ width="1"
+ height="1"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Drop shadow under the cut-out of the shape"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur2857"
+ in="SourceAlpha"
+ stdDeviation="4.2" />
+ <feOffset
+ id="feOffset2859"
+ dy="5"
+ dx="5"
+ result="result91" />
+ <feComposite
+ id="feComposite2861"
+ in2="result91"
+ operator="out"
+ in="SourceGraphic" />
+ </filter>
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.020055,0,0,1.5515391,-441.05897,-113.20995)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601-1">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603-5" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605-9" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-8" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient3607-1"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)" />
+ <inkscape:perspective
+ id="perspective2895-6"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-85"
+ 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" />
+ <linearGradient
+ id="linearGradient85406">
+ <stop
+ id="stop85402"
+ offset="0"
+ style="stop-color:#2d2d2d;stop-opacity:1" />
+ <stop
+ id="stop85404"
+ offset="1"
+ style="stop-color:#121212;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2305"
+ id="linearGradient2299"
+ x1="64.7089"
+ y1="16.90979"
+ x2="64.792068"
+ y2="100"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="65"
+ inkscape:cy="50"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer1"
+ inkscape:snap-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer64"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="100"
+ width="130"
+ id="rect8114"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="440"
+ height="100"
+ x="-440"
+ y="0" />
+ <rect
+ y="-113"
+ x="-440"
+ height="141.06326"
+ width="23"
+ id="rect3597-4"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#666666;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -441.86208,16.137925 v 83.72415 H 137.3975 v -83.72415 z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818-5"
+ width="130"
+ height="100"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer65"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ y="0"
+ x="0"
+ height="18"
+ width="130"
+ id="rect8114-2"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.42426407" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:none"
+ id="rect2818-5-2"
+ width="130"
+ height="100"
+ x="-7.8975163"
+ y="-0.36207005" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient2299);fill-opacity:1;stroke:none;stroke-width:0.47168142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0,17.00001 V 100 H 130 V 17 Z"
+ id="rect2818-6"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="txt">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-53.291466"
+ y="-83.387466"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-53.291466"
+ y="-83.387466"
+ id="tspan2289">Compositor, bottom right.</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot910"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:16px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion912"><rect
+ id="rect914"
+ width="280.26678"
+ height="163.66324"
+ x="-56.994549"
+ y="-30.198557" /></flowRegion><flowPara
+ id="flowPara916"></flowPara></flowRoot> </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="center_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/center_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="31.300082"
+ inkscape:cx="0.60486688"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11"
+ height="4.25"
+ x="6.5"
+ y="-14.25"
+ ry="0"
+ transform="matrix(0,1,-1,0,0,0)" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-37.821667"
+ y="-7.9919901" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="channel.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/channel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.916667"
+ inkscape:cx="-5.139442"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 6,6 0,1.0560928 5.329609,8.0967122 0,4.847195 1.307263,0 0,-4.847195 L 17.96648,7.0560928 18,6 12.636872,6 11.329609,6 6,6 z m 1.6759777,1.0560928 3.6536313,0 0,6.0928432 -3.6536313,-6.0928432 z m 4.9608943,0 3.854748,0 -3.854748,6.0928432 0,-6.0928432 z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccccccccccccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-46.110477"
+ y="-12.61303" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="channel_position.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/channel_position.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient5681-21"
+ cx="-159.70334"
+ cy="259.60919"
+ fx="-159.70334"
+ fy="259.60919"
+ r="5.0000005"
+ gradientTransform="matrix(1.3825123,0.01221178,-0.01098784,1.2439496,181.86443,-280.79733)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient5849">
+ <stop
+ id="stop5845"
+ offset="0"
+ style="stop-color:#ff1717;stop-opacity:1;" />
+ <stop
+ id="stop5847"
+ offset="1"
+ style="stop-color:#650000;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient871"
+ cx="33.7066"
+ cy="87.5"
+ fx="33.7066"
+ fy="87.5"
+ r="15.890625"
+ gradientTransform="matrix(1.5373507,0,0,1.1465093,-35.485147,-75.319564)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.161235"
+ inkscape:cx="42.372881"
+ inkscape:cy="-8.6624073"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-linejoin:round;stroke-opacity:1"
+ d="m 9.75,6.78125 v 36.4375 L 24.590042,32.40625 V 18 Z M 28.819916,18 V 32.40625 H 41.53125 V 18 Z"
+ id="rect2820"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ style="display:inline;fill:url(#radialGradient5681-21);fill-opacity:1;stroke:#aa0000;stroke-width:1.09788311;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -48.806993,37.849343 v 4.16849 h 5.1711 l 4.731021,3.68751 v -10.9022 l -4.731021,3.0462 z"
+ id="path2928-3-5-7-3"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient871);fill-opacity:1;stroke:none;stroke-linejoin:round;stroke-opacity:1"
+ d="m 9.1093745,6.78125 v 36.4375 L 23.949418,32.40625 V 18 Z M 28.179292,18 V 32.40625 H 40.890625 V 18 Z"
+ id="rect2820-0-6"
+ sodipodi:nodetypes="cccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="17"
+ sodipodi:docname="check.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/check.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.
+Usage is unknown.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ y2="23.494934"
+ x2="45.612747"
+ y1="23.494934"
+ x1="5"
+ gradientTransform="matrix(0.707108,-0.707108,0.707108,0.707108,-10.75536,24.49377)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4911"
+ xlink:href="#linearGradient2239-0"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2239-0">
+ <stop
+ style="stop-color:#cee14b;stop-opacity:1;"
+ offset="0"
+ id="stop2241-5" />
+ <stop
+ id="stop2243-6"
+ offset="1"
+ style="stop-color:#727e0a;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(1.0408166,0,0,0.88469308,3.6787555,30.979107)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.815"
+ inkscape:cx="-25.927703"
+ inkscape:cy="24.950495"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer45"
+ borderlayer="false"
+ inkscape:showpageshadow="false" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(1.000004,-33.435805)" />
+ <g
+ id="layer1-7"
+ inkscape:label="Layer 1"
+ transform="translate(1.000004,-33.435805)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(1.000004,-33.435805)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer44"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,-33)">
+ <g
+ id="g3079"
+ transform="translate(1.148518,-0.43290965)">
+ <g
+ inkscape:label="Shadow"
+ id="layer2-9" />
+ <g
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ inkscape:label="Error Box"
+ id="layer3-9" />
+ <g
+ inkscape:label="Glossy Shine"
+ id="layer4">
+ <g
+ transform="matrix(0.986431,0,0,0.986431,0.571463,-2.899481)"
+ id="g4906">
+ <path
+ style="fill:url(#linearGradient4911);fill-opacity:1;fill-rule:evenodd;stroke:#727e0a;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 47.413326,19.106757 38.980533,10.667614 19.643086,30.005066 8.5242589,18.886238 0.0882903,27.322205 19.643086,46.877 Z"
+ id="path2787-1"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none"
+ d="M 45.242378,18.947394 38.92375,12.88014 19.719855,31.318325 8.510661,20.519364 1.75,27.235328 c 0,0 4.8274712,5.447773 9.639862,7.716281 3.722405,1.7547 5.761893,2.041874 9.562258,1.552521 3.731352,-0.480467 6.448752,-1.974084 8.303663,-2.960828 2.956351,-1.57267 15.986595,-14.595908 15.986595,-14.595908 z"
+ id="path6779-4"
+ sodipodi:nodetypes="cccccszsc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#9db029;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 45.524529,19.120462 38.948338,12.537922 19.643086,31.843178 8.5242599,20.724349 1.9733297,27.324997 19.647931,44.997063 Z"
+ id="path2263-9"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer45"
+ inkscape:label="Layer 2"
+ transform="translate(0,-33)">
+ <path
+ style="display:inline;fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.59962499;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 25.23616,36.91869 c 0,0 -2.32428,-1.391331 -3.602392,-3.618898 l -8.260732,8.690893 c 0,0 -2.741373,-2.948535 -4.7498352,-5.139584 0,0 -1.2819339,2.044909 -3.8593698,3.617397 4.5079202,2.969117 5.984889,4.589323 8.609205,9.23171 z"
+ id="path2787-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <image
+ y="11.478355"
+ x="-54.792065"
+ id="image978"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAARCAYAAADKZhx3AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH3wUVEBUbIW2gDwAAABl0RVh0Q29tbWVudABDcmVhdGVk IHdpdGggR0lNUFeBDhcAAABlSURBVEjH7dIxDsAwCANA05/xcj+NTpWilKEQSjvEG1GkkxOAwpB8 fPf4Ak3BHhBFAUBWYFW9zS3wmAiaemoPuM5IGjoytidpETizXFbRVBZhmecWePpnebWxh0fRiuUy 7Oz8LSe0qjnwznHGhAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="15.111111"
+ width="26.666668" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-55.79015"
+ y="8.0294304"
+ id="text983"><tspan
+ sodipodi:role="line"
+ id="tspan981"
+ x="-55.79015"
+ y="8.0294304">check</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-32.009979"
+ y="-21.197666"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-32.009979"
+ y="-21.197666">see: recordpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-19.705694"
+ y="7.7735119"
+ id="text995"><tspan
+ sodipodi:role="line"
+ id="tspan993"
+ x="-19.705694"
+ y="7.7735119">Usage is unknown.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="checkbox_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.8636363"
+ inkscape:cx="-90.391123"
+ inkscape:cy="16.563197"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3029">
+ <stop
+ id="stop3031"
+ offset="0"
+ style="stop-color:#ff2a2a;stop-opacity:1;" />
+ <stop
+ id="stop3033"
+ offset="1"
+ style="stop-color:#a30f0f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3029"
+ id="linearGradient9911"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39475858,0,0,0.45213434,-41.483747,-9.4139458)"
+ x1="19.025675"
+ y1="45.782787"
+ x2="33.484581"
+ y2="11.950836" />
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700-5"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-5">
+ <stop
+ id="stop3702-1"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704-7"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(1,0,0,0.84999901,-1e-7,1.7250125)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient53126"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700-5"
+ id="linearGradient53128"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059-4"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(0.9866706,0,0,0.83866899,0.26771637,2.1060774)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.98787105,0,0,0.8396894,0.25465742,1.014278)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2"
+ xlink:href="#linearGradient51055"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-2-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.80773389,0,0,1.2353577,-25.450698,-1.102312)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer8"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="1.3262033e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4279"
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3639"
+ transform="matrix(1.0397134,0,0,1.003199,44.383092,7.8935033)">
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2787"
+ d="m -22.76693,-0.77512484 -3.328917,-3.81562636 -7.633623,8.7431259 -4.389253,-5.02720384 -3.330171,3.81419044 7.719424,8.8413947 z"
+ style="fill:url(#linearGradient9911);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccszsc"
+ id="path6779"
+ d="m -23.62393,-0.84717844 -2.494333,-2.74321376 -7.580902,8.3365369 -4.424926,-4.88258144 -2.668829,3.03651794 c 0,0 1.905686,2.4631255 3.805419,3.4887955 1.469451,0.79336 2.274556,0.923202 3.774783,0.701948 1.472983,-0.217235 2.545701,-0.89255 3.277942,-1.338692 1.167045,-0.711058 6.310846,-6.59931114 6.310846,-6.59931114 z"
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2263"
+ d="m -23.512549,-0.76892834 -2.596007,-2.97619236 -7.620914,8.7285694 -4.389252,-5.02720474 -2.586036,2.98437974 6.9772,7.9901483 z"
+ style="fill:none;stroke:#ff0000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer95"
+ inkscape:label="Layer g1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.57611012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 20.71201,7.1158985 17.25089,3.2880665 9.3141099,12.059162 4.7505449,7.0158755 1.2881209,10.842267 9.3141099,19.711946 Z"
+ id="path2787-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer9"
+ inkscape:label="Layer 2"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="1e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870-3"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <g
+ id="g4279-4"
+ transform="matrix(0.95238091,0,0,0.95238091,1,0.99999967)">
+ <rect
+ style="fill:url(#linearGradient53126);fill-opacity:1;stroke:none"
+ id="rect3685-1"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687-2"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient53128);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911-5"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.5684309;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 20.703648,7.7366671 c 0,0 -2.203365,-1.3189503 -3.414986,-3.430633 L 9.4576755,12.544804 c 0,0 -2.59876,-2.7951455 -4.5027372,-4.8722101 0,0 -1.2152443,1.9385276 -3.6585951,3.4292131 4.2734065,2.814655 5.6735393,4.350574 8.1613323,8.751451 z"
+ id="path2787-7-3"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="yellow">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-56.047256"
+ y="-19.692158"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-56.047256"
+ y="-19.692158">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-2-6);fill-opacity:1;stroke:#141414;stroke-width:0.99891955;stroke-opacity:1"
+ id="rect3597-7-9-9"
+ width="21.00108"
+ height="21.00108"
+ x="0.49946022"
+ y="0.49946022" />
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4-2);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.56912255;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 20.715454,6.6517178 c 0,0 -2.206046,-1.32056 -3.419142,-3.4348098 l -7.8405142,8.24879 c 0,0 -2.6019211,-2.7985402 -4.508215,-4.8781302 0,0 -1.216723,1.94088 -3.6630474,3.4333802 4.2786074,2.81808 5.6804433,4.35587 8.1712624,8.7621 z"
+ id="path2787-7-3-6"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="checkbox_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.7066478"
+ inkscape:cx="-36.28846"
+ inkscape:cy="5.4453634"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: checkbox...</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3029">
+ <stop
+ id="stop3031"
+ offset="0"
+ style="stop-color:#ff2a2a;stop-opacity:1;" />
+ <stop
+ id="stop3033"
+ offset="1"
+ style="stop-color:#a30f0f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3029"
+ id="linearGradient9911"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39475858,0,0,0.45213434,-41.483747,-9.4139458)"
+ x1="19.025675"
+ y1="45.782787"
+ x2="33.484581"
+ y2="11.950836" />
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716-1"
+ xlink:href="#linearGradient3708-0"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706-9"
+ xlink:href="#linearGradient3700-4"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-4"
+ inkscape:collect="always">
+ <stop
+ id="stop3702-6"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704-9"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708-0"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-5"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-9"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708-0"
+ id="linearGradient51042"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700-4"
+ id="linearGradient51044"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(1,0,0,0.84999901,-6.5509876e-5,1.7250123)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059-4"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(0.98640891,0,0,0.83844656,0.27340893,1.9721273)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.98787105,0,0,0.8396894,0.25465954,1.014274)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2-9-4-0"
+ xlink:href="#linearGradient51055"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4-0-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.8077339,0,0,1.2353577,-25.450688,-1.102336)" />
+ </defs>
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ y="1.3262033e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3705"
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)">
+ <rect
+ style="fill:url(#linearGradient3716-1);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706-9);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3639"
+ transform="matrix(1.0397134,0,0,1.003199,44.383092,7.8935033)">
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2787"
+ d="m -22.76693,-0.77512484 -3.328917,-3.81562636 -7.633623,8.7431259 -4.389253,-5.02720384 -3.330171,3.81419044 7.719424,8.8413947 z"
+ style="fill:url(#linearGradient9911);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccszsc"
+ id="path6779"
+ d="m -23.62393,-0.84717844 -2.494333,-2.74321376 -7.580902,8.3365369 -4.424926,-4.88258144 -2.668829,3.03651794 c 0,0 1.905686,2.4631255 3.805419,3.4887955 1.469451,0.79336 2.274556,0.923202 3.774783,0.701948 1.472983,-0.217235 2.545701,-0.89255 3.277942,-1.338692 1.167045,-0.711058 6.310846,-6.59931114 6.310846,-6.59931114 z"
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2263"
+ d="m -23.512549,-0.76892834 -2.596007,-2.97619236 -7.620914,8.7285694 -4.389252,-5.02720474 -2.586036,2.98437974 6.9772,7.9901483 z"
+ style="fill:none;stroke:#ff0000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.57611012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 20.711944,7.1158985 17.250824,3.288066 9.3140445,12.059161 4.7504793,7.0158753 1.2880559,10.842267 9.3140445,19.711946 Z"
+ id="path2787-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="Layer 2"
+ style="display:none">
+ <rect
+ y="1e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870-6"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <g
+ id="g3705-2"
+ transform="matrix(0.95238091,0,0,0.95238091,1,0.99999967)">
+ <rect
+ style="fill:url(#linearGradient51042);fill-opacity:1;stroke:none"
+ id="rect3685-7"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687-0"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient51044);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911-7"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.56828016;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 20.70392,7.6012239 c 0,0 -2.20278,-1.3186002 -3.41408,-3.429723 L 9.4609303,12.408086 c 0,0 -2.5980707,-2.7944051 -4.5015421,-4.8709181 0,0 -1.214922,1.938013 -3.6576249,3.4283031 4.2722723,2.813908 5.6720343,4.34942 8.159167,8.74913 z"
+ id="path2787-7-9"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 3">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-68.049599"
+ y="-12.815492"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-68.049599"
+ y="-12.815492">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4-0-9);fill-opacity:1;stroke:#141414;stroke-width:0.99891955;stroke-opacity:1"
+ id="rect3597-2-3-0-9-6"
+ width="21.00108"
+ height="21.00108"
+ x="0.49946022"
+ y="0.49946022" />
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-1-3-2"
+ cx="11"
+ cy="11.000011"
+ r="6" />
+ <path
+ style="display:inline;fill:url(#radialGradient51059-4-2-9-4-0);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.56912255;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 20.715454,6.651714 c 0,0 -2.206046,-1.32056 -3.419142,-3.43481 l -7.8405129,8.2488 c 0,0 -2.6019211,-2.79855 -4.5082146,-4.87814 0,0 -1.216723,1.94088 -3.663047,3.43338 4.278607,2.81808 5.6804425,4.35587 8.1712616,8.7621 z"
+ id="path2787-7-3-6-8-1-5"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="checkbox_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.3086965"
+ inkscape:cx="-69.883211"
+ inkscape:cy="-69.165134"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="-6.3280063,-49.701216"
+ orientation="1,0"
+ id="guide1868"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="135.09852,-3.626806"
+ orientation="0,1"
+ id="guide1661"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3029">
+ <stop
+ id="stop3031"
+ offset="0"
+ style="stop-color:#ff2a2a;stop-opacity:1;" />
+ <stop
+ id="stop3033"
+ offset="1"
+ style="stop-color:#a30f0f;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3029"
+ id="linearGradient9911"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39475858,0,0,0.45213434,-41.483747,-9.4139458)"
+ x1="19.025675"
+ y1="45.782787"
+ x2="33.484581"
+ y2="11.950836" />
+ <linearGradient
+ id="linearGradient3700-5">
+ <stop
+ id="stop3702-1"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704-7"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716-0"
+ xlink:href="#linearGradient3708-8"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-3"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-7"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.84999901,-1e-7,1.7250125)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059"
+ xlink:href="#linearGradient51055"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ id="stop51051"
+ offset="0"
+ style="stop-color:#27ae60;stop-opacity:1" />
+ <stop
+ style="stop-color:#196634;stop-opacity:1"
+ offset="1"
+ id="stop51053" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708-8"
+ id="linearGradient1858"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700-5"
+ id="linearGradient1860"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-32"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.81159897,0,0,1.2412692,-47.625123,-23.160247)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="1.3262033e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4820"
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)">
+ <rect
+ style="fill:url(#linearGradient3716-0);fill-opacity:1;stroke:none"
+ id="rect3685-4"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911-7"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <g
+ transform="translate(-6.244156,11.285533)"
+ inkscape:label="Shadow"
+ id="layer2-8" />
+ <g
+ transform="translate(-6.244156,11.285533)"
+ inkscape:label="Layer 1"
+ id="layer1-5" />
+ <g
+ transform="translate(-6.244156,11.285533)"
+ inkscape:label="Error Box"
+ id="layer3-8" />
+ <g
+ id="layer8"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(6.75584,25.767948)">
+ <rect
+ y="1.3262033e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870-2"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4279"
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)">
+ <rect
+ style="fill:url(#linearGradient1858);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient1860);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3639"
+ transform="matrix(1.0397134,0,0,1.003199,44.383092,7.8935033)">
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2787"
+ d="m -22.76693,-0.77512484 -3.328917,-3.81562636 -7.633623,8.7431259 -4.389253,-5.02720384 -3.330171,3.81419044 7.719424,8.8413947 z"
+ style="fill:url(#linearGradient9911);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccszsc"
+ id="path6779"
+ d="m -23.62393,-0.84717844 -2.494333,-2.74321376 -7.580902,8.3365369 -4.424926,-4.88258144 -2.668829,3.03651794 c 0,0 1.905686,2.4631255 3.805419,3.4887955 1.469451,0.79336 2.274556,0.923202 3.774783,0.701948 1.472983,-0.217235 2.545701,-0.89255 3.277942,-1.338692 1.167045,-0.711058 6.310846,-6.59931114 6.310846,-6.59931114 z"
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path2263"
+ d="m -23.512549,-0.76892834 -2.596007,-2.97619236 -7.620914,8.7285694 -4.389252,-5.02720474 -2.586036,2.98437974 6.9772,7.9901483 z"
+ style="fill:none;stroke:#ff0000;stroke-width:0.56409878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="layer95"
+ inkscape:label="Layer g1"
+ style="display:none"
+ transform="translate(6.75584,25.767948)">
+ <path
+ style="fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.57611012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 20.71201,7.1158985 17.25089,3.2880665 9.3141099,12.059162 4.7505449,7.0158755 1.2881209,10.842267 9.3141099,19.711946 Z"
+ id="path2787-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-6.6751852"
+ y="-7.8908319"
+ id="text2021-3"><tspan
+ sodipodi:role="line"
+ id="tspan2019-1"
+ x="-6.6751852"
+ y="-7.8908319">checkbox_dn</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43-32);fill-opacity:1;stroke:#141414;stroke-width:0.89842093;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-69"
+ width="21.10158"
+ height="21.10158"
+ x="-21.550789"
+ y="-21.550789"
+ transform="scale(-1)" />
+ <rect
+ y="-20.75069"
+ x="-20.75069"
+ height="19.501379"
+ width="19.501379"
+ id="rect3597-5-7-9-4-8-9-8-3-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.49862134;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <circle
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-9"
+ cx="11"
+ cy="11"
+ r="6" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-65.152908"
+ y="-49.458897"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-65.152908"
+ y="-49.458897">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="checkbox_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.5853275"
+ inkscape:cx="1.5983588"
+ inkscape:cy="1.9681297"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5" />
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700-8"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3702-0"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704-3"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-20"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.81159922,0,0,1.2412691,-25.625131,-1.160267)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="1.3262033e-06"
+ x="0"
+ height="22"
+ width="22"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g5359"
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:0.9523809"
+ id="rect3685-1-9-9-2"
+ width="19.298246"
+ height="19.298246"
+ x="-7.398654"
+ y="27.060816"
+ ry="1.383938" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-20);fill-opacity:1;stroke:#141414;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-3"
+ width="21.10158"
+ height="21.10158"
+ x="0.44921017"
+ y="0.44921017" />
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-0"
+ cx="11"
+ cy="11"
+ r="6" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-67.690765"
+ y="-29.688429"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-67.690765"
+ y="-29.688429">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="checkbox_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/checkbox_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.5853275"
+ inkscape:cx="-20.532481"
+ inkscape:cy="9.3335833"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5" />
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.80786921,0,0,1.2355645,-25.45681,-1.1043051)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(-12.999996,-14.482415)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ style="display:none" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-80.550247"
+ y="13.430824"
+ id="text1373"><tspan
+ sodipodi:role="line"
+ id="tspan1371"
+ x="-80.550247"
+ y="13.430824">checkbox_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-69.536438"
+ y="-34.038933"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-69.536438"
+ y="-34.038933">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-6);fill-opacity:1;stroke:#141414;stroke-width:0.99540019;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-4"
+ width="21.004601"
+ height="21.004601"
+ x="0.49769974"
+ y="0.49769974" />
+ <rect
+ y="1.2493105"
+ x="1.2493105"
+ height="19.501379"
+ width="19.501379"
+ id="rect3597-5-7-9-4-8-9-8-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.49862134;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="clip_icon.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/clip_icon.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1242">clip_icon</title>
+ <metadata
+ id="metadata8">
+ <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>clip_icon</dc:title>
+ <dc:date>2018-08-20</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>Kompass. Klare, einfache Symbole. – Verschiebt die Footage.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="radialGradient910"
+ cx="20.374264"
+ cy="76.516502"
+ fx="20.374264"
+ fy="76.516502"
+ r="28.913864"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.7044845"
+ inkscape:cx="23.6214"
+ inkscape:cy="29.020916"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g834"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="18.8317,31.1168"
+ inkscape:measure-end="31.1168,18.8721"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="28.663386,3"
+ orientation="0,1"
+ id="guide1226"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="55.373756,47"
+ orientation="0,1"
+ id="guide1228"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="3,-9.8225231"
+ orientation="1,0"
+ id="guide1230"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="47,13.211581"
+ orientation="1,0"
+ id="guide1232"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path3594-5"
+ d="m 9.5341035,18.882129 -6.5960336,-4.690217 33.6120451,0.204001 8.776771,4.486216 -8.776771,4.690295 10.511701,3.87492 -10.511701,5.09814 10.511701,3.262601 H 9.5341035 L 3.1325147,32.545484 9.5341035,27.447344 3.134188,23.572424 Z"
+ style="fill:none;stroke:#0b331e;stroke-width:3.747401;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:#27ae60;stroke-width:1.31402373;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 9.5341035,18.882129 -6.5960336,-4.690217 33.6120451,0.204001 8.776771,4.486216 -8.776771,4.690295 10.511701,3.87492 -10.511701,5.09814 10.511701,3.262601 H 9.5341035 L 3.1325147,32.545484 9.5341035,27.447344 3.134188,23.572424 Z"
+ id="path2818-6"
+ sodipodi:nodetypes="ccccccccccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Kompass">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g834"
+ id="use840"
+ transform="rotate(-90,25,24.999999)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g834"
+ id="use844"
+ transform="rotate(90,25,25)"
+ width="100%"
+ height="100%" />
+ <circle
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:3;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path972"
+ cx="35.355339"
+ cy="3.5527137e-15"
+ r="6.4903884"
+ transform="rotate(45)" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.34016037;marker:none"
+ d="m 29.923911,20.641021 1.719392,6.052535 8.488404,-16.260331 z"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.34016037;marker:none"
+ d="M 29.358979,20.076087 23.306445,18.356696 39.566775,9.868291 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-1"
+ sodipodi:nodetypes="cccc" />
+ <circle
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:2.943;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path972-3"
+ cx="35.355339"
+ cy="3.5527137e-15"
+ r="23.537851"
+ transform="rotate(45)" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path1212"
+ d="M 20.07609,29.358979 18.356697,23.306445 9.8682932,39.566775 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.34016037;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path1214"
+ d="m 20.641021,29.923914 6.052534,1.719391 -16.26033,8.488405 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.34016037;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98352522;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2198-0"
+ width="15.087804"
+ height="0.79892999"
+ x="5.9121928"
+ y="34.955872"
+ transform="rotate(-45)" />
+ <rect
+ transform="rotate(135)"
+ y="-35.754807"
+ x="5.9121923"
+ height="0.79892999"
+ width="15.087804"
+ id="rect1216"
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98352522;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ id="g834"
+ transform="matrix(1.389508,0,0,1.389508,-35.094473,-12.834587)">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.99262816"
+ id="rect5024"
+ width="8.4496765"
+ height="1.4192789"
+ x="49.081684"
+ y="26.451071" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.99262816"
+ d="m 55.012177,23.228765 4.069507,3.999999 -4.069507,4.000001 -0.879894,-0.864864 3.189614,-3.135137 -3.189614,-3.08108 z"
+ id="path5052"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g834"
+ id="use842"
+ transform="matrix(-1,0,0,1,50,2.0238001e-7)"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="bs"
+ style="display:none">
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26884454;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1032-3"
+ width="0.80000001"
+ height="11"
+ x="24.600002"
+ y="-50"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26884454;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1032"
+ width="0.80000001"
+ height="11"
+ x="24.6"
+ y="-9.0344088e-09" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26884454;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1032-3-4"
+ width="0.80000001"
+ height="11"
+ x="24.600002"
+ y="-11"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26884454;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1032-0"
+ width="0.80000001"
+ height="11"
+ x="24.6"
+ y="39" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:url(#radialGradient910);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path900"
+ sodipodi:sides="4"
+ sodipodi:cx="20.374264"
+ sodipodi:cy="76.516502"
+ sodipodi:r1="28.913864"
+ sodipodi:r2="11.209674"
+ sodipodi:arg1="0"
+ sodipodi:arg2="0.78539816"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="M 49.288128,76.516502 28.3007,84.442939 20.374264,105.43037 12.447827,84.442939 -8.5396004,76.516502 12.447827,68.590066 20.374264,47.602638 28.3007,68.590066 Z"
+ transform="matrix(0.8240704,0,0,0.82011267,-54.373394,-67.96535)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.48239553"
+ d="m -37.583567,-16.713197 -3.631578,4.470942 1.117408,0.921844 1.722671,-2.074149 v 6.9599196 0.64529 h -7.356274 l 2.095141,-1.70541 -0.931173,-1.106213 -4.516195,3.549098 4.516195,3.641283 0.931173,-1.106212 -2.095141,-1.751502 h 7.356274 v 0.276552 6.95992 l -1.722671,-2.07414798 -1.117408,0.92184298 3.631578,4.470942 3.63158,-4.470942 -1.117408,-0.92184298 -1.769231,2.07414798 v -6.95992 -0.276552 h 7.449393 l -2.095143,1.751502 0.931173,1.106212 4.469636,-3.641283 -4.469636,-3.549098 -0.931173,1.106213 2.095143,1.70541 h -7.449393 v -0.64529 -6.9599196 l 1.769231,2.074149 1.117408,-0.921844 z"
+ id="rect5208" />
+ <circle
+ style="opacity:0.094;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.77781224;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path972-3-6"
+ cx="-50.514557"
+ cy="24.753887"
+ r="22.216692"
+ transform="rotate(45)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="closetip.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/closetip.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: cancel</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ y2="21.527676"
+ x2="94.546799"
+ y1="21.527676"
+ x1="48.907528"
+ gradientTransform="matrix(0,1.000001,-1.000001,0,93.25488,-50.19949)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6943"
+ xlink:href="#linearGradient9647"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient9647">
+ <stop
+ id="stop9649"
+ offset="0"
+ style="stop-color:#fe4747;stop-opacity:1;" />
+ <stop
+ style="stop-color:#c80909;stop-opacity:1;"
+ offset="1"
+ id="stop3219" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.47916733,0,0,0.47916733,33.169499,-18.869846)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient46073">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1;"
+ offset="0"
+ id="stop46071" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1;"
+ offset="1"
+ id="stop46069" />
+ </linearGradient>
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.38396"
+ inkscape:cx="-102.11297"
+ inkscape:cy="16.313559"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer40"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ id="g3077"
+ transform="matrix(0.47484971,0,0,0.4900857,5.1205806,4.6354077)">
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Glossy Shine"
+ id="layer4">
+ <g
+ transform="matrix(0.858316,-0.858316,0.858316,0.858316,-54.908959,66.277556)"
+ id="g6848">
+ <path
+ style="fill:url(#linearGradient6943);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.1000011;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 93.996843,26.44197 v -9.828504 l -17.355398,2e-6 V -0.74193099 l -9.828505,-9.2e-7 10e-7,17.35539791 H 49.457543 l 2e-6,9.828503 17.355396,3e-6 2e-6,17.355394 9.828503,3e-6 -10e-7,-17.355399 z"
+ id="path2787"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="m 93.451391,25.89825 -8.01e-4,-8.74438 -17.340396,-0.0092 -0.02053,-17.33519703 -8.688015,0.0831879 -0.04452,17.24664513 -10.809464,0.02383 c 0,0 3.367913,2.462278 6.722386,3.653778 3.354474,1.191501 4.324472,-1.061284 9.808885,2.105388 5.498224,3.169434 8.018312,2.96676 8.018312,2.96676 l 12.354135,0.0091 z"
+ id="path6779"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#dd5843;stroke-width:1.047791;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 92.93632,25.389772 0.03315,-7.703074 -17.402534,-0.01105 V 0.30981713 l -7.680765,-9.6e-7 10e-7,17.38792683 -17.354794,-0.04419 2e-6,7.72517 17.354792,-0.01104 0.0442,17.410022 7.629065,-0.02209 0.08839,-17.376882 17.288504,0.01105 z"
+ id="path6842"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer41"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient46063);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.63979733;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 28.680114,10.362123 24.637877,6.3198865 17.5,13.457763 10.362122,6.3198865 6.3198853,10.362123 13.457762,17.499999 6.3198853,24.637878 10.362122,28.680113 17.5,21.542238 l 7.137877,7.137874 4.042238,-4.042234 -7.137878,-7.137879 z"
+ id="path2787-9" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-10.067283"
+ y="-25.823168"
+ id="text862"><tspan
+ sodipodi:role="line"
+ id="tspan860"
+ x="-10.067283"
+ y="-25.823168">see: cancel</tspan></text>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="67"
+ height="512"
+ sodipodi:docname="cmeter_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cmeter_bg.png"
+ inkscape:export-xdpi="108"
+ inkscape:export-ydpi="108">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4178">
+ <stop
+ style="stop-color:#141414;stop-opacity:1;"
+ offset="0"
+ id="stop4174" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop4176" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4178"
+ id="linearGradient4180"
+ x1="3.4999999e-07"
+ y1="256"
+ x2="67"
+ y2="256"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.2148438"
+ inkscape:cx="-279.70899"
+ inkscape:cy="256"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer75" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer74"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ style="fill:#4d4d4d"
+ d="M 0,0 H 67 V 512 H 0 Z"
+ id="path2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer75"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient4180);fill-opacity:1;stroke:none"
+ d="M 3.5e-7,-2.9e-6 H 67 V 512 H 3.5e-7 Z"
+ id="path2818-8"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-49.90897"
+ y="-27.951231"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-49.90897"
+ y="-27.951231"
+ id="tspan2289">Compositor meter right.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="color3way_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title826">color3way_up</title>
+ <metadata
+ id="metadata8">
+ <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>color3way_up</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:relation>color3way_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.8686483"
+ inkscape:cx="-23.560341"
+ inkscape:cy="-38.441006"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <image
+ y="1.333334"
+ x="1.333334"
+ id="image858"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL EwAACxMBAJqcGAAAAAd0SU1FB9sJCwYwCyIlMPUAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IFRoZSBHSU1Q72QlbgAAAMRJREFUSMfdlLERwyAMRSUug9BrFDZhAEZhE0ahZxNS4eMICEmpEirO Z97Dkr4Bfn3h2Hjv+9i31tAC2zHc/AIRARFBCKFb4ON8Sul57k4HNJIB3y3HlUUiWeEhBIgx4kcP OGgpBS3wrUAqkcCPgptECmcFJ0mtFaTwq+DW6BtcJDhJJHA2B2tZNv3Q/SosIeJGWPQFu2nRhhEt CdWE0ZxQqQQtcI0ErXCpxH0DP5Ul59zZKZLCJaP6WsEAoILPkvnm/7PeYnCDZiZb/ZQAAAAASUVO RK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-136.37402"
+ y="15.673939"
+ id="text878"><tspan
+ sodipodi:role="line"
+ id="tspan876"
+ x="-136.37402"
+ y="15.673939">color3way_dn</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="color3way_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title826">color3way_up</title>
+ <metadata
+ id="metadata8">
+ <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>color3way_up</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:relation>color3way_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.8853085"
+ inkscape:cx="-57.690983"
+ inkscape:cy="-44.250477"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <image
+ y="1.333334"
+ x="1.333334"
+ id="image847"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL EwAACxMBAJqcGAAAAAd0SU1FB9sJCwYvB+bJckAAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IFRoZSBHSU1Q72QlbgAAAMlJREFUSMfdlLERwyAMRSXOg9AxDnvQMAsNezAOHZuQihxHEEhKlaji fOY9LPQN8OuFY5Fz7mMdQkANbMd45hdqrQAAEGPsKSWUwsf+Usr7uaE2xBi7Br6WObWFI1nhpRRo reHHHZygVLtu8K2AK+HAScFNwoUfBZTEOQdc+FVwu+gbnCWgJBz4MQdrW9by3st+FZoQnUaY9QW7 aZGGETUJlYRRnVCuBDVwiQS1cK7EfAOn2mKt7ccp4sI5o/qsYAAQwWfJfPL/qRcTbtJ9EEDMAAAA AABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-136.6306"
+ y="17.462416"
+ id="text874"><tspan
+ sodipodi:role="line"
+ id="tspan872"
+ x="-136.6306"
+ y="17.462416">color3way_hi</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="color3way_point.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title826">color3way_up</title>
+ <metadata
+ id="metadata8">
+ <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>color3way_up</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:relation>color3way_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.8686483"
+ inkscape:cx="-75.555106"
+ inkscape:cy="-42.798109"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <image
+ y="1.333334"
+ x="1.333334"
+ id="image869"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJCgchF9yDQvgAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAHVJREFUSMfVVUEOwCAIs/z/z+62LFk2 SoFNORnTVpGCY+weuKznw34kbhpGABXxMyxKiGJBACGI440cOcTFykT2IhBTp7OEWjxWBxmHMBpI 2tDl25ej4pcnai1yq01bG611VLQOu1ncJ/D6ABV2twLx7De7eBzSMB0aJesY6wAAAABJRU5ErkJg gg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="color3way_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title826">color3way_up</title>
+ <metadata
+ id="metadata8">
+ <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>color3way_up</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ <dc:relation>color3way_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.8853085"
+ inkscape:cx="-22.107973"
+ inkscape:cy="-8.2317568"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <image
+ y="0"
+ x="0"
+ id="image836"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL
+EwAACxMBAJqcGAAAAAd0SU1FB9sJCwYuE+UIl3wAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IFRoZSBHSU1Q72QlbgAAAMBJREFUSMfdlMENBCEIRcFMId4thU4syE4oxbuduCcnxogCe9rlZMz4
+nkP4Avx64ViUUvpY55zRA9sxnvkDZgYAACLqzIxW+Dhfa333g3SAiLoHLrZIgt7+ZIXXWqG1hluB
+VXKDbwVaiQYuCm4SLfwokCREBFr4VXCbphtcJZAkGvgxB2tb1kop2Z4KT4g0OQnWEFkTj56EWsLo
+TqhWgh64RYJeuFYSvoFLbYkx9uMUaeGaUX1WMACY4LNkvvn/1AdBZtNd0n3C4wAAAABJRU5ErkJg
+gg==
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <image
+ y="33.442211"
+ x="-38.476814"
+ id="image847"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL
+EwAACxMBAJqcGAAAAAd0SU1FB9sJCwYvB+bJckAAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IFRoZSBHSU1Q72QlbgAAAMlJREFUSMfdlLERwyAMRSXOg9AxDnvQMAsNezAOHZuQihxHEEhKlaji
+fOY9LPQN8OuFY5Fz7mMdQkANbMd45hdqrQAAEGPsKSWUwsf+Usr7uaE2xBi7Br6WObWFI1nhpRRo
+reHHHZygVLtu8K2AK+HAScFNwoUfBZTEOQdc+FVwu+gbnCWgJBz4MQdrW9by3st+FZoQnUaY9QW7
+aZGGETUJlYRRnVCuBDVwiQS1cK7EfAOn2mKt7ccp4sI5o/qsYAAQwWfJfPL/qRcTbtJ9EEDMAAAA
+AABJRU5ErkJggg==
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ <image
+ y="67.527473"
+ x="-39.760361"
+ id="image858"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL
+EwAACxMBAJqcGAAAAAd0SU1FB9sJCwYwCyIlMPUAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IFRoZSBHSU1Q72QlbgAAAMRJREFUSMfdlLERwyAMRSUug9BrFDZhAEZhE0ahZxNS4eMICEmpEirO
+Z97Dkr4Bfn3h2Hjv+9i31tAC2zHc/AIRARFBCKFb4ON8Sul57k4HNJIB3y3HlUUiWeEhBIgx4kcP
+OGgpBS3wrUAqkcCPgptECmcFJ0mtFaTwq+DW6BtcJDhJJHA2B2tZNv3Q/SosIeJGWPQFu2nRhhEt
+CdWE0ZxQqQQtcI0ErXCpxH0DP5Ul59zZKZLCJaP6WsEAoILPkvnm/7PeYnCDZiZb/ZQAAAAASUVO
+RK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ <image
+ y="101.47012"
+ x="-38.904663"
+ id="image869"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJCgchF9yDQvgAAAAddEVYdENv
+bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAHVJREFUSMfVVUEOwCAIs/z/z+62LFk2
+SoFNORnTVpGCY+weuKznw34kbhpGABXxMyxKiGJBACGI440cOcTFykT2IhBTp7OEWjxWBxmHMBpI
+2tDl25ej4pcnai1yq01bG611VLQOu1ncJ/D6ABV2twLx7De7eBzSMB0aJesY6wAAAABJRU5ErkJg
+gg==
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="21.333332"
+ width="21.333332" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-148.39478"
+ y="47.816902"
+ id="text874"><tspan
+ sodipodi:role="line"
+ id="tspan872"
+ x="-148.39478"
+ y="47.816902">color3way_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-153.51196"
+ y="84.08046"
+ id="text878"><tspan
+ sodipodi:role="line"
+ id="tspan876"
+ x="-153.51196"
+ y="84.08046">color3way_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-173.66821"
+ y="120.26589"
+ id="text882"><tspan
+ sodipodi:role="line"
+ id="tspan880"
+ x="-173.66821"
+ y="120.26589">color3way_point</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="3.7080181"
+ y="65.358681"
+ id="text886"><tspan
+ sodipodi:role="line"
+ id="tspan884"
+ x="3.7080181"
+ y="65.358681">Backup.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="107"
+ height="20"
+ sodipodi:docname="column_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/column_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3620">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3622" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3624" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3604">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3606" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3608" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3653">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3655" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3657" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3615">
+ <stop
+ id="stop3617"
+ offset="0"
+ style="stop-color:#ececec;stop-opacity:1;" />
+ <stop
+ id="stop3619"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3686">
+ <stop
+ style="stop-color:#ececec;stop-opacity:1;"
+ offset="0"
+ id="stop3688" />
+ <stop
+ style="stop-color:#ececec;stop-opacity:0;"
+ offset="1"
+ id="stop3690" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="radialGradient3782"
+ cx="49.101032"
+ cy="-31.598446"
+ fx="49.101032"
+ fy="-31.598446"
+ r="49.234169"
+ gradientTransform="matrix(2.0256175,-0.27467184,0.030448,0.22454436,-58.382349,22.705345)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="linearGradient3613"
+ x1="77.445824"
+ y1="2.0967469"
+ x2="79.800629"
+ y2="16.35424"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3616"
+ x1="57.757904"
+ y1="19.473732"
+ x2="57.889473"
+ y2="9.980258"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3620"
+ id="linearGradient3626"
+ x1="52.776062"
+ y1="-7.6497173"
+ x2="52.776382"
+ y2="11.690629"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1004">
+ <stop
+ id="stop1002"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.0970971,0,0,1.1485015,-131.39024,-1.2514156)" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:zoom="7.4536189"
+ inkscape:cx="50.308969"
+ inkscape:cy="10.019742"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:snap-to-guides="true"
+ inkscape:snap-grids="true"
+ inkscape:snap-center="true"
+ inkscape:snap-bbox="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3628"
+ width="107"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ y="0.49698669"
+ x="0.53883862"
+ height="18.966543"
+ width="108.29021"
+ id="rect3607"
+ style="fill:url(#linearGradient3616);fill-opacity:1;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ style="fill:none;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3605"
+ width="108.29021"
+ height="18.966543"
+ x="0.53883862"
+ y="0.49698669" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="1.6439853"
+ y="-17.760769"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="1.6439853"
+ y="-17.760769">see: recordpatch_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4-4);fill-opacity:1;stroke:#141414;stroke-width:0.47546974;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5-5"
+ width="106.52453"
+ height="19.52453"
+ x="0.23773575"
+ y="0.23773479" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="107"
+ height="20"
+ sodipodi:docname="column_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/column_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3620">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3622" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3624" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3604">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3606" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3608" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3653">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3655" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3657" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3615">
+ <stop
+ id="stop3617"
+ offset="0"
+ style="stop-color:#ececec;stop-opacity:1;" />
+ <stop
+ id="stop3619"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3686">
+ <stop
+ style="stop-color:#ececec;stop-opacity:1;"
+ offset="0"
+ id="stop3688" />
+ <stop
+ style="stop-color:#ececec;stop-opacity:0;"
+ offset="1"
+ id="stop3690" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="radialGradient3782"
+ cx="49.101032"
+ cy="-31.598446"
+ fx="49.101032"
+ fy="-31.598446"
+ r="49.234169"
+ gradientTransform="matrix(2.0256175,-0.27467184,0.030448,0.22454436,-58.382349,22.705345)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="linearGradient3613"
+ x1="77.445824"
+ y1="2.0967469"
+ x2="79.800629"
+ y2="16.35424"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3653"
+ id="linearGradient3659"
+ x1="62.457939"
+ y1="2.34375"
+ x2="62.394672"
+ y2="14.235973"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="radialGradient3610"
+ cx="55.578266"
+ cy="41.673046"
+ fx="55.578266"
+ fy="41.673046"
+ r="50.221012"
+ gradientTransform="matrix(1,0,0,0.16795053,0,8.3673809)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3616"
+ x1="57.757904"
+ y1="19.473732"
+ x2="57.889473"
+ y2="9.980258"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3620"
+ id="linearGradient3626"
+ x1="52.776062"
+ y1="-7.6497173"
+ x2="52.776382"
+ y2="11.690629"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.0970802,0,0,1.1485037,-131.38953,-1.2515021)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:zoom="5.5676399"
+ inkscape:cx="-10.88994"
+ inkscape:cy="10"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:snap-to-guides="true"
+ inkscape:snap-grids="true"
+ inkscape:snap-center="true"
+ inkscape:snap-bbox="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3628"
+ width="107"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ y="0.49698669"
+ x="0.53883862"
+ height="18.966543"
+ width="108.29021"
+ id="rect3607"
+ style="fill:url(#linearGradient3616);fill-opacity:1;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ style="opacity:0.5;fill:url(#linearGradient3626);fill-opacity:1;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3618"
+ width="108.29021"
+ height="18.966543"
+ x="0.53883862"
+ y="0.49698669" />
+ <rect
+ style="fill:none;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3605"
+ width="108.29021"
+ height="18.966543"
+ x="0.53883862"
+ y="0.49698669" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="0.061126176"
+ y="-12.851629"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="0.061126176"
+ y="-12.851629">see: recordpatch_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2);fill-opacity:1;stroke:#141414;stroke-width:0.4759101;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-7"
+ width="106.52409"
+ height="19.524569"
+ x="0.23795319"
+ y="0.23771572"
+ inkscape:transform-center-x="21.213298"
+ inkscape:transform-center-y="-37.250886" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.84241003"
+ id="rect3611-3-64-8-2"
+ width="106"
+ height="19"
+ x="0.50000763"
+ y="0.49998376" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="107"
+ height="20"
+ sodipodi:docname="column_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/column_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3620">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3622" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3624" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3604">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3606" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3608" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3653">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3655" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3657" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3615">
+ <stop
+ id="stop3617"
+ offset="0"
+ style="stop-color:#ececec;stop-opacity:1;" />
+ <stop
+ id="stop3619"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3686">
+ <stop
+ style="stop-color:#ececec;stop-opacity:1;"
+ offset="0"
+ id="stop3688" />
+ <stop
+ style="stop-color:#ececec;stop-opacity:0;"
+ offset="1"
+ id="stop3690" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="radialGradient3782"
+ cx="49.101032"
+ cy="-31.598446"
+ fx="49.101032"
+ fy="-31.598446"
+ r="49.234169"
+ gradientTransform="matrix(2.0256175,-0.27467184,0.030448,0.22454436,-58.382349,22.705345)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3686"
+ id="linearGradient3613"
+ x1="77.445824"
+ y1="2.0967469"
+ x2="79.800629"
+ y2="16.35424"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3653"
+ id="linearGradient3659"
+ x1="62.457939"
+ y1="2.34375"
+ x2="62.394672"
+ y2="14.235973"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="radialGradient3610"
+ cx="55.578266"
+ cy="41.673046"
+ fx="55.578266"
+ fy="41.673046"
+ r="50.221012"
+ gradientTransform="matrix(1,0,0,0.16795053,0,8.3673809)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3616"
+ x1="57.757904"
+ y1="19.473732"
+ x2="57.889473"
+ y2="9.980258"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3620"
+ id="linearGradient3626"
+ x1="52.776062"
+ y1="-7.6497173"
+ x2="52.776382"
+ y2="11.690629"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1004">
+ <stop
+ id="stop1002"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.0970802,0,0,1.1485037,-131.38954,-1.2514817)" />
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:zoom="7.4536189"
+ inkscape:cx="63.303916"
+ inkscape:cy="3.4792949"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:snap-to-guides="true"
+ inkscape:snap-grids="true"
+ inkscape:snap-center="true"
+ inkscape:snap-bbox="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3628"
+ width="107"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:none;stroke:#b3b3b3;stroke-width:0.51599997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3605"
+ width="108.29021"
+ height="18.966543"
+ x="0.53883862"
+ y="0.49698669" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-0.50262392"
+ y="-6.8935647"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-0.50262392"
+ y="-6.8935647">see: recordpatch_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-5);fill-opacity:1;stroke:#141414;stroke-width:0.4759101;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4"
+ width="106.52409"
+ height="19.524569"
+ x="0.23795319"
+ y="0.23771572"
+ inkscape:transform-center-x="21.213298"
+ inkscape:transform-center-y="-37.250886" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="commercial.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/commercial.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title883">The commercial DB</title>
+ <metadata
+ id="metadata8">
+ <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>The commercial DB</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ <dc:subject>
+ <rdf:Bag />
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="28.047314"
+ inkscape:cx="12.021816"
+ inkscape:cy="9.0780929"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36.75471115px;line-height:49.22506714px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:0.98999999;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.96900344;"
+ x="-1.7049263"
+ y="27.239872"
+ id="text1706-9"
+ transform="scale(1.1782356,0.84872668)"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/Privat/Logos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan1704-0"
+ x="-1.7049263"
+ y="27.239872"
+ style="fill:#e6e4dd;stroke-width:1.96900344;fill-opacity:1;">C</tspan></text>
+ <image
+ y="0.39288646"
+ x="-26.588333"
+ id="image828"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCARUmOnRrefwAAAAddEVYdENv
+bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAP1JREFUSMftVTsOgkAQfUtILGjhFhzA
+dk5g5TE8gT3aGi9hYodQcwlu4R4BMza6IcvsB6XkJRQMs28+b2YBViyBruuykE9dV4lkVwIZALDg
+w/ZZIgomlwo2HhGzg/xrU217BgAMwwu73TEqgF0Ze1rHX9/nsxd9EsdZFtpkHiKaJFAUJW63S1gD
+WwciUp93A6175HlpfLTu1X5/QJTIgtDKoyFb1US3yBBrLfdW6x4h8lAAAICrdJd9TgAGgPv96vka
+xt8ahBYuccw2+3L9EE6W8PGoZi+auMnW2JoxlpYt9ZXu6y0RqaY5Icu246qWuexixvPXa3uz/rxW
+TPAGP7FjesPmpB0AAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:19.23809242px;line-height:25.76530457px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.03061247"
+ x="6.2279081"
+ y="18.008963"
+ id="text881"><tspan
+ sodipodi:role="line"
+ id="tspan879"
+ x="6.2279081"
+ y="18.008963"
+ style="stroke-width:1.03061247">db</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="copy.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//copy.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="31.5625"
+ inkscape:cx="4.3781872"
+ inkscape:cy="9.0761458"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 4 4 L 4 16.53125 L 10.65625 16.53125 L 10.65625 20 L 20 20 L 20 11.625 L 16.625 7.625 L 13.28125 7.625 L 10.09375 4 L 4 4 z M 11.53125 8.84375 L 15.875 8.84375 L 15.875 12.59375 L 19.125 12.59375 L 19.125 18.875 L 11.53125 18.875 L 11.53125 8.84375 z M 16.625 8.84375 L 19.125 11.625 L 16.625 11.625 L 16.625 8.84375 z "
+ id="path2818" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect3593"
+ width="3"
+ height="1"
+ x="12.2"
+ y="11" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="6"
+ height="1"
+ x="12.2"
+ y="14" />
+ <rect
+ y="17"
+ x="12.2"
+ height="1"
+ width="6"
+ id="rect3599"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-38.295685"
+ y="-4.520947" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="23"
+ height="128"
+ sodipodi:docname="cpanel_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient4212">
+ <stop
+ id="stop4208"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop4210"
+ offset="1"
+ style="stop-color:#141414;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.1050113,0)" />
+ <inkscape:perspective
+ id="perspective2895"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(1,0,0,0.99208547,0,0.12475137)"
+ gradientUnits="userSpaceOnUse"
+ y2="15.76232"
+ x2="40.867283"
+ y1="43.375023"
+ x1="41.195095"
+ id="linearGradient2823"
+ xlink:href="#linearGradient2817"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ id="linearGradient2817">
+ <stop
+ id="stop2819"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#323232;stop-opacity:1;"
+ offset="0.5"
+ id="stop2827" />
+ <stop
+ style="stop-color:#969696;stop-opacity:1;"
+ offset="0.5"
+ id="stop2825" />
+ <stop
+ id="stop2821"
+ offset="1"
+ style="stop-color:#c8c8c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2817"
+ id="linearGradient3419"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.99208547,467.42198,-26.672132)"
+ x1="41.195095"
+ y1="43.375023"
+ x2="40.867283"
+ y2="15.76232" />
+ <filter
+ id="filter8082"
+ inkscape:label="Raised border"
+ inkscape:menu="Bevels"
+ inkscape:menu-tooltip="Strongly raised border around a flat surface"
+ height="1.5"
+ width="1.5"
+ y="-0.25"
+ x="-0.25"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8084"
+ stdDeviation="4"
+ result="result1" />
+ <feComposite
+ id="feComposite8086"
+ in2="result1"
+ in="result1"
+ result="result4"
+ operator="in" />
+ <feGaussianBlur
+ id="feGaussianBlur8088"
+ stdDeviation="2"
+ result="result6"
+ in="result4" />
+ <feComposite
+ id="feComposite8090"
+ in2="result4"
+ operator="xor"
+ in="result6"
+ result="result8" />
+ <feComposite
+ id="feComposite8092"
+ in2="result8"
+ operator="atop"
+ result="fbSourceGraphic"
+ in="result4" />
+ <feSpecularLighting
+ id="feSpecularLighting8094"
+ specularExponent="10"
+ specularConstant="1.29999995"
+ surfaceScale="3"
+ lighting-color="#ffffff"
+ result="result1"
+ in="fbSourceGraphic">
+ <feDistantLight
+ id="feDistantLight8096"
+ azimuth="235"
+ elevation="55" />
+ </feSpecularLighting>
+ <feComposite
+ id="feComposite8098"
+ in2="fbSourceGraphic"
+ operator="atop"
+ result="result2"
+ in="result1" />
+ <feComposite
+ id="feComposite8100"
+ in2="result2"
+ k3="1"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic"
+ k1="0"
+ k4="0" />
+ <feComposite
+ id="feComposite8102"
+ in2="SourceGraphic"
+ operator="over"
+ in="result4"
+ result="result9" />
+ <feBlend
+ id="feBlend8104"
+ in2="result2"
+ mode="multiply" />
+ </filter>
+ <filter
+ id="filter8106"
+ inkscape:label="In and Out"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Inner colorized shadow, outer black shadow"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur8108"
+ result="result0"
+ in="SourceAlpha"
+ stdDeviation="4" />
+ <feOffset
+ id="feOffset8110"
+ dx="5"
+ dy="5"
+ result="result4" />
+ <feComposite
+ id="feComposite8112"
+ in2="result4"
+ in="SourceGraphic"
+ operator="xor"
+ result="result3" />
+ </filter>
+ <filter
+ id="filter3632"
+ inkscape:label="Inner Shadow"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur3634"
+ stdDeviation="4"
+ result="result8" />
+ <feOffset
+ id="feOffset3636"
+ dx="4"
+ dy="4"
+ result="result11" />
+ <feComposite
+ id="feComposite3638"
+ in2="result11"
+ result="result6"
+ in="SourceGraphic"
+ operator="in" />
+ <feFlood
+ id="feFlood3640"
+ result="result10"
+ in="result6"
+ flood-opacity="1"
+ flood-color="rgb(0,0,0)" />
+ <feBlend
+ id="feBlend3642"
+ in2="result10"
+ mode="normal"
+ in="result6"
+ result="result12" />
+ <feComposite
+ id="feComposite3644"
+ in2="SourceGraphic"
+ result="result2"
+ operator="in" />
+ </filter>
+ <filter
+ id="filter2855"
+ inkscape:label="Cutout"
+ x="0"
+ y="0"
+ width="1"
+ height="1"
+ inkscape:menu="Shadows and Glows"
+ inkscape:menu-tooltip="Drop shadow under the cut-out of the shape"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur2857"
+ in="SourceAlpha"
+ stdDeviation="4.2" />
+ <feOffset
+ id="feOffset2859"
+ dy="5"
+ dx="5"
+ result="result91" />
+ <feComposite
+ id="feComposite2861"
+ in2="result91"
+ operator="out"
+ in="SourceGraphic" />
+ </filter>
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.020055,0,0,1.4078577,-1.0589722,-0.19051)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601-1">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603-5" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605-9" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-8" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient3607-1"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)" />
+ <inkscape:perspective
+ id="perspective2895-6"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-85"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4212"
+ id="linearGradient3569"
+ x1="-181.806"
+ y1="171.06026"
+ x2="-181.806"
+ y2="194.06026"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(53.806,-171.06026)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.71875"
+ inkscape:cx="11.5"
+ inkscape:cy="64"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3"
+ inkscape:snap-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ y="113"
+ x="440"
+ height="100"
+ width="130"
+ id="rect8114"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="440"
+ height="100"
+ x="0"
+ y="113" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#b3b3b3;stroke-width:1.8758347;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -1.8620758,129.13792 v 83.72415 H 577.3975 v -83.72415 z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818-5"
+ width="130"
+ height="100"
+ x="440"
+ y="113" />
+ <rect
+ y="0"
+ x="0"
+ height="128"
+ width="23"
+ id="rect3597-4"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-50.197906"
+ y="-20.381805"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-50.197906"
+ y="-20.381805"
+ id="tspan2289">Compositor side left.</tspan></text>
+ <rect
+ style="opacity:1;fill:url(#linearGradient3569);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3551"
+ width="128"
+ height="23"
+ x="-128"
+ y="7.837739e-15"
+ transform="rotate(-90)" />
+ <rect
+ style="opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3561"
+ width="0.21192053"
+ height="0.42384106"
+ x="226.649"
+ y="124.29139" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cpanel_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.7551,-23.755084)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ id="linearGradient1088">
+ <stop
+ id="stop1084"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop1086"
+ offset="1"
+ style="stop-color:#404040;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.264869"
+ inkscape:cx="-36.276892"
+ inkscape:cy="10.129528"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <g
+ id="g6938"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.535751"
+ y="-11.760214"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="-35.535751"
+ y="-11.760214">see: cpanel_up</tspan></text>
+ <rect
+ y="-23.755104"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4-9"
+ style="fill:url(#linearGradient962-2-5-7);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.5;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1-6-2"
+ width="20.945837"
+ height="20.945837"
+ x="1.5270815"
+ y="1.5270815" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cpanel_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716-4"
+ xlink:href="#linearGradient3708-2"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706-1"
+ xlink:href="#linearGradient3700-9"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-9"
+ inkscape:collect="always">
+ <stop
+ id="stop3702-5"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704-0"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708-2"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-5"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-8"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1088">
+ <stop
+ id="stop1084"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop1086"
+ offset="1"
+ style="stop-color:#404040;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5-7-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755107,-23.755073)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.409091"
+ inkscape:cx="-51.269421"
+ inkscape:cy="13.40239"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <g
+ id="g6586"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716-4);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706-1);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-28.321819"
+ y="-24.384275"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="-28.321819"
+ y="-24.384275">see: cpanel_up</tspan></text>
+ <rect
+ y="-23.755104"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4-9-0"
+ style="fill:url(#linearGradient962-2-5-7-9);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.05416286;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1-8-8"
+ width="20.945837"
+ height="20.945837"
+ x="1.5270815"
+ y="1.5270815" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cpanel_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1088">
+ <stop
+ id="stop1084"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop1086"
+ offset="1"
+ style="stop-color:#404040;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755104,-23.755091)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.264869"
+ inkscape:cx="-30.903047"
+ inkscape:cy="7.4436224"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <g
+ id="g6124"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-16.930943"
+ y="-14.57714"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="-16.930943"
+ y="-14.57714">see: cpanel_up</tspan></text>
+ <rect
+ y="-23.755104"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4"
+ style="fill:url(#linearGradient962-2-5);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cpanel_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient2977"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,1.655588,1.7671487)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient2980"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,0.94736798,0.94736764)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ id="linearGradient1186">
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="0"
+ id="stop1182" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop1184" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1186"
+ id="linearGradient962-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755116,-23.755096)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.4488803"
+ inkscape:cx="-8.2579066"
+ inkscape:cy="10.42657"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="1.8684201"
+ x="1.8684211"
+ height="20.263159"
+ width="20.263159"
+ id="rect3685"
+ style="fill:url(#linearGradient2980);fill-opacity:1;stroke:none" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient2977);fill-opacity:1;stroke:none"
+ d="m 3.855931,2.5949876 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.49614 5.581316,2.405907 9.123375,2.405907 3.879981,0 7.350855,-1.089622 9.767377,-2.8456965 V 3.8884861 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="20.263159"
+ height="20.263159"
+ x="1.8684211"
+ y="1.8684201"
+ ry="1.4531349" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-4.2740984"
+ y="-23.301466"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="-4.2740984"
+ y="-23.301466">see: cpanel_up</tspan></text>
+ <rect
+ y="-23.755104"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-2"
+ style="fill:url(#linearGradient962-0);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5f8dd3;stroke-width:1.05416286;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-6"
+ width="20.945837"
+ height="20.945837"
+ x="1.5270901"
+ y="1.5270834" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cpanel_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cpanel_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1186">
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="0"
+ id="stop1182" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop1184" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1088">
+ <stop
+ id="stop1084"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop1086"
+ offset="1"
+ style="stop-color:#404040;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4881">
+ <stop
+ id="stop4877"
+ offset="0"
+ style="stop-color:#121212;stop-opacity:1" />
+ <stop
+ id="stop4879"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2828"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.95999996,0,0,0.95999996,-134.8189,-109.43117)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9787594,0,0,0.9787594,-23.745116,-23.745114)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2-2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.95999996,0,0,0.95999996,-134.7076,-143.64424)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-2-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.95999996,0,0,0.95999996,-174.63871,109.48489)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.95999996,0,0,0.95999996,-135.14414,-72.051395)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-172.77365,-110.2488)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2-1-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-172.67613,-144.14971)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4881"
+ id="linearGradient962-2-1-4-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-171.93908,-175.84261)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755102,-107.27269)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1186"
+ id="linearGradient962-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755105,-70.812616)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.755105,-142.03336)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1088"
+ id="linearGradient962-2-5-7-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.97959184,0,0,0.97959184,-23.74199,-169.52176)"
+ x1="0"
+ y1="12"
+ x2="24"
+ y2="12" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.8781456"
+ inkscape:cx="-75.741407"
+ inkscape:cy="-85.450202"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="101.62794,-54.896458"
+ orientation="1,0"
+ id="guide1016"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:url(#linearGradient2828);fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2">
+ <rect
+ y="-71.614868"
+ x="-173.34155"
+ height="23.040001"
+ width="23.039999"
+ id="rect3597-8-2-8-77-9"
+ style="fill:#262626;fill-opacity:1;stroke:#141414;stroke-width:0.95999998;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-95.734467"
+ y="-80.134224"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-95.734467"
+ y="-80.134224"
+ id="tspan2289">Compositor side left,</tspan><tspan
+ sodipodi:role="line"
+ x="-95.734467"
+ y="-55.134228"
+ id="tspan4901">top (buttons).</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot857"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion859"><rect
+ id="rect861"
+ width="10.477003"
+ height="23.136715"
+ x="-308.19852"
+ y="100.39481" /></flowRegion><flowPara
+ id="flowPara863" /></flowRoot> <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="1.3096279"
+ y="-10.923354"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="1.3096279"
+ y="-10.923354">cpanel_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-84.039612"
+ y="63.560131"
+ id="text867-2"><tspan
+ sodipodi:role="line"
+ id="tspan865-5"
+ x="-84.039612"
+ y="63.560131">cpanel_hi</tspan><tspan
+ sodipodi:role="line"
+ x="-84.039612"
+ y="88.560135"
+ id="tspan887" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-87.451073"
+ y="98.337967"
+ id="text867-22"><tspan
+ sodipodi:role="line"
+ id="tspan865-7"
+ x="-87.451073"
+ y="98.337967">cpanel_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-123.7792"
+ y="167.89363"
+ id="text867-1"><tspan
+ sodipodi:role="line"
+ x="-123.7792"
+ y="167.89363"
+ id="tspan917">cpanel_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-115.08127"
+ y="133.1158"
+ id="text867-1-2"><tspan
+ sodipodi:role="line"
+ x="-115.08127"
+ y="133.1158"
+ id="tspan917-1">cpanel_checked</tspan></text>
+ <rect
+ y="-109.43118"
+ x="-134.81891"
+ height="23.040001"
+ width="23.039999"
+ id="rect3597-8-2-8"
+ style="fill:url(#linearGradient962-2);fill-opacity:1;stroke:#ffcc00;stroke-width:0.95999998;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-23.745113"
+ x="-23.745113"
+ height="23.490229"
+ width="23.490229"
+ id="rect3597-8-2-8-77"
+ style="fill:url(#linearGradient962-2-8);fill-opacity:1;stroke:#121212;stroke-width:0.51;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-143.64426"
+ x="-134.7076"
+ height="23.040001"
+ width="23.039999"
+ id="rect3597-8-2-8-2"
+ style="fill:url(#linearGradient962-2-2);fill-opacity:1;stroke:#ffcc00;stroke-width:0.95999998;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="109.48489"
+ x="-174.63872"
+ height="23.040001"
+ width="23.039999"
+ id="rect3597-8-2-8-2-6"
+ style="fill:url(#linearGradient962-2-2-5);fill-opacity:1;stroke:#ffcc00;stroke-width:0.95999998;stroke-opacity:1"
+ transform="rotate(-90)" />
+ <rect
+ y="-72.051399"
+ x="-135.14413"
+ height="23.040001"
+ width="23.039999"
+ id="rect3597-8-2"
+ style="fill:url(#linearGradient962);fill-opacity:1;stroke:#5f8dd3;stroke-width:0.95999998;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5f8dd3;stroke-width:0.95832986;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197"
+ width="19.04167"
+ height="19.04167"
+ x="152.30072"
+ y="50.574028" />
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-0"
+ cx="161.82155"
+ cy="60.094864"
+ r="6" />
+ <rect
+ y="-110.2488"
+ x="-172.77365"
+ height="24"
+ width="24"
+ id="rect3597-8-2-8-1"
+ style="fill:url(#linearGradient962-2-1);fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.95832986;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0"
+ width="19.04167"
+ height="19.04167"
+ x="151.25282"
+ y="88.727966" />
+ <circle
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-0-3"
+ cx="160.77365"
+ cy="98.248802"
+ r="6" />
+ <rect
+ y="-144.1497"
+ x="-172.67613"
+ height="24"
+ width="24"
+ id="rect3597-8-2-8-1-9"
+ style="fill:url(#linearGradient962-2-1-4);fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.95832986;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1"
+ width="19.04167"
+ height="19.04167"
+ x="151.1553"
+ y="122.62887" />
+ <rect
+ y="-175.84261"
+ x="-171.93909"
+ height="24.000002"
+ width="24"
+ id="rect3597-8-2-8-1-9-3"
+ style="fill:url(#linearGradient962-2-1-4-6);fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.95832986;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1-8"
+ width="19.04167"
+ height="19.04167"
+ x="150.41824"
+ y="154.32176" />
+ <circle
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1478-0-0"
+ cx="159.93909"
+ cy="163.84261"
+ r="6" />
+ <rect
+ y="-107.2727"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4"
+ style="fill:url(#linearGradient962-2-5);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-70.812622"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-2"
+ style="fill:url(#linearGradient962-0);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5f8dd3;stroke-width:1.05416286;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-6"
+ width="20.945837"
+ height="20.945837"
+ x="1.5270815"
+ y="48.584602" />
+ <rect
+ y="-142.03339"
+ x="-23.755102"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4-9"
+ style="fill:url(#linearGradient962-2-5-7);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.5;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1-6-2"
+ width="20.945837"
+ height="20.945837"
+ x="1.5270815"
+ y="119.80537" />
+ <rect
+ y="-169.52179"
+ x="-23.741985"
+ height="23.510206"
+ width="23.510204"
+ id="rect3597-8-2-8-4-9-0"
+ style="fill:url(#linearGradient962-2-5-7-9);fill-opacity:1;stroke:#121212;stroke-width:0.48979592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.05416286;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2197-0-1-8-8"
+ width="20.945837"
+ height="20.945837"
+ x="1.5139648"
+ y="147.29376" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="120.56374"
+ y="32.338703"
+ id="text1061"><tspan
+ sodipodi:role="line"
+ id="tspan1059"
+ x="120.56374"
+ y="32.338703">Entwürfe</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="crop.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/crop.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-24.610169"
+ inkscape:cy="12.40678"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 17.540741,4 4,20 9.1851852,20 20,6.9360189 17.540741,4 z M 9.7185185,14.380924 c 0.9553905,0.131095 1.5345035,0.706583 1.7185185,1.74763 l -2.7259259,3.110782 -2.9704959,-0.01718 3.9779033,-4.841232 z"
+ id="path2818"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-112.48485"
+ y="-6.24231" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="cut.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cut.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.916667"
+ inkscape:cx="-17.808765"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;stroke:none;fill-opacity:1"
+ d="M 5.8096087,4.0043153 C 5.105304,4.0472851 4.5235169,4.4048237 4.2155594,5.0692227 3.602355,6.398009 4.3412233,8.4516321 5.876492,9.6496076 6.9272585,10.470017 8.0799202,10.66785 8.897382,10.291118 l 0.8248915,0.949436 0.7357165,0.538869 -1.1704563,0.808304 -0.8806282,0.975095 C 7.6535179,13.434562 6.7313732,13.690829 5.876492,14.358296 4.3412233,15.556271 3.602355,17.597065 4.2155594,18.92585 4.8314739,20.254649 6.5715648,20.367612 8.105931,19.169625 9.6402955,17.97226 10.389409,15.918026 9.7780106,14.58924 9.7651866,14.56156 9.7472176,14.53887 9.7334166,14.51226 l 1.3933994,-0.949435 -0.03344,-0.115473 c 0.100786,-0.06729 0.200179,-0.138001 0.300975,-0.205285 2.062404,1.400637 4.119963,2.810157 6.1644,4.221141 0.780451,0.471504 1.579513,-0.771797 2.363206,-1.039247 0.02598,-0.08487 0.05358,-0.169585 0.07804,-0.256605 -2.122739,-1.480129 -4.259726,-2.944528 -6.3985,-4.400764 2.137167,-1.428953 4.277354,-2.858574 6.39849,-4.3109554 -0.02446,-0.085454 -0.05206,-0.1604281 -0.07804,-0.2437739 -0.783689,-0.2626299 -1.582751,-1.4894272 -2.363202,-1.0264139 -2.01468,1.365407 -4.042661,2.7245778 -6.075222,4.0800072 L 9.889482,9.1107391 C 10.279526,7.7889364 9.5305262,5.9499837 8.105931,4.8382788 7.3387484,4.2392847 6.5139132,3.9613453 5.8096087,4.0043153 z M 6.0994361,5.389978 C 6.5317175,5.4026912 7.0547946,5.5900452 7.5708655,5.9929979 8.6030096,6.7972502 9.0694516,8.059063 8.7970572,8.6488517 8.5246628,9.2386294 7.4437003,9.2885194 6.4115571,8.4820588 5.3794134,7.6778065 4.91133,6.4154283 5.1853654,5.8262052 5.3211521,5.5315881 5.667154,5.3772652 6.0994361,5.389978 z m 1.794698,9.520017 c 0.4321798,-0.01257 0.7667259,0.154169 0.9029231,0.449057 0.2723944,0.589788 -0.1940476,1.851601 -1.2261917,2.655853 -1.0321424,0.805907 -2.1139265,0.743198 -2.3855001,0.153963 -0.2740354,-0.589222 0.194048,-1.851602 1.2261917,-2.655853 0.5160716,-0.403231 1.0503981,-0.590444 1.482577,-0.60302 z"
+ id="path16717" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-52.947132"
+ y="-24.660839" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="23"
+ height="23"
+ sodipodi:docname="cwindow_active.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_active.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1727">
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="0"
+ id="stop1723" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop1725" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1719">
+ <stop
+ id="stop1715"
+ offset="0"
+ style="stop-color:#afc6e9;stop-opacity:1" />
+ <stop
+ id="stop1717"
+ offset="1"
+ style="stop-color:#3771c8;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient74353">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop74351" />
+ <stop
+ style="stop-color:#323232;stop-opacity:1;"
+ offset="0.5"
+ id="stop74349" />
+ <stop
+ id="stop74347"
+ offset="0.5"
+ style="stop-color:#647878;stop-opacity:1;" />
+ <stop
+ style="stop-color:#c8c8c8;stop-opacity:1;"
+ offset="1"
+ id="stop74345" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient74337"
+ inkscape:collect="always">
+ <stop
+ style="stop-color:#58cfff;stop-opacity:0"
+ offset="0"
+ id="stop74335" />
+ <stop
+ style="stop-color:#3e93b3;stop-opacity:0.96862745"
+ offset="1"
+ id="stop74333" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3633">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3635" />
+ <stop
+ style="stop-color:#ff0000;stop-opacity:0;"
+ offset="1"
+ id="stop3637" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3846">
+ <stop
+ style="stop-color:#c8c8c8;stop-opacity:1;"
+ offset="0"
+ id="stop3848" />
+ <stop
+ id="stop3854"
+ offset="0.5"
+ style="stop-color:#647878;stop-opacity:1;" />
+ <stop
+ style="stop-color:#323232;stop-opacity:1;"
+ offset="0.5"
+ id="stop3856" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3850" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3846"
+ id="linearGradient3852"
+ x1="6.3482466"
+ y1="8.7742796"
+ x2="-7.1921229"
+ y2="22.187273"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.37172745,-32.013339)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3633"
+ id="radialGradient3641"
+ cx="-0.45963192"
+ cy="15.518116"
+ fx="-0.45963192"
+ fy="15.518116"
+ r="7.6243048"
+ gradientTransform="matrix(1.5376262,0.20823977,-0.22229689,1.4446937,4.0684664,-38.818433)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient74337"
+ id="radialGradient3641-1"
+ cx="-0.45963192"
+ cy="15.518116"
+ fx="-0.45963192"
+ fy="15.518116"
+ r="7.6243048"
+ gradientTransform="matrix(1.2048615,-0.04078651,0.03384564,1.3169815,-0.00787753,-36.719732)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient74353"
+ id="linearGradient3852-4"
+ x1="6.2175579"
+ y1="8.7989159"
+ x2="-7.0611997"
+ y2="22.267229"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.42318272,-31.782033)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient74353"
+ id="linearGradient3852-4-2"
+ x1="6.3482466"
+ y1="8.7742796"
+ x2="-7.1921229"
+ y2="22.187273"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.42318268,-31.782033)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1719"
+ id="radialGradient1689"
+ cx="11.795819"
+ cy="11.101286"
+ fx="11.795819"
+ fy="11.101286"
+ r="11.549999"
+ gradientTransform="matrix(1.1469573,0.01090686,-0.00711355,0.73805396,-1.9503303,3.1779963)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1727"
+ id="linearGradient1729"
+ x1="0"
+ y1="11.5"
+ x2="23"
+ y2="11.5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21739131,0,0,1,0,-23)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1719"
+ id="radialGradient1689-4"
+ cx="11.795819"
+ cy="11.101286"
+ fx="11.795819"
+ fy="11.101286"
+ r="11.549999"
+ gradientTransform="matrix(1.1469573,0.01090686,-0.00711355,0.73805396,-1.9503303,3.1779963)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="605"
+ inkscape:window-height="483"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="27.043478"
+ inkscape:cx="1.7009645"
+ inkscape:cy="11.5"
+ inkscape:window-x="509"
+ inkscape:window-y="227"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="layer6" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(-12.999996,-13.482415)" />
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ transform="translate(-12.999996,-13.482415)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(-12.999996,-13.482415)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer18"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3870"
+ width="24"
+ height="24"
+ x="0"
+ y="-1" />
+ <rect
+ style="fill:url(#radialGradient3641);fill-opacity:1;stroke:url(#linearGradient3852);stroke-width:0.92205012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3072"
+ width="14.326559"
+ height="14.324716"
+ x="-7.251184"
+ y="-23.657581"
+ transform="matrix(-0.69888361,0.71523541,-0.70552047,-0.70868954,0,0)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer19"
+ inkscape:label="Layer 2"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="display:inline;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient3852-4-2);stroke-width:0.92205012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3072-9-1"
+ width="14.326559"
+ height="14.324716"
+ x="-7.1997275"
+ y="-23.426277"
+ transform="matrix(-0.69888361,0.71523541,-0.70552047,-0.70868954,0,0)" />
+ <rect
+ style="display:inline;fill:url(#radialGradient3641-1);fill-opacity:1;stroke:url(#linearGradient3852-4);stroke-width:0.92205012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3072-9"
+ width="14.326559"
+ height="14.324716"
+ x="-7.1997275"
+ y="-23.426277"
+ transform="matrix(-0.69888361,0.71523541,-0.70552047,-0.70868954,0,0)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 3"
+ style="display:none">
+ <rect
+ style="opacity:1;fill:url(#linearGradient1729);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04662524;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1721"
+ width="5"
+ height="23"
+ x="2.0565038e-17"
+ y="-23"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:url(#radialGradient1689);fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.19879523;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1679"
+ width="22.801205"
+ height="12.801205"
+ x="0.099397659"
+ y="5.0993977" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect1721"
+ id="use2402"
+ transform="rotate(180,11.5,11.5)"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 4"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04662524;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1721-1"
+ width="5"
+ height="23"
+ x="2.0565038e-17"
+ y="-23"
+ transform="rotate(90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect1721-1"
+ id="use2402-1"
+ transform="rotate(180,11.5,11.5)"
+ width="100%"
+ height="100%"
+ style="fill:#1a1a1a;fill-opacity:1" />
+ <rect
+ style="opacity:1;fill:url(#radialGradient1689-4);fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.19879523;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1679-1"
+ width="22.801205"
+ height="12.801205"
+ x="0.099397659"
+ y="5.0993977" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="23"
+ height="23"
+ sodipodi:docname="cwindow_inactive.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/cwindow_inactive.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3846">
+ <stop
+ id="stop3848"
+ offset="0"
+ style="stop-color:#c8c8c8;stop-opacity:1;" />
+ <stop
+ style="stop-color:#647878;stop-opacity:1;"
+ offset="0.5"
+ id="stop3854" />
+ <stop
+ id="stop3856"
+ offset="0.5"
+ style="stop-color:#323232;stop-opacity:1;" />
+ <stop
+ id="stop3850"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3846"
+ id="linearGradient3030"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.42318497,-31.782034)"
+ x1="6.3482466"
+ y1="8.7742796"
+ x2="-7.1921229"
+ y2="22.187273" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3846"
+ id="linearGradient3030-8"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.42318497,-31.782034)"
+ x1="6.3482466"
+ y1="8.7742796"
+ x2="-7.1921229"
+ y2="22.187273" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1727">
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="0"
+ id="stop1723" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop1725" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1727"
+ id="linearGradient2488"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.21739131,0,0,1,-1e-6,-23)"
+ x1="0"
+ y1="11.5"
+ x2="23"
+ y2="11.5" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="29.16492"
+ inkscape:cx="2.4137416"
+ inkscape:cy="8.7569773"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer8"
+ inkscape:showpageshadow="false" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(-13.199149,-13.609534)" />
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ transform="translate(-13.199149,-13.609534)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(-13.199149,-13.609534)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3870"
+ width="24"
+ height="24"
+ x="-0.19915295"
+ y="-1" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:url(#linearGradient3030);stroke-width:0.92205012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3072"
+ width="14.326559"
+ height="14.324716"
+ x="-7.1997266"
+ y="-23.426277"
+ transform="matrix(-0.69888361,0.71523541,-0.70552047,-0.70868954,0,0)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="Layer 2"
+ style="display:none">
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:url(#linearGradient3030-8);stroke-width:0.92205012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3072-5"
+ width="14.326559"
+ height="14.324716"
+ x="-7.1997266"
+ y="-23.426277"
+ transform="matrix(-0.69888361,0.71523541,-0.70552047,-0.70868954,0,0)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 3"
+ style="display:none">
+ <rect
+ style="opacity:1;fill:url(#linearGradient2488);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04662524;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1721-1"
+ width="5"
+ height="23"
+ x="-4.6875002e-08"
+ y="-23"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1679-7"
+ width="22.801205"
+ height="12.801205"
+ x="0.099397324"
+ y="5.0993977" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect1721-1"
+ id="use2402"
+ transform="rotate(180,11.5,11.5)"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer8"
+ inkscape:label="Layer 4">
+ <rect
+ style="display:inline;opacity:1;fill:#151515;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04662524;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1721-1-7"
+ width="5.5"
+ height="23"
+ x="-4.7143556e-07"
+ y="-22.999998"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2647"
+ width="23"
+ height="5.5"
+ x="0"
+ y="17.5" />
+ <rect
+ style="display:inline;opacity:1;fill:#010101;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1679-1"
+ width="22.801205"
+ height="12.801205"
+ x="0.099396579"
+ y="5.0993972" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="delete.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/delete.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="32.789472"
+ inkscape:cx="4.4181376"
+ inkscape:cy="12.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd"
+ d="M 11.030904,3.0004285 C 10.053838,3.0184025 9.1507756,3.5537095 8.6574741,4.422049 L 6.8966129,7.5198834 10.880962,9.8576669 12.99656,6.1224206 13.894363,7.7001423 12.124357,8.6460346 17.291762,9.2518508 20.051004,4.3941747 17.573357,5.7191657 16.441495,3.5690738 11.381974,3.0152896 c -0.05016,-0.00576 -0.103102,-0.0084 -0.15359,-0.011143 -0.0015,-6.48e-5 -0.0021,5.76e-5 -0.0035,0 -0.06444,-0.0036 -0.129891,-0.00503 -0.193822,-0.0036 z m 8.833593,5.8574561 -3.982526,2.3377804 2.119254,3.733386 -1.788294,0 0.07863,-2.031155 -3.099347,4.242568 L 15.953275,22 l 0.107886,-2.845103 2.399025,0.0799 3.000604,-4.177528 c 0.03042,-0.04238 0.05964,-0.08419 0.08777,-0.128224 0.572661,-0.897318 0.602974,-2.045241 0.07679,-2.97147 L 19.864497,8.8578846 z M 3.000028,9.5900662 5.3679673,11.106465 4.1007962,13.178504 6.1597136,17.907956 c 0.020869,0.048 0.044214,0.09634 0.067631,0.143091 0.4783108,0.952675 1.4417235,1.551705 2.4941031,1.551705 l 1.5359613,0 1.983944,0 0,-4.673701 -4.2403426,0 0.8941478,-1.574006 1.6913848,1.083407 L 8.5203099,9.5900662 3,9.5900662 z"
+ id="path3842" />
+ <path
+ d="M 195.9017,-643.63116 82.633001,-756.90011 c -4.003072,-4.00283 -9.432031,-6.25146 -15.092655,-6.25146 l -263.023116,0 c -7.85856,0 -14.22949,6.37068 -14.22949,14.22949 l 0,472.74179 c 0,7.85881 6.37068,14.22924 14.22949,14.22924 l 383.40669,0 c 7.85881,0 14.22924,-6.37068 14.22924,-14.22924 l 0,-352.35822 c 0,-5.66087 -2.24864,-11.08983 -6.25146,-15.09265 z"
+ style="fill:#ffff00;fill-rule:evenodd;display:none"
+ id="path3858" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-69.018684"
+ y="-17.275707" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="16"
+ sodipodi:docname="downmix51_2.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/downmix51_2.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title844">downmix51_2</title>
+ <metadata
+ id="metadata8">
+ <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>downmix51_2</dc:title>
+ <dc:date>2018-08-17</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-17: new. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ r="15.644737"
+ fy="36.421127"
+ fx="24.837126"
+ cy="36.421127"
+ cx="24.837126"
+ gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1444"
+ xlink:href="#linearGradient8662"
+ inkscape:collect="always" />
+ <radialGradient
+ r="16.9562"
+ fy="22.454971"
+ fx="11.319205"
+ cy="22.454971"
+ cx="11.319205"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,0.606436,42.58614)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1441"
+ xlink:href="#linearGradient2304"
+ inkscape:collect="always" />
+ <radialGradient
+ r="17.171415"
+ fy="0.40010813"
+ fx="24.53788"
+ cy="0.40010813"
+ cx="24.53788"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,2.767009,66.93275)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1438"
+ xlink:href="#linearGradient8650"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8650">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop8652" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop8654" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8662">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop8664" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop8666" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2304">
+ <stop
+ style="stop-color:#73d216"
+ offset="0"
+ id="stop2306" />
+ <stop
+ style="stop-color:#4e9a06"
+ offset="1.0000000"
+ id="stop2308" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective23"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8650"
+ id="radialGradient14616"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,-8.73299,55.433144)"
+ cx="24.53788"
+ cy="0.40010813"
+ fx="24.53788"
+ fy="0.40010813"
+ r="17.171415" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2304"
+ id="radialGradient14619"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,-10.893563,31.086534)"
+ cx="11.319205"
+ cy="22.454971"
+ fx="11.319205"
+ fy="22.454971"
+ r="16.9562" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="27.930718"
+ inkscape:cx="-1.0556469"
+ inkscape:cy="1.3406653"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2818"
+ d="m 0,13.05909 h 5.4836521 v 2.115604 L 8.9237073,12.310712 5.4836521,9.4611156 V 11.562333 H 0 Z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.81046623" />
+ <image
+ y="-0.69743997"
+ x="-28.415237"
+ id="image841"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9kDGQ06NeiWDIsAAABdSURBVCjP
+rZJRDoAwDEKh2f2vjD+aOFNbaewnYa/QjACEfJhol5eB77MtWM2GZwJlD2VAEKeJVSyYfVTpUZhK
+CKex+EevLt6mxZS8jO9mGeQC752yrq+E7sIcH+cA9jIaDCWcRUYAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="14.222222"
+ width="12.444444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ x="-0.71614605"
+ y="9.6679678"
+ id="text848-7"><tspan
+ sodipodi:role="line"
+ id="tspan846-8"
+ x="-0.71614605"
+ y="9.6679678">6</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ x="6.9687505"
+ y="16"
+ id="text852-9"><tspan
+ sodipodi:role="line"
+ id="tspan850-1"
+ x="6.9687505"
+ y="16">2</tspan></text>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="drawpatch.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/drawpatch.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient2855">
+ <stop
+ style="stop-color:#dfdfdf;stop-opacity:1;"
+ offset="0"
+ id="stop2857" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop2859" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2873">
+ <stop
+ style="stop-color:#939393;stop-opacity:1;"
+ offset="0"
+ id="stop2875" />
+ <stop
+ style="stop-color:#424242;stop-opacity:1;"
+ offset="1"
+ id="stop2877" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2919">
+ <stop
+ style="stop-color:#a3a4a0;stop-opacity:1;"
+ offset="0"
+ id="stop2921" />
+ <stop
+ style="stop-color:#888a85;stop-opacity:1;"
+ offset="1"
+ id="stop2923" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2966">
+ <stop
+ style="stop-color:#ffd1d1;stop-opacity:1;"
+ offset="0"
+ id="stop2968" />
+ <stop
+ id="stop3006"
+ offset="0.5"
+ style="stop-color:#ff1d1d;stop-opacity:1;" />
+ <stop
+ style="stop-color:#6f0000;stop-opacity:1;"
+ offset="1"
+ id="stop2970" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2974">
+ <stop
+ style="stop-color:#c1c1c1;stop-opacity:1;"
+ offset="0"
+ id="stop2976" />
+ <stop
+ style="stop-color:#acacac;stop-opacity:1;"
+ offset="1"
+ id="stop2978" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2994">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop2996" />
+ <stop
+ style="stop-color:#c9c9c9;stop-opacity:1;"
+ offset="1"
+ id="stop2998" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective2922"
+ inkscape:persp3d-origin="94 : 32.666667 : 1"
+ inkscape:vp_z="188 : 49 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 49 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="29.529412"
+ inkscape:cx="0.85956185"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.29014015;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="M 13.414074,1.7135225 7.1071007,8.6197116 7,15.043503 12.429982,15.5 18.736957,8.5938104 C 19.907845,4.2382112 16.997682,0.56240172 13.414074,1.7135225 z m 3.993192,6.7382281 -0.894711,1.0905195 C 16.071834,6.4784466 14.995214,4.7758137 12.466879,4.3128831 L 13.36159,3.2223636 c 2.508604,-0.5598842 4.557367,2.2092164 4.045676,5.229387 z M 8.1802155,9.436604 c 2.3215705,0.5217557 3.5208355,1.854899 3.7053785,4.739257 L 8.221405,13.702872 8.1802155,9.436604 z"
+ id="path2960"
+ sodipodi:nodetypes="ccccccccccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-42.291752"
+ y="-26.234545" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="editpanel_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716-9"
+ xlink:href="#linearGradient3708-1"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706-8"
+ xlink:href="#linearGradient3700-0"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-0">
+ <stop
+ id="stop3702-9"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704-7"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708-1"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-3"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-8"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954697,-1.2657094)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.409091"
+ inkscape:cx="-15.020474"
+ inkscape:cy="15.330677"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g5200"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716-9);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706-8);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-9);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-9"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.2500801"
+ x="0.75007248"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-0"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-58.04752"
+ y="-24.910172"
+ id="text1473-8-6"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/text1473-8-6.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-58.04752"
+ y="-24.910172">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="editpanel_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88116422,0,0,1.3476629,-27.764385,-1.2025307)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.906433"
+ inkscape:cx="-10.462709"
+ inkscape:cy="-1.1277922"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="4.9253451e-08"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4848"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-38.236053"
+ y="-12.872087"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-38.236053"
+ y="-12.872087">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4-2);fill-opacity:1;stroke:#141414;stroke-width:1.08973038;stroke-opacity:1"
+ id="rect3597-2-3-0-6"
+ width="22.910269"
+ height="22.910269"
+ x="0.54486561"
+ y="0.54486561" />
+ <rect
+ y="1.4891291"
+ x="0.98912811"
+ height="21.021744"
+ width="22.021744"
+ id="rect3597-5-7-9-4-8-9-8-0-2"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.97825694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="editpanel_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-43"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-51.954689,-25.265707)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.330761"
+ inkscape:cx="-0.70577012"
+ inkscape:cy="10.057507"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="-7.4655054e-10"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4386"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-52.486172"
+ y="-6.4205308"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-52.486172"
+ y="-6.4205308">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1"
+ width="23.019905"
+ height="23.019905"
+ x="-23.509953"
+ y="-23.509953"
+ transform="scale(-1)" />
+ <rect
+ y="-22.749918"
+ x="-23.249918"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-3"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="editpanel_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient2960"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,1.655588,1.7671487)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient2963"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,0.94736798,0.94736764)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954697,-1.2657081)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.0466446"
+ inkscape:cx="-59.295757"
+ inkscape:cy="16.523224"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0.0087766619"
+ x="-7.4655054e-10"
+ height="23.982447"
+ width="24"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="1.8684201"
+ x="1.8684211"
+ height="20.263159"
+ width="20.263159"
+ id="rect3685"
+ style="fill:url(#linearGradient2963);fill-opacity:1;stroke:none" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient2960);fill-opacity:1;stroke:none"
+ d="m 3.855931,2.5949876 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.49614 5.581316,2.405907 9.123375,2.405907 3.879981,0 7.350855,-1.089622 9.767377,-2.8456965 V 3.8884861 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="20.263159"
+ height="20.263159"
+ x="1.8684211"
+ y="1.8684201"
+ ry="1.4531349" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-32.819649"
+ y="-24.288572"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-32.819649"
+ y="-24.288572">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.4891281"
+ x="0.98912811"
+ height="21.021744"
+ width="22.021744"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.97825694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="editpanel_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/editpanel_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ id="stop3610"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3612"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:1" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-3" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.26378025,-1.0791239,-0.05356539)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-8" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)" />
+ <inkscape:perspective
+ id="perspective2895"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-2"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3614"
+ id="radialGradient3622"
+ cx="11.289229"
+ cy="8.6998415"
+ fx="11.289229"
+ fy="8.6998415"
+ r="8.0943259"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ gradientUnits="userSpaceOnUse" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954693,-1.2657079)" />
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="50.333333"
+ inkscape:cx="12"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer90"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer89"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="-0.19461308"
+ x="-0.30508479"
+ height="24.185837"
+ width="24.305084"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer90"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.250082"
+ x="0.75008202"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="end.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/end.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.368737"
+ inkscape:cx="-33.105963"
+ inkscape:cy="11.339987"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-29.527458"
+ y="-11.931291"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-29.527458"
+ y="-11.931291">see: play</tspan></text>
+ <g
+ transform="translate(-60.924575,-0.08298075)"
+ style="display:inline"
+ id="g1005">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4-7"
+ d="M 81.847301,4.5829805 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435859;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-6"
+ d="M 64.087238,11.682981 63.27967,5.0833679 79.381687,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-5"
+ d="M 64.087238,12.482981 63.27967,19.082592 79.381687,12.482981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="64.089844"
+ height="0.80000001"
+ width="15.291842"
+ id="rect2198-0-2"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.990816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="expandpatch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="radialGradient909"
+ cx="10.474576"
+ cy="8.7118645"
+ fx="10.474576"
+ fy="8.7118645"
+ r="10"
+ gradientTransform="matrix(1.7628593,-0.00499252,0.00372768,1.3120585,-96.580153,32.28667)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ id="stop911"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop913"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.76923071,0,0,0.99999999,-24.71317,-1.296583)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.3992675"
+ inkscape:cx="10.80323"
+ inkscape:cy="5.9914337"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="22.266512,8.5"
+ orientation="0,1"
+ id="guide917"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0624999 V 17 H 20.033787 V -0.0624999 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 3.1694915,5.9788136 H 15.919492 L 9.4364407,12.822034 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#radialGradient909);fill-opacity:1;stroke:none;stroke-width:0.82922435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-8"
+ width="19"
+ height="16"
+ x="-87.582474"
+ y="35.664852" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.48699999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-8-3"
+ width="19.513243"
+ height="16.513245"
+ x="-87.839096"
+ y="35.40823" />
+ <rect
+ style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99211907;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect880"
+ width="20"
+ height="17"
+ x="-88.082474"
+ y="35.164852"
+ rx="0"
+ ry="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#d4d4d4;fill-opacity:1;stroke:none"
+ d="m -84.457473,40.243242 h 12.75 l -6.483051,6.84322 z"
+ id="path2910-5"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-86.020065"
+ y="-33.912148"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-86.020065"
+ y="-33.912148">see: recordpatch_up</tspan></text>
+ <ellipse
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950"
+ cx="22.067289"
+ cy="76.64901"
+ rx="7.9884062"
+ ry="7.9884057"
+ transform="rotate(90)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cfcfcf;fill-opacity:1;stroke:none"
+ d="m -83.024006,22.047663 h 12.75 l -6.483051,6.84322 z"
+ id="path2910-5-2"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-0);fill-opacity:1;stroke:none;stroke-width:0.87705797;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-5"
+ width="20"
+ height="17"
+ x="0"
+ y="-5.8941839e-07" />
+ <g
+ id="g7345"
+ transform="translate(-17.847932,-636.96942)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="645.46942"
+ cx="27.847933"
+ id="path950-1-0"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-1-6"
+ d="m 21.347934,645.46942 h 13 l -6.610169,6.5 z"
+ style="fill:#37c871;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="expandpatch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614-91">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3616-62" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3618-1" />
+ </linearGradient>
+ <radialGradient
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2572268,0.61815251)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2836-8"
+ xlink:href="#linearGradient3614-91"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.094326"
+ fy="6.8672218"
+ fx="11.961022"
+ cy="6.8672218"
+ cx="11.961022"
+ gradientTransform="matrix(1.1338252,-8.6128046e-8,3.6421506e-8,1.100974,-1.7979864,-1.7294681)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2973-1"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.76923071,0,0,0.99999999,-24.713172,-1.296609)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-34.913135"
+ inkscape:cy="2.7372881"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:inline" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-6);fill-opacity:1;stroke:none;stroke-width:0.87705797;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-9"
+ width="20"
+ height="17"
+ x="0"
+ y="-3.7844181e-06" />
+ <g
+ id="g7341"
+ transform="translate(-16.756294,-672.41223)">
+ <g
+ transform="matrix(0.82457511,0,0,0.82457511,16.470378,670.90034)"
+ id="g3832-3"
+ style="display:inline">
+ <g
+ id="g2832-4"
+ transform="matrix(0.93460521,-0.3556868,-0.3556868,-0.93460521,5.052979,27.483504)">
+ <circle
+ r="10.416074"
+ cy="14.566575"
+ cx="13.101979"
+ transform="matrix(0.90398745,0,0,0.90398745,0.15597518,-1.1680011)"
+ id="path2890-1-0"
+ style="opacity:0.5;fill:#333333;fill-opacity:1;stroke:#1a1a1a;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3599-9-3"
+ d="m 12.032581,3.087581 c -4.9980592,0 -9.0404158,4.0423566 -9.0404158,9.040416 0,0.531888 0.062144,1.055088 0.150173,1.561799 0.00517,0.0063 -0.00519,0.02374 0,0.03003 1.6598639,2.01129 4.1866543,3.303807 6.9980628,3.303807 4.99806,0 9.040416,-4.042357 9.040416,-9.0404157 0,-0.531888 -0.06214,-1.0550883 -0.150173,-1.5617994 C 17.371292,4.3817989 14.866897,3.087581 12.032581,3.087581 Z"
+ style="opacity:0.5;fill:url(#radialGradient2836-8);fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.33067729;fill:url(#radialGradient2973-1);fill-opacity:1;stroke:none"
+ d="M 14.976416,3.659368 C 10.262307,1.9987158 5.1064935,4.4683072 3.4458413,9.1824168 3.2691165,9.6840872 3.1538918,10.198211 3.0685602,10.705383 c 0.00278,0.0077 -0.012783,0.02067 -0.00998,0.02832 0.8972937,2.44853 2.8510813,4.507167 5.5027679,5.441284 4.7141109,1.660652 9.8699239,-0.80894 11.5305759,-5.523049 0.176725,-0.50167 0.291953,-1.0157929 0.377281,-1.5229665 C 19.581809,6.6538959 17.649709,4.6010962 14.976416,3.659368 Z"
+ id="path3599-5-9" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path2910-1"
+ d="m 19.95477,678.3598 h 12.750001 l -6.483052,6.84322 z"
+ style="display:inline;fill:#b3b3b3;fill-opacity:1;stroke:none" />
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="680.91223"
+ cx="26.785278"
+ id="path950-1-4"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-1-1"
+ d="m 20.285279,680.91224 h 13 l -6.610169,6.5 z"
+ style="fill:#37c871;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-68.740288"
+ y="-17.494968"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-68.740288"
+ y="-17.494968">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="expandpatch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <radialGradient
+ r="8.0943259"
+ fy="6.8672218"
+ fx="11.961022"
+ cy="6.8672218"
+ cx="11.961022"
+ gradientTransform="matrix(1.1338252,-8.6128046e-8,3.6421506e-8,1.100974,-1.7979864,-1.7294681)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2973"
+ xlink:href="#linearGradient3614-9"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614-9">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616-1" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618-9" />
+ </linearGradient>
+ <radialGradient
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2572268,0.61815251)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2836"
+ xlink:href="#linearGradient3614-24"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3614-24">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3616-5" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3618-05" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.76923071,0,0,0.99999999,-24.713171,-1.2966479)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-34.913135"
+ inkscape:cy="14.262712"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="m -0.00253713,-0.03125 v 17.0625 H 20.03125 v -17.0625 z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3580"
+ transform="matrix(0.82457511,0,0,0.82457511,-0.34590127,-1.5079013)">
+ <g
+ transform="matrix(0.93460521,-0.3556868,-0.3556868,-0.93460521,5.052979,27.483504)"
+ id="g2832">
+ <circle
+ style="opacity:0.5;fill:#333333;fill-opacity:1;stroke:#1a1a1a;stroke-opacity:1"
+ id="path2890-2"
+ transform="matrix(0.90398745,0,0,0.90398745,0.15597518,-1.1680011)"
+ cx="13.101979"
+ cy="14.566575"
+ r="10.416074" />
+ <path
+ style="opacity:0.5;fill:url(#radialGradient2836);fill-opacity:1;stroke:none"
+ d="m 12.032581,3.087581 c -4.9980592,0 -9.0404158,4.0423566 -9.0404158,9.040416 0,0.531888 0.062144,1.055088 0.150173,1.561799 0.00517,0.0063 -0.00519,0.02374 0,0.03003 1.6598639,2.01129 4.1866543,3.303807 6.9980628,3.303807 4.99806,0 9.040416,-4.042357 9.040416,-9.0404157 0,-0.531888 -0.06214,-1.0550883 -0.150173,-1.5617994 C 17.371292,4.3817989 14.866897,3.087581 12.032581,3.087581 Z"
+ id="path3599-1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3599-5"
+ d="M 14.976416,3.659368 C 10.262307,1.9987158 5.1064935,4.4683072 3.4458413,9.1824168 3.2691165,9.6840872 3.1538918,10.198211 3.0685602,10.705383 c 0.00278,0.0077 -0.012783,0.02067 -0.00998,0.02832 0.8972937,2.44853 2.8510813,4.507167 5.5027679,5.441284 4.7141109,1.660652 9.8699239,-0.80894 11.5305759,-5.523049 0.176725,-0.50167 0.291953,-1.0157929 0.377281,-1.5229665 C 19.581809,6.6538959 17.649709,4.6010962 14.976416,3.659368 Z"
+ style="opacity:0.33067729;fill:url(#radialGradient2973);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="m 4.407379,12.215783 8.942085,-9.088544 0.331209,9.420718 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-3);fill-opacity:1;stroke:none;stroke-width:0.87705797;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-1"
+ width="20"
+ height="17"
+ x="0"
+ y="-3.861875e-06" />
+ <ellipse
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-1-2"
+ cx="-5.2956901"
+ cy="12.008558"
+ rx="7.9884062"
+ ry="7.9884057"
+ transform="rotate(-73.43258)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ d="m 5.4038133,13.096142 9.1923887,-9.1923899 -0.0779,9.2702899 z"
+ id="path2910-5-2-1-5"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="expandpatch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <radialGradient
+ r="8.0943259"
+ fy="6.8672218"
+ fx="11.961022"
+ cy="6.8672218"
+ cx="11.961022"
+ gradientTransform="matrix(1.1338252,-8.6128046e-8,3.6421506e-8,1.100974,-1.7979864,-1.7294681)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2973"
+ xlink:href="#linearGradient3614-9"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614-9">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616-1" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618-9" />
+ </linearGradient>
+ <radialGradient
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2572268,0.61815251)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient2836"
+ xlink:href="#linearGradient3614-4"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3614-4">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3616-15" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3618-5" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.76923071,0,0,0.99999999,-24.71317,-1.2966499)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-15.824152"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:inline">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="m -0.01689356,-0.03125 v 17.0625 H 20.016894 v -17.0625 z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3328"
+ transform="matrix(0.82457329,0,0,0.82457693,-0.35989657,-1.5079403)">
+ <g
+ transform="matrix(0.93460521,-0.3556868,-0.3556868,-0.93460521,5.052979,27.483504)"
+ id="g2832">
+ <circle
+ style="opacity:0.5;fill:#333333;fill-opacity:1;stroke:#1a1a1a;stroke-opacity:1"
+ id="path2890-8"
+ transform="matrix(0.90398745,0,0,0.90398745,0.15597518,-1.1680011)"
+ cx="13.101979"
+ cy="14.566575"
+ r="10.416074" />
+ <path
+ style="opacity:0.5;fill:url(#radialGradient2836);fill-opacity:1;stroke:none"
+ d="m 12.032581,3.087581 c -4.9980592,0 -9.0404158,4.0423566 -9.0404158,9.040416 0,0.531888 0.062144,1.055088 0.150173,1.561799 0.00517,0.0063 -0.00519,0.02374 0,0.03003 1.6598639,2.01129 4.1866543,3.303807 6.9980628,3.303807 4.99806,0 9.040416,-4.042357 9.040416,-9.0404157 0,-0.531888 -0.06214,-1.0550883 -0.150173,-1.5617994 C 17.371292,4.3817989 14.866897,3.087581 12.032581,3.087581 Z"
+ id="path3599-52"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3599-5"
+ d="M 14.976416,3.659368 C 10.262307,1.9987158 5.1064935,4.4683072 3.4458413,9.1824168 3.2691165,9.6840872 3.1538918,10.198211 3.0685602,10.705383 c 0.00278,0.0077 -0.012783,0.02067 -0.00998,0.02832 0.8972937,2.44853 2.8510813,4.507167 5.5027679,5.441284 4.7141109,1.660652 9.8699239,-0.80894 11.5305759,-5.523049 0.176725,-0.50167 0.291953,-1.0157929 0.377281,-1.5229665 C 19.581809,6.6538959 17.649709,4.6010962 14.976416,3.659368 Z"
+ style="opacity:0.33067729;fill:url(#radialGradient2973);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.6620211,14.766949 V 2.0169488 l 6.8432209,6.4830517 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0-4);fill-opacity:1;stroke:none;stroke-width:0.87705797;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5-4"
+ width="20"
+ height="17"
+ x="0"
+ y="-1.5711603e-05" />
+ <g
+ id="g7353"
+ transform="translate(-18.879337,-565.80247)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="574.30249"
+ cx="28.879339"
+ id="path950-3"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#5f8dd3;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-4"
+ d="m 28.859711,580.67748 v -13 l 6.500001,6.61017 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="expandpatch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/expandpatch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.76923071,0,0,0.99999999,-24.713173,-1.2966174)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.9313725"
+ inkscape:cx="-31.381075"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.99732476"
+ d="m 0.0196274,31.442975 v 17 H 20.019627 v -17 z"
+ id="rect3597-2" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <ellipse
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950"
+ cx="10.019628"
+ cy="39.942974"
+ rx="7.9884062"
+ ry="7.9884057" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ d="m 10,46.317975 v -13 l 6.5,6.61017 z"
+ id="path2910-5-2"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4-0);fill-opacity:1;stroke:none;stroke-width:0.87705797;stroke-opacity:1"
+ id="rect3597-50-11-3-0-5"
+ width="20"
+ height="17"
+ x="0"
+ y="-1.1019831e-05" />
+ <g
+ id="g7250"
+ transform="translate(-20.254546,-528.67192)">
+ <ellipse
+ ry="7.9884057"
+ rx="7.9884062"
+ cy="537.17194"
+ cx="30.254545"
+ id="path950-9"
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02318728;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6"
+ d="m 30.234918,543.5469 v -13 l 6.5,6.61017 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.98410863"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="eyedrop.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/eyedrop.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(0.7296001,0.7296001)"
+ gradientUnits="userSpaceOnUse"
+ y2="16.146906"
+ x2="11.069383"
+ y1="16.177185"
+ x1="14.292573"
+ id="linearGradient5957"
+ xlink:href="#linearGradient5951"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="4.5"
+ x2="13.027166"
+ y1="4.5"
+ x1="10"
+ gradientTransform="matrix(1,0,0,0.9691274,0.7296001,1.0099953)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5931"
+ xlink:href="#linearGradient5908"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(0.7296001,0.7296001)"
+ y2="4.5"
+ x2="13.027166"
+ y1="4.5"
+ x1="9"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5929"
+ xlink:href="#linearGradient5908"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="6"
+ x2="9.2901049"
+ y1="5.9400353"
+ x1="13.080468"
+ gradientTransform="matrix(1.1999999,0,0,1.1428571,-0.9703995,-1.627543)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5927"
+ xlink:href="#linearGradient5897"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5897"
+ inkscape:collect="always">
+ <stop
+ id="stop5899"
+ offset="0"
+ style="stop-color:#2e3436;stop-opacity:1" />
+ <stop
+ id="stop5901"
+ offset="1"
+ style="stop-color:#555753;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5908"
+ inkscape:collect="always">
+ <stop
+ id="stop5910"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop5912"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5951"
+ inkscape:collect="always">
+ <stop
+ id="stop5953"
+ offset="0"
+ style="stop-color:#3465a4;stop-opacity:1" />
+ <stop
+ id="stop5955"
+ offset="1"
+ style="stop-color:#729fcf;stop-opacity:1" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective3713"
+ inkscape:persp3d-origin="8 : 5.3333333 : 1"
+ inkscape:vp_z="16 : 8 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 8 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <inkscape:perspective
+ id="perspective4451"
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ y2="240.0674"
+ x2="210.9595"
+ y1="111.8271"
+ x1="27.813499"
+ gradientUnits="userSpaceOnUse"
+ id="SVGID_1_">
+ <stop
+ id="stop4417"
+ style="stop-color:#D7E1FF"
+ offset="0" />
+ <stop
+ id="stop4419"
+ style="stop-color:#D4DEFD"
+ offset="0.1917" />
+ <stop
+ id="stop4421"
+ style="stop-color:#C9D4F8"
+ offset="0.3573" />
+ <stop
+ id="stop4423"
+ style="stop-color:#B7C3EE"
+ offset="0.5132" />
+ <stop
+ id="stop4425"
+ style="stop-color:#9EABE1"
+ offset="0.6632" />
+ <stop
+ id="stop4427"
+ style="stop-color:#7E8CD0"
+ offset="0.809" />
+ <stop
+ id="stop4429"
+ style="stop-color:#5767BB"
+ offset="0.9498" />
+ <stop
+ id="stop4431"
+ style="stop-color:#4758B3"
+ offset="1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.979028"
+ inkscape:cx="-9.1289159"
+ inkscape:cy="10.388029"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.81551236;marker:none;enable-background:accumulate"
+ d="M 17.876477,5.2241534 C 16.605864,3.9432576 14.774681,3.6114136 13.788127,4.4966006 13.253744,4.9760773 13.090319,5.7089711 13.241999,6.4860756 12.658234,6.1055603 12.165357,5.9302406 11.988231,6.0891683 11.785926,6.270693 12.025274,6.8382844 12.513782,7.5359404 L 8.4021088,11.11606 c -0.4643732,0.416642 -2.9009239,3.460891 -2.1490645,4.218832 l 0.3051272,0.309349 c 0.7518707,0.757929 4.3236475,-1.444613 4.7880265,-1.861248 l 4.016612,-3.438075 c 0.588484,0.385181 1.075642,0.556733 1.25377,0.396908 0.177126,-0.158928 0.01163,-0.616801 -0.353822,-1.1931916 0.806886,0.1892194 1.588821,0.049164 2.123205,-0.4303113 0.986553,-0.8851868 0.761125,-2.6132754 -0.509486,-3.8941697 z m -4.948623,2.9302722 c 0.62505,0.892326 0.709174,0.9776135 1.678199,1.7014217 L 13.852608,10.522504 11.240425,9.8212794 Z"
+ id="rect5890"
+ sodipodi:nodetypes="cscsccccccscscccccc" />
+ <g
+ transform="matrix(0.00648268,0,0,0.00613994,3.2226465,13.920909)"
+ id="layer1"
+ inkscape:label="Ebene 1"
+ style="fill:#e6e4dd;fill-opacity:1">
+ <g
+ id="Layer_1"
+ transform="matrix(2.1807061,0,0,2.1807061,274.16865,314.63404)"
+ style="fill:#e6e4dd;fill-opacity:1">
+ <linearGradient
+ y2="240.0674"
+ x2="210.9595"
+ y1="111.8271"
+ x1="27.813499"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4463">
+ <stop
+ id="stop4465"
+ style="stop-color:#D7E1FF"
+ offset="0" />
+ <stop
+ id="stop4467"
+ style="stop-color:#D4DEFD"
+ offset="0.1917" />
+ <stop
+ id="stop4469"
+ style="stop-color:#C9D4F8"
+ offset="0.3573" />
+ <stop
+ id="stop4471"
+ style="stop-color:#B7C3EE"
+ offset="0.5132" />
+ <stop
+ id="stop4473"
+ style="stop-color:#9EABE1"
+ offset="0.6632" />
+ <stop
+ id="stop4475"
+ style="stop-color:#7E8CD0"
+ offset="0.809" />
+ <stop
+ id="stop4477"
+ style="stop-color:#5767BB"
+ offset="0.9498" />
+ <stop
+ id="stop4479"
+ style="stop-color:#4758B3"
+ offset="1" />
+ </linearGradient>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1"
+ id="path4433"
+ d="m 106.117,309.742 c 64.33,-1.896 114.535,-53.378 104.935,-120.58 C 206.479,157.148 181.159,119.634 164.419,90.714 144.492,56.292 124.429,27.628 106.117,0 h -0.001 C 87.803,27.628 67.74,56.292 47.814,90.714 31.073,119.633 5.754,157.148 1.181,189.162 c -9.6,67.202 40.605,118.685 104.936,120.58 z" />
+ </g>
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-43.649597"
+ y="-9.7969189" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="fastfwd.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fastfwd.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.520834"
+ inkscape:cx="-3.5377572"
+ inkscape:cy="11.429703"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-11.875816"
+ y="-20.02206"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-11.875816"
+ y="-20.02206">see: play</tspan></text>
+ <g
+ transform="translate(-32.261966,-0.082981)"
+ style="display:inline"
+ id="g2509">
+ <g
+ style="display:inline"
+ id="g1040">
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,11.682981 34.261966,4 49.478782,11.693852 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-2"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4-9"
+ d="M 40.961584,11.672995 40.258129,4.7045372 54.261965,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,12.482981 34.261966,20.165962 49.478782,12.47211 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-47-9"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ y="11.682981"
+ x="35"
+ height="0.80000001"
+ width="19.261965"
+ id="rect2198-0-6-0"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.11202204;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4-1"
+ d="m 40.961584,12.492967 -0.703455,6.968458 14.003836,-6.978444 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="fastrev.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fastrev.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.625156"
+ inkscape:cx="-31.54992"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-17.887362"
+ y="-25.116934"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-17.887362"
+ y="-25.116934">see: play</tspan></text>
+ <g
+ transform="matrix(-1,0,0,1,56.261966,-0.082981)"
+ style="display:inline"
+ id="g2509">
+ <g
+ style="display:inline"
+ id="g1040">
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,11.682981 34.261966,4 49.478782,11.693852 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-1"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4-10"
+ d="M 40.961584,11.672995 40.258129,4.7045372 54.261965,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,12.482981 34.261966,20.165962 49.478782,12.47211 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-47-3"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ y="11.682981"
+ x="35"
+ height="0.80000001"
+ width="19.261965"
+ id="rect2198-0-6-4"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.11202204;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4-1"
+ d="m 40.961584,12.492967 -0.703455,6.968458 14.003836,-6.978444 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="23"
+ viewBox="0 0 6.614583 6.0854168"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ff_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-1.2561892,289.19339)"
+ id="b-5"
+ y1="45.538715"
+ y2="11.687484"
+ x2="17.84823"
+ gradientUnits="userSpaceOnUse"
+ x1="36.312538">
+ <stop
+ stop-color="#536161"
+ id="stop12-6"
+ style="stop-color:#bfc9c9;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-color="#f4f5f5"
+ id="stop14-2"
+ style="stop-color:#fbfbfb;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-9"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.053059,207.26327)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-0"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-0"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.099446,215.5085)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-7"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-2"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ id="a"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4" />
+ </radialGradient>
+ <radialGradient
+ id="a-3"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2-3" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4-8" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-05-9-1-9-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236943,290.59976)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#ffc9ff"
+ borderopacity="1"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="8.4788305"
+ inkscape:cx="17.941706"
+ inkscape:cy="-4.8651097"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ borderlayer="true">
+ <sodipodi:guide
+ position="3.3077478,4.5715572"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.91456)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.213112"
+ y="274.17368"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-25.213112"
+ y="274.17368"
+ style="stroke-width:0.26458332">see: shbtn_up!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.213778"
+ y="277.96481"
+ id="text5576"><tspan
+ sodipodi:role="line"
+ id="tspan5574"
+ x="-25.213778"
+ y="277.96481"
+ style="stroke-width:0.26458335">25*23</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-5-05-9-1-9-3);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-9-3"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.12954104"
+ y="291.0441" />
+ <g
+ id="g47"
+ transform="matrix(0.08625233,0,0,0.08625233,0.66145827,291.43857)">
+ <polygon
+ style="fill:#0b4819"
+ points="0.511,12.364 0.511,5.078 5.402,6.763 5.402,13.541 "
+ id="polygon9" />
+ <polygon
+ style="fill:#0b4819"
+ points="4.455,42.317 4.455,15.226 9.13,16.215 9.13,41.393 "
+ id="polygon11" />
+ <polygon
+ style="fill:#105c80"
+ points="61.351,2.432 19.834,45.706 25.361,45.997 55.516,15.154 55.516,44.305 52.166,47.454 60.662,47.913 60.662,55.981 34.012,53.917 47.597,40.738 47.597,34.243 28.175,53.465 4.919,51.667 42.222,11.55 36.083,11.882 9.13,41.393 9.13,16.215 11.683,13.201 5.402,13.541 5.402,6.763 27.321,5.066 15.306,18.846 15.306,24.71 33.126,4.617 "
+ id="polygon13" />
+ <polygon
+ style="fill:#0b4819"
+ points="4.455,15.226 7.159,11.971 11.683,13.201 9.13,16.215 "
+ id="polygon15" />
+ <polygon
+ style="fill:#084010"
+ points="11.004,18.039 15.306,18.846 15.306,24.71 11.004,24.358 "
+ id="polygon17" />
+ <polygon
+ style="fill:#0c541e"
+ points="15.82,47.006 19.834,45.706 25.361,45.997 21.714,47.346 "
+ id="polygon19" />
+ <polygon
+ style="fill:#1a5c34"
+ points="23.808,3.106 27.321,5.066 15.306,18.846 11.004,18.039 "
+ id="polygon21" />
+ <polygon
+ style="fill:#0b4819"
+ points="11.004,24.358 30.022,2.58 33.126,4.617 15.306,24.71 "
+ id="polygon23" />
+ <polygon
+ style="fill:#1a5c34"
+ points="33.195,10.432 36.083,11.882 9.13,41.393 4.455,42.317 "
+ id="polygon25" />
+ <polygon
+ style="fill:#0b4819"
+ points="0,53.344 39.798,10.042 42.222,11.55 4.919,51.667 "
+ id="polygon27" />
+ <polygon
+ style="fill:#1a5c34"
+ points="45.597,34.677 47.597,34.243 28.175,53.465 24.721,55.437 "
+ id="polygon29" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,41.737 45.597,34.677 47.597,34.243 47.597,40.738 "
+ id="polygon31" />
+ <polygon
+ style="fill:#0b4819"
+ points="30.973,55.965 45.597,41.737 47.597,40.738 34.012,53.917 "
+ id="polygon33" />
+ <polygon
+ style="fill:#13802d"
+ points="54.168,45.648 50.538,49.059 52.166,47.454 55.516,44.305 "
+ id="polygon35" />
+ <polygon
+ style="fill:#0b4819"
+ points="21.714,47.346 54.168,13.9 55.516,15.154 25.361,45.997 "
+ id="polygon37" />
+ <polygon
+ style="fill:#084010"
+ points="54.168,13.9 55.516,15.154 55.516,44.305 54.168,45.648 "
+ id="polygon39" />
+ <polygon
+ style="fill:#084010"
+ points="59.759,49.604 60.662,47.913 60.662,55.981 59.759,58.403 "
+ id="polygon41" />
+ <polygon
+ style="fill:#1a5c34"
+ points="60.507,0 61.351,2.432 19.834,45.706 15.82,47.006 "
+ id="polygon43" />
+ <polygon
+ style="fill:url(#a-3)"
+ points="60.507,0 15.82,47.006 21.714,47.346 54.168,13.9 54.168,45.648 50.538,49.059 59.759,49.604 59.759,58.403 30.973,55.965 45.597,41.737 45.597,34.677 24.721,55.437 0,53.344 39.798,10.042 33.195,10.432 4.455,42.317 4.455,15.226 7.159,11.971 0.511,12.364 0.511,5.078 23.808,3.106 11.004,18.039 11.004,24.358 30.022,2.58 "
+ id="polygon45" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="23"
+ viewBox="0 0 6.614583 6.0854168"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ff_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236936,290.59975)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-1.2561892,289.19339)"
+ id="b-5"
+ y1="45.538715"
+ y2="11.687484"
+ x2="17.84823"
+ gradientUnits="userSpaceOnUse"
+ x1="36.312538">
+ <stop
+ stop-color="#536161"
+ id="stop12-6"
+ style="stop-color:#bfc9c9;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-color="#f4f5f5"
+ id="stop14-2"
+ style="stop-color:#fbfbfb;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-9"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.053059,207.26327)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-0"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-0"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.099446,215.5085)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-7"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-2"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ id="a"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4" />
+ </radialGradient>
+ <radialGradient
+ id="a-6"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2-1" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4-6" />
+ </radialGradient>
+ <radialGradient
+ id="a-0"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2-9" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4-3" />
+ </radialGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#ffc9ff"
+ borderopacity="1"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.990877"
+ inkscape:cx="-25.526402"
+ inkscape:cy="1.9511936"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ borderlayer="true">
+ <sodipodi:guide
+ position="3.3077478,4.5715572"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.91456)">
+ <rect
+ style="fill:url(#linearGradient1811-8-5);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.12954104"
+ y="291.0441" />
+ <rect
+ y="291.30557"
+ x="0.39101851"
+ height="5.3033791"
+ width="5.8325462"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1"
+ style="fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.213112"
+ y="274.17368"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-25.213112"
+ y="274.17368"
+ style="stroke-width:0.26458332">see: shbtn_up!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.213778"
+ y="277.96481"
+ id="text5576"><tspan
+ sodipodi:role="line"
+ id="tspan5574"
+ x="-25.213778"
+ y="277.96481"
+ style="stroke-width:0.26458335">25*23</tspan></text>
+ <g
+ id="g47"
+ transform="matrix(0.08625233,0,0,0.08625233,0.66145826,291.43857)">
+ <polygon
+ style="fill:#0b4819"
+ points="0.511,5.078 5.402,6.763 5.402,13.541 0.511,12.364 "
+ id="polygon9" />
+ <polygon
+ style="fill:#0b4819"
+ points="4.455,15.226 9.13,16.215 9.13,41.393 4.455,42.317 "
+ id="polygon11" />
+ <polygon
+ style="fill:#105c80"
+ points="52.166,47.454 60.662,47.913 60.662,55.981 34.012,53.917 47.597,40.738 47.597,34.243 28.175,53.465 4.919,51.667 42.222,11.55 36.083,11.882 9.13,41.393 9.13,16.215 11.683,13.201 5.402,13.541 5.402,6.763 27.321,5.066 15.306,18.846 15.306,24.71 33.126,4.617 61.351,2.432 19.834,45.706 25.361,45.997 55.516,15.154 55.516,44.305 "
+ id="polygon13" />
+ <polygon
+ style="fill:#0b4819"
+ points="7.159,11.971 11.683,13.201 9.13,16.215 4.455,15.226 "
+ id="polygon15" />
+ <polygon
+ style="fill:#084010"
+ points="15.306,18.846 15.306,24.71 11.004,24.358 11.004,18.039 "
+ id="polygon17" />
+ <polygon
+ style="fill:#0c541e"
+ points="19.834,45.706 25.361,45.997 21.714,47.346 15.82,47.006 "
+ id="polygon19" />
+ <polygon
+ style="fill:#1a5c34"
+ points="27.321,5.066 15.306,18.846 11.004,18.039 23.808,3.106 "
+ id="polygon21" />
+ <polygon
+ style="fill:#0b4819"
+ points="30.022,2.58 33.126,4.617 15.306,24.71 11.004,24.358 "
+ id="polygon23" />
+ <polygon
+ style="fill:#1a5c34"
+ points="36.083,11.882 9.13,41.393 4.455,42.317 33.195,10.432 "
+ id="polygon25" />
+ <polygon
+ style="fill:#0b4819"
+ points="39.798,10.042 42.222,11.55 4.919,51.667 0,53.344 "
+ id="polygon27" />
+ <polygon
+ style="fill:#1a5c34"
+ points="47.597,34.243 28.175,53.465 24.721,55.437 45.597,34.677 "
+ id="polygon29" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,34.677 47.597,34.243 47.597,40.738 45.597,41.737 "
+ id="polygon31" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,41.737 47.597,40.738 34.012,53.917 30.973,55.965 "
+ id="polygon33" />
+ <polygon
+ style="fill:#13802d"
+ points="50.538,49.059 52.166,47.454 55.516,44.305 54.168,45.648 "
+ id="polygon35" />
+ <polygon
+ style="fill:#0b4819"
+ points="54.168,13.9 55.516,15.154 25.361,45.997 21.714,47.346 "
+ id="polygon37" />
+ <polygon
+ style="fill:#084010"
+ points="55.516,15.154 55.516,44.305 54.168,45.648 54.168,13.9 "
+ id="polygon39" />
+ <polygon
+ style="fill:#084010"
+ points="60.662,47.913 60.662,55.981 59.759,58.403 59.759,49.604 "
+ id="polygon41" />
+ <polygon
+ style="fill:#1a5c34"
+ points="61.351,2.432 19.834,45.706 15.82,47.006 60.507,0 "
+ id="polygon43" />
+ <polygon
+ style="fill:url(#a)"
+ points="50.538,49.059 59.759,49.604 59.759,58.403 30.973,55.965 45.597,41.737 45.597,34.677 24.721,55.437 0,53.344 39.798,10.042 33.195,10.432 4.455,42.317 4.455,15.226 7.159,11.971 0.511,12.364 0.511,5.078 23.808,3.106 11.004,18.039 11.004,24.358 30.022,2.58 60.507,0 15.82,47.006 21.714,47.346 54.168,13.9 54.168,45.648 "
+ id="polygon45" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="23"
+ viewBox="0 0 6.614583 6.0854168"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ff_down.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_down.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-05-9-1-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236926,290.59971)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#ffc9ff"
+ borderopacity="1"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.2394152"
+ inkscape:cx="-16.562901"
+ inkscape:cy="-11.729939"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ borderlayer="true">
+ <sodipodi:guide
+ position="3.3077478,4.5715572"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.91456)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.213112"
+ y="274.17368"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-25.213112"
+ y="274.17368"
+ style="stroke-width:0.26458332">see: shbtn_up!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.213778"
+ y="277.96481"
+ id="text5576"><tspan
+ sodipodi:role="line"
+ id="tspan5574"
+ x="-25.213778"
+ y="277.96481"
+ style="stroke-width:0.26458335">25*23</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot6747"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:18.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion6749"><rect
+ id="rect6751"
+ width="71.472122"
+ height="56.13982"
+ x="-25.946976"
+ y="-12.146357" /></flowRegion><flowPara
+ id="flowPara6753" /></flowRoot> <rect
+ style="fill:url(#linearGradient1811-8-5-05-9-1-5);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-6"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.12954104"
+ y="291.0441" />
+ <rect
+ y="291.30557"
+ x="0.39101851"
+ height="5.3033791"
+ width="5.8325462"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-6-3"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.2528705;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="23"
+ viewBox="0 0 6.614583 6.0854168"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ff_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1791-0-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444236,0,0,0.34272548,-7.7236965,290.59975)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#ffc9ff"
+ borderopacity="1"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.2394152"
+ inkscape:cx="-60.200996"
+ inkscape:cy="-26.118716"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ borderlayer="true">
+ <sodipodi:guide
+ position="3.3077478,4.5715572"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="3.3077478,-19.784077"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.91456)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.213112"
+ y="274.17368"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-25.213112"
+ y="274.17368"
+ style="stroke-width:0.26458332">see: shbtn_up!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.213778"
+ y="277.96481"
+ id="text5576"><tspan
+ sodipodi:role="line"
+ id="tspan5574"
+ x="-25.213778"
+ y="277.96481"
+ style="stroke-width:0.26458335">25*23</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot6747"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:18.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion6749"><rect
+ id="rect6751"
+ width="71.472122"
+ height="56.13982"
+ x="-25.946976"
+ y="-12.146357" /></flowRegion><flowPara
+ id="flowPara6753" /></flowRoot> <rect
+ style="fill:url(#linearGradient1791-0-0);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-7-6-7-3-3"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.12954104"
+ y="291.0441" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125578"
+ x="-0.19609025"
+ y="370.06717"
+ id="text1706-3-1"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-6-1"
+ x="-0.19609025"
+ y="370.06717"
+ style="fill:#2ca05a;stroke-width:0.47125578">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.87081647px;line-height:3.84484386px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.15379374"
+ x="1.8809944"
+ y="294.98056"
+ id="text1702-9-0"><tspan
+ sodipodi:role="line"
+ id="tspan1700-0-3"
+ x="1.8809944"
+ y="294.98056"
+ style="fill:#ffd42a;stroke-width:0.15379374">GG</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="23"
+ viewBox="0 0 6.6145833 6.0854169"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ff_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ id="a"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444237,0,0,0.34272549,-8.0162842,327.06418)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-05-9-1-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444237,0,0,0.34272549,-8.0873512,318.63202)" />
+ <radialGradient
+ id="a-0"
+ gradientUnits="userSpaceOnUse"
+ cy="442.72311"
+ cx="-122.3936"
+ gradientTransform="matrix(1,0,0,-1,134.4463,453.7334)"
+ r="29.5804">
+ <stop
+ stop-color="#fff"
+ offset="0"
+ id="stop2-9" />
+ <stop
+ stop-color="#007808"
+ offset="1"
+ id="stop4-3" />
+ </radialGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-05-9-1-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444237,0,0,0.34272549,-7.9620903,308.98692)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1791"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444237,0,0,0.34272549,-7.723696,290.59976)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1791-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24444237,0,0,0.34272549,-7.6683478,299.45584)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.2826087"
+ inkscape:cx="35.775492"
+ inkscape:cy="-48.032321"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:lockguides="false">
+ <sodipodi:guide
+ position="3.3072917,7.2487089"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-7.6488686"
+ orientation="0,1"
+ id="guide2243"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.91456)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.353254"
+ y="270.28018"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-27.353254"
+ y="270.28018"
+ style="stroke-width:0.26458332">s.a.: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-5-05-9-1-9);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-9"
+ width="6.3555012"
+ height="5.8263345"
+ x="-0.23411582"
+ y="319.07635" />
+ <rect
+ style="fill:url(#linearGradient1811-8-5-0);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-3"
+ width="6.3555012"
+ height="5.8263345"
+ x="-0.16304801"
+ y="327.50854" />
+ <rect
+ y="327.77002"
+ x="0.098429456"
+ height="5.3033791"
+ width="5.8325462"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-1"
+ style="fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g47"
+ transform="matrix(0.08625233,0,0,0.08625233,0.29780141,319.47082)">
+ <polygon
+ style="fill:#0b4819"
+ points="0.511,5.078 5.402,6.763 5.402,13.541 0.511,12.364 "
+ id="polygon9" />
+ <polygon
+ style="fill:#0b4819"
+ points="4.455,15.226 9.13,16.215 9.13,41.393 4.455,42.317 "
+ id="polygon11" />
+ <polygon
+ style="fill:#105c80"
+ points="15.306,18.846 15.306,24.71 33.126,4.617 61.351,2.432 19.834,45.706 25.361,45.997 55.516,15.154 55.516,44.305 52.166,47.454 60.662,47.913 60.662,55.981 34.012,53.917 47.597,40.738 47.597,34.243 28.175,53.465 4.919,51.667 42.222,11.55 36.083,11.882 9.13,41.393 9.13,16.215 11.683,13.201 5.402,13.541 5.402,6.763 27.321,5.066 "
+ id="polygon13" />
+ <polygon
+ style="fill:#0b4819"
+ points="7.159,11.971 11.683,13.201 9.13,16.215 4.455,15.226 "
+ id="polygon15" />
+ <polygon
+ style="fill:#084010"
+ points="15.306,18.846 15.306,24.71 11.004,24.358 11.004,18.039 "
+ id="polygon17" />
+ <polygon
+ style="fill:#0c541e"
+ points="19.834,45.706 25.361,45.997 21.714,47.346 15.82,47.006 "
+ id="polygon19" />
+ <polygon
+ style="fill:#1a5c34"
+ points="27.321,5.066 15.306,18.846 11.004,18.039 23.808,3.106 "
+ id="polygon21" />
+ <polygon
+ style="fill:#0b4819"
+ points="30.022,2.58 33.126,4.617 15.306,24.71 11.004,24.358 "
+ id="polygon23" />
+ <polygon
+ style="fill:#1a5c34"
+ points="36.083,11.882 9.13,41.393 4.455,42.317 33.195,10.432 "
+ id="polygon25" />
+ <polygon
+ style="fill:#0b4819"
+ points="39.798,10.042 42.222,11.55 4.919,51.667 0,53.344 "
+ id="polygon27" />
+ <polygon
+ style="fill:#1a5c34"
+ points="47.597,34.243 28.175,53.465 24.721,55.437 45.597,34.677 "
+ id="polygon29" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,34.677 47.597,34.243 47.597,40.738 45.597,41.737 "
+ id="polygon31" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,41.737 47.597,40.738 34.012,53.917 30.973,55.965 "
+ id="polygon33" />
+ <polygon
+ style="fill:#13802d"
+ points="50.538,49.059 52.166,47.454 55.516,44.305 54.168,45.648 "
+ id="polygon35" />
+ <polygon
+ style="fill:#0b4819"
+ points="54.168,13.9 55.516,15.154 25.361,45.997 21.714,47.346 "
+ id="polygon37" />
+ <polygon
+ style="fill:#084010"
+ points="55.516,15.154 55.516,44.305 54.168,45.648 54.168,13.9 "
+ id="polygon39" />
+ <polygon
+ style="fill:#084010"
+ points="60.662,47.913 60.662,55.981 59.759,58.403 59.759,49.604 "
+ id="polygon41" />
+ <polygon
+ style="fill:#1a5c34"
+ points="61.351,2.432 19.834,45.706 15.82,47.006 60.507,0 "
+ id="polygon43" />
+ <polygon
+ style="fill:url(#a)"
+ points="11.004,18.039 11.004,24.358 30.022,2.58 60.507,0 15.82,47.006 21.714,47.346 54.168,13.9 54.168,45.648 50.538,49.059 59.759,49.604 59.759,58.403 30.973,55.965 45.597,41.737 45.597,34.677 24.721,55.437 0,53.344 39.798,10.042 33.195,10.432 4.455,42.317 4.455,15.226 7.159,11.971 0.511,12.364 0.511,5.078 23.808,3.106 "
+ id="polygon45" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.808914"
+ y="323.17059"
+ id="text921"><tspan
+ sodipodi:role="line"
+ id="tspan919"
+ x="-25.808914"
+ y="323.17059"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">ff_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-25.808914"
+ y="331.84753"
+ id="text925"><tspan
+ sodipodi:role="line"
+ id="tspan923"
+ x="-25.808914"
+ y="331.84753"
+ style="stroke-width:0.26458332">ff_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.808914"
+ y="294.27213"
+ id="text950"><tspan
+ sodipodi:role="line"
+ id="tspan948"
+ x="-25.808914"
+ y="294.27213"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458335">ff_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.808914"
+ y="313.47849"
+ id="text954"><tspan
+ sodipodi:role="line"
+ id="tspan952"
+ x="-25.808914"
+ y="313.47849"
+ style="stroke-width:0.26458335">ff_down</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.808914"
+ y="304.17014"
+ id="text958"><tspan
+ sodipodi:role="line"
+ id="tspan956"
+ x="-25.808914"
+ y="304.17014"
+ style="stroke-width:0.26458335">ff_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-9.2883024"
+ y="294.96912"
+ id="text1880"><tspan
+ sodipodi:role="line"
+ id="tspan1878"
+ x="-9.2883024"
+ y="294.96912"
+ style="stroke-width:0.26458335">Cin an</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot1882"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion1884"><rect
+ id="rect1886"
+ width="64.149429"
+ height="41.188194"
+ x="-21.067524"
+ y="89.043137" /></flowRegion><flowPara
+ id="flowPara1888" /></flowRoot> <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-8.1789818"
+ y="323.46649"
+ id="text1892"><tspan
+ sodipodi:role="line"
+ id="tspan1890"
+ x="-8.1789818"
+ y="323.46649"
+ style="stroke-width:0.26458335">FF an</tspan></text>
+ <g
+ id="g47-5"
+ transform="matrix(0.08625233,0,0,0.08625233,0.36886922,327.90301)">
+ <polygon
+ style="fill:#0b4819"
+ points="0.511,5.078 5.402,6.763 5.402,13.541 0.511,12.364 "
+ id="polygon9-4" />
+ <polygon
+ style="fill:#0b4819"
+ points="4.455,15.226 9.13,16.215 9.13,41.393 4.455,42.317 "
+ id="polygon11-3" />
+ <polygon
+ style="fill:#105c80"
+ points="19.834,45.706 25.361,45.997 55.516,15.154 55.516,44.305 52.166,47.454 60.662,47.913 60.662,55.981 34.012,53.917 47.597,40.738 47.597,34.243 28.175,53.465 4.919,51.667 42.222,11.55 36.083,11.882 9.13,41.393 9.13,16.215 11.683,13.201 5.402,13.541 5.402,6.763 27.321,5.066 15.306,18.846 15.306,24.71 33.126,4.617 61.351,2.432 "
+ id="polygon13-6" />
+ <polygon
+ style="fill:#0b4819"
+ points="7.159,11.971 11.683,13.201 9.13,16.215 4.455,15.226 "
+ id="polygon15-4" />
+ <polygon
+ style="fill:#084010"
+ points="15.306,18.846 15.306,24.71 11.004,24.358 11.004,18.039 "
+ id="polygon17-3" />
+ <polygon
+ style="fill:#0c541e"
+ points="19.834,45.706 25.361,45.997 21.714,47.346 15.82,47.006 "
+ id="polygon19-1" />
+ <polygon
+ style="fill:#1a5c34"
+ points="27.321,5.066 15.306,18.846 11.004,18.039 23.808,3.106 "
+ id="polygon21-9" />
+ <polygon
+ style="fill:#0b4819"
+ points="30.022,2.58 33.126,4.617 15.306,24.71 11.004,24.358 "
+ id="polygon23-1" />
+ <polygon
+ style="fill:#1a5c34"
+ points="36.083,11.882 9.13,41.393 4.455,42.317 33.195,10.432 "
+ id="polygon25-0" />
+ <polygon
+ style="fill:#0b4819"
+ points="39.798,10.042 42.222,11.55 4.919,51.667 0,53.344 "
+ id="polygon27-9" />
+ <polygon
+ style="fill:#1a5c34"
+ points="47.597,34.243 28.175,53.465 24.721,55.437 45.597,34.677 "
+ id="polygon29-4" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,34.677 47.597,34.243 47.597,40.738 45.597,41.737 "
+ id="polygon31-5" />
+ <polygon
+ style="fill:#0b4819"
+ points="45.597,41.737 47.597,40.738 34.012,53.917 30.973,55.965 "
+ id="polygon33-6" />
+ <polygon
+ style="fill:#13802d"
+ points="50.538,49.059 52.166,47.454 55.516,44.305 54.168,45.648 "
+ id="polygon35-2" />
+ <polygon
+ style="fill:#0b4819"
+ points="54.168,13.9 55.516,15.154 25.361,45.997 21.714,47.346 "
+ id="polygon37-5" />
+ <polygon
+ style="fill:#084010"
+ points="55.516,15.154 55.516,44.305 54.168,45.648 54.168,13.9 "
+ id="polygon39-9" />
+ <polygon
+ style="fill:#084010"
+ points="60.662,47.913 60.662,55.981 59.759,58.403 59.759,49.604 "
+ id="polygon41-1" />
+ <polygon
+ style="fill:#1a5c34"
+ points="61.351,2.432 19.834,45.706 15.82,47.006 60.507,0 "
+ id="polygon43-7" />
+ <polygon
+ style="fill:url(#a-0)"
+ points="15.82,47.006 21.714,47.346 54.168,13.9 54.168,45.648 50.538,49.059 59.759,49.604 59.759,58.403 30.973,55.965 45.597,41.737 45.597,34.677 24.721,55.437 0,53.344 39.798,10.042 33.195,10.432 4.455,42.317 4.455,15.226 7.159,11.971 0.511,12.364 0.511,5.078 23.808,3.106 11.004,18.039 11.004,24.358 30.022,2.58 60.507,0 "
+ id="polygon45-7" />
+ </g>
+ <rect
+ style="fill:url(#linearGradient1811-8-5-05-9-1-5);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-6"
+ width="6.3555012"
+ height="5.8263345"
+ x="-0.10885526"
+ y="309.4313" />
+ <rect
+ y="309.69278"
+ x="0.15262221"
+ height="5.3033791"
+ width="5.8325462"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-6-3"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.2528705;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1791);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-7-6-7"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.12954114"
+ y="291.0441" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125581;"
+ x="-0.19608994"
+ y="370.06717"
+ id="text1706"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704"
+ x="-0.19608994"
+ y="370.06717"
+ style="fill:#2ca05a;stroke-width:0.47125581;">C</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1791-0);fill-opacity:1;stroke:#141414;stroke-width:0.25908223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-6-7-30-7-6-7-3"
+ width="6.3555012"
+ height="5.8263345"
+ x="0.18488947"
+ y="299.90018" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.79677582px;line-height:11.78139496px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.47125581;"
+ x="-0.15174912"
+ y="381.12177"
+ id="text1706-3"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704-6"
+ x="-0.15174912"
+ y="381.12177"
+ style="fill:#2ca05a;stroke-width:0.47125581;">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.87081671px;line-height:3.84484386px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.15379374"
+ x="1.9363433"
+ y="303.83664"
+ id="text1702-9"><tspan
+ sodipodi:role="line"
+ id="tspan1700-0"
+ x="1.9363433"
+ y="303.83664"
+ style="fill:#ffd42a;stroke-width:0.15379374">GG</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="11.455774"
+ y="322.93219"
+ id="text1885"><tspan
+ sodipodi:role="line"
+ id="tspan1883"
+ x="11.455774"
+ y="322.93219"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458335">FFmpeg-Logo: lizenzfrei, geringe Schöpfungshöhe. </tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="10.881209"
+ y="313.52328"
+ id="text1889"><tspan
+ sodipodi:role="line"
+ id="tspan1887"
+ x="10.881209"
+ y="313.52328"
+ style="stroke-width:0.26458335">Umschalter</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
+ x="-30.033176"
+ y="274.22913"
+ id="text3890"><tspan
+ sodipodi:role="line"
+ id="tspan3888"
+ x="-30.033176"
+ y="274.22913"
+ style="fill:#000000;stroke-width:0.26458332;">s.a.: 0.Neophyte-Logos</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_capb_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_capb_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24402056,0,0,0.37320791,-14.319245,-297.34909)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.2961956"
+ inkscape:cx="-98.411231"
+ inkscape:cy="-97.525147"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3);fill-opacity:1;stroke:#141414;stroke-width:0.27012515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0"
+ width="6.3445396"
+ height="6.3445396"
+ x="-6.4795613"
+ y="-296.86496"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-21.686598"
+ y="282.6077"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-21.686598"
+ y="282.6077"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22414494px;line-height:7.78018093px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.31120721"
+ x="1.3318551"
+ y="295.91125"
+ id="text3360-1-4"><tspan
+ sodipodi:role="line"
+ id="tspan3358-9-2"
+ x="1.3318551"
+ y="295.91125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22414494px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.31120721">B</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_capb_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_capb_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755315,290.04617)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.2961956"
+ inkscape:cx="-175.16639"
+ inkscape:cy="-89.030505"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="378.57858"
+ id="text2474"><tspan
+ sodipodi:role="line"
+ id="tspan2472"
+ x="-67.039833"
+ y="378.57858"
+ style="stroke-width:0.26458332">file_size_zero_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="385.78699"
+ id="text2478"><tspan
+ sodipodi:role="line"
+ id="tspan2476"
+ x="-67.039833"
+ y="385.78699"
+ style="stroke-width:0.26458332">file_size_zero_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="393.5062"
+ id="text2482"><tspan
+ sodipodi:role="line"
+ id="tspan2480"
+ x="-67.039833"
+ y="393.5062"
+ style="stroke-width:0.26458332">file_size_zero_dn</tspan></text>
+ <image
+ y="374.56866"
+ x="-33.966713"
+ id="image2530"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="382.11398"
+ x="-33.966713"
+ id="image2560"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="390.22119"
+ x="-33.966713"
+ id="image2590"
+ xlink:href="data:image/png;base64,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 AElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.78513"
+ x="0.39971912"
+ height="5.8151455"
+ width="5.815145"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27027148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.40459156px;line-height:8.00573921px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.32022956"
+ x="1.1814024"
+ y="304.49017"
+ id="text3360-1-4"
+ transform="scale(1.0289915,0.97182532)"><tspan
+ sodipodi:role="line"
+ id="tspan3358-9-2"
+ x="1.1814024"
+ y="304.49017"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.40459156px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.32022956">B</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-12.771102"
+ y="285.33685"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-12.771102"
+ y="285.33685"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145 6.6145"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_capb_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_capb_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401749,0,0,0.37320321,-14.267323,-314.163)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221586,-7.6754346,290.04619)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-7.8326015,298.8306)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401749,0,0,0.37320321,-13.750363,-342.11672)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-8.1923952,317.99991)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-8.3495612,326.78432)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401749,0,0,0.37320321,-13.530495,-370.9927)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-8.4122629,346.87589)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-8.5694289,355.6603)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24401749,0,0,0.37320321,-12.87089,-397.01043)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-9.0718677,372.89362)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337195,0,0,0.37221585,-9.2290337,381.67803)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="10.416442"
+ inkscape:cy="-276.10371"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ scale-x="0.26458" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0"
+ width="6.3276706"
+ height="6.3276706"
+ x="-0.013752273"
+ y="299.31326" />
+ <image
+ y="290.88574"
+ x="-33.966713"
+ id="image2261"
+ xlink:href="data:image/png;base64,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 "
+ style="fill:#ffcc00;image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="294.50259"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-67.039833"
+ y="294.50259"
+ style="stroke-width:0.26458332">file_size_capb_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="302.90292"
+ id="text2270"><tspan
+ sodipodi:role="line"
+ id="tspan2268"
+ x="-67.039833"
+ y="302.90292"
+ style="stroke-width:0.26458332">file_size_capb_hi</tspan></text>
+ <image
+ y="299.00226"
+ x="-33.966713"
+ id="image2299"
+ xlink:href="data:image/png;base64,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 /wAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="323.4978"
+ id="text2304"><tspan
+ sodipodi:role="line"
+ id="tspan2302"
+ x="-67.039833"
+ y="323.4978"
+ style="stroke-width:0.26458332">file_size_semi_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="331.21527"
+ id="text2308"><tspan
+ sodipodi:role="line"
+ id="tspan2306"
+ x="-67.039833"
+ y="331.21527"
+ style="stroke-width:0.26458332">file_size_semi_hi</tspan></text>
+ <image
+ y="319.25659"
+ x="-33.966713"
+ id="image2337"
+ xlink:href="data:image/png;base64,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 TkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="326.23795"
+ x="-33.966713"
+ id="image2367"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="352.07214"
+ id="text2372"><tspan
+ sodipodi:role="line"
+ id="tspan2370"
+ x="-67.039833"
+ y="352.07214"
+ style="stroke-width:0.26458332">file_size_lwrb_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="359.90488"
+ id="text2376"><tspan
+ sodipodi:role="line"
+ id="tspan2374"
+ x="-67.039833"
+ y="359.90488"
+ style="stroke-width:0.26458332">file_size_lwrb_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="367.17004"
+ id="text2380"><tspan
+ sodipodi:role="line"
+ id="tspan2378"
+ x="-67.039833"
+ y="367.17004"
+ style="stroke-width:0.26458332">file_size_lwrb_dn</tspan></text>
+ <image
+ y="348.17151"
+ x="-33.966713"
+ id="image2409"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAALP3pUWHRSYXcgcHJvZmlsZSB0eXBl IGV4aWYAAHja3Zlbdhw5DkT/uYpZAl8gyOXweU7vYJY/F8ySLHfblnra8zNVllLOyuQDEQgEstz+ 9x/H/YtXEi0ui9bSSvG8csstdv6o/ttrv47PueDz/f32Cq/fwf3wg8gxcUzPSc2vT9Pr/Nv15f3I QD/4IMifbkjv08SPE2t/nY8+frcirX75j6/67eecVc/Zz+56LoShPJt6pnBvw3DhIErp3lZ4Kz/C 33rfjXf13c+QmWz6wXuGFmJI/oQclgs9nLDD4jjDZI057qgcY5wx3XM1aWxxJp9CyvYOJ2pqaaWa Yppxp5SyS/F9LeHO2+58M9g2V+DSGBgscMsv3+6zC77yPmd6YhQCuw+vWLGuGA2HYGFM9pvLACSc F25yA/z2fn+5D8AmEJQb5soGux/PEEPCN26lS4DEdcLx4VfQZajFy5LM3MJiQgICX0KSUILXGDWE nGIFoM7KY8pxgEAQiYtFxpxSAZsKj5ibezTca6PE5zypAj6SSlKwaakDVs4CfzRXONQlSRaRIipV mnRXUslFSilaLOe6Js1KEqpq1aa9ppqr1FK11tpqb7ElUlJaadpqa6135uzZdenc3bmi9xFHGnnI KENHHW30CX1mnjLL1Flnm33FlVZessrSVVdbfYcNldzOW3bZuutuux+4dtLJR045euppp7+j9kL1 L++/gVp4oRYvUnadvqPGWVUb6A4RTGfEMAOxmAOIqyEAoaNh5mvIORpyhplvkayQyCLFsFnBdxcK EOYdopzwjt035L6MmyPWn+EWv4KcM+h+A3LR7fQn3H6A2jIlnBexJwstpj6RfZsAdv4R7Lc//unx /3CgI7MPWOfWTEd60z01nD50KxzzI9VTwmmAdjqVRZPsSNg9lJcp58iqenaNS6YuiLJdPENyXnCQ 2xWMwtKzVgHRMbscSdmHuVfIQgFBs35ydJ9d8NXja6Cwd4Lcyxa/BPIsKX2kYv/ffZ5VKjQas4id iZTScfbY/m17aTnVsK0O2O7T3f2BaieHYkLD7cZ/C6z3vzy6zy746pGB0pqlzzVsVWwHDG1jH7eJ uwhaJ7vJ1Gew0Onvp176qNqJy3Q/3/UF3SIoqNenR/fVC3991OEqq4c/rEqK7iFs7LttkvbxhKZn VkT+nj813CMirDB7Tdu2+9m+gb0QrDVKO3ERxpJRHjNR4eBKzrYaOTTlS5F6XLqr6RvGm+BTTMPy cXfViMjliFq3LXisKtniX4cgVPOIbWPsNs5kPM3Ohjmy19kbDgXpNyWsBiH7vdo9ZdxZ7102e0Od Gbcw8/bTPuSs08WaKhJ9RLYyR9rNhmJ+CDkGFQQbZbYp71TL3RPQljxvIBDRk+ykkyW7JztJmsAA Ptm5DCQUUtevc9J96cJvnP2ese98jeoqerQzldGAA5FzUcXW7Dq4vmVlH6WF3OemSNYwtlAe27wU CP051uw0stmtPd+QYZk4dPujLG5/tlzvZ2KfxQB2e2JSzsCSboI2Yw+tOC0rhYoVrX72mbTFQ+k6 GRwzA64WGLCMtkZdZFUPbCFO/HIk+I2ws2nD2MV8lL0nyh4rOw0wg7FxEJ2diX6IddwEhk6XBkcn HCIjxpA7NvV3JJfVOIg1QIW2cWhxx63Hq1B8M+TFDaqggnHTGtwlUD3TXsYS4hmDybkzPuerADKz pT6leLdGwzDAZR2yLAUjjxFz7FCp6W1sMGhl44ixHVj5I+4ZeRdCDj6h1z0IPO4G6o5epGbyKcU8 51yx5hgmjjTUqIO7msy1Hg1w/0w8vmmH+5l45NHqnI1Owte5Nc0lcshifMY4bWEyiOQ0lYE4+CXX TUGVNULIE2FFGey4nUAJ7FRFnAfhgdH0PaIrn7EEsdAhJLmlE58ZmxwuydgyuDWvOmljRAAeB8Mq jCGsvticCHCyKSdcwCc9vMYOWd0mC9yhSlNbnyuaNxYNCLhjG4Q0xs5CJsZw0E/dYRX3b/HpFmuM 8fA4vHXcsMUgiSYlC/wtXpd2vgGZyVHgAuRFjEFjrpTro4lPkPXqakJGKP0A2VEeET/WSC1umu5d jYOjEgQzAutaD1pCaii8m6gWDviKtNkFgo0yYhbJd4GDTRMhpzBdrYKY5xcexOR7/dNy9JFBD4Hc XxnUBzbpTO39Uep0sN78d1GWfJ6UmWom3ueGJpuHRRvGcZskJcS9nZf6mAvDOXwmmYWSkLLheIwe 6qaJlcw7eyHZMVn5GE0AOlPeWEJaNY3bx7dcKQ44eB9B4KPSH5qaQ4PXmoygKcQJe/B+2ZMWFft+ SmTQwXTtOsbwszW6r5qXzzyLu0UgH/JqxtJaoMsA5nmXfd1WVsqqrZpEraCwrXd6qxQvBxBaps2a 9ROnGbAJbQ6DBxfox6A0oFDRUm8genQuszhqbNqYgmOcG0+1sLpS42CIUagHtCGd+lx0dRog2+b8 q+12f9efa/jepHaS05jpziUmk1cyfr/SId90mG/pUMwaoAcYoE5vBwsJkbcE2ib+6RRzI/hgy8by yVI2qU9APFCg2lseM7T1AYW+H3mYzQw+bZxWWdmwi/4ikuzZU7S0WaPH1ve0TlRSmrNgoE01/Hhl n/sdwm/RcT90jRsGz7wSxYiCnH2MeCKMh2nr2PMx+NoScmO2iC1bimAS2sskKPIv1YwWO/5sST3R 0NKc72smXLF66A/ze3LTWi+Th3Zzc6DIZbxJa36k9Tq1aAEqZcccwiwArS40GjWRQQWgX0u67YHO tTG9Ag0Ggw3NfRN2/CIf3e9IWMtXR9t/xkB9subdKIrdx2SEPdSnKz1pwjtS84rYfCuI1MOTH5eb BQF15tbWLbPXDEkFGa0lTpwSIcVyUA/w2Tsa2R4vQ/oL5Y55AnU557Bidq22uCg6FtHeGbAp4JkV nNOKnYkMN2HD/vyJULrw9ivuGOJ2B8fia8HMTbOD7IRKuh6cavlYAmmhsfs9w/8ySx5DfZHBAgQ9 8w6d6Wl1YGZjwVPfTWXkZcefKBg3vOaWaRFaNj3CScQxRldalUxbLdGZs2jGCpRQwtO7PRYB2+9R LbIfF9isbAp5UUe2BzQSccON9i7e9aq4sfao/WwOT03dardbobdt7q/qlfu7AvauX6J4Q2CaZYVi D6KoacCB+6afmvsulGjS6cyYtdy0gEn6VN18fTG2oVgnGHs0Vm3ryp0VCtop2Ov1Q5rkeIygQ+hs CPXAKHX0CC9KXqWFFYUIrKmarejA6242WdOwFaWl7VQsFamItVKfU8EF3w1ektmxlleNBWtzaKjv NaOI7BjtZlS9Fg+JAby2VxlPd/L0mMG+s5hn0v3Q6nmanVbWhMxtB2sjXaRW3WHCoP+IRUcetdBp 0PFW/B/7jGblhkAB7ts99mI3RLxHabB4LRQuOgpcuq5+IS73OR3pYv8UyhdrqgQ/pwyA1gV9rzTj Vprpn2YhU/sxiaQezO70IMf6gakJTZudwKo9pSsekBlqkPH0szjORBny6zvVdP+d8qs9V6LdNoM5 6MxOdWziPP45mH9uj9nSeGimD9XH5/fmqr0ZMYOL1ExTuHP02wVjj1en81paNt2TfePQ7FsNXxaN QLXWazMeKcRPNUZTfE55ykXY+b23dObXapICGSU0jKJ9GVJo1IINld67OJBEF7DPoHSAbtCK11Z1 5qRKQ+5w5dvHXKfGfpu65xFFxoo+Tcp4BIWK8IwIjOWqECGnhan2qKGk7l7mXp5cem5DuOs6U2CK 5UTtrMN29DSp1R5AX+F7HhnptHLopJHVyFmlk9k7oPxT79dqCKFtS54phOVuy9lv3rd/h6X7DQ+P /vcDkaSruf8AgTNOqkzYuNcAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAADsQAAA7EAZUrDhsA AAAHdElNRQfiAhIBCAtJQeXqAAABrUlEQVRIx92VP4saQRjGf7eI3uoiEVlEWUF0GwVlBcFmwV6w 2tYmHyFtPkW+wxV2VtpY2qmgIopKWP+DlRBZFLHQNLmEC8iFObbJU84zvD/emeedeapUKl+Bz7ij F8+v4rpLgC8S7uqT55FTrVZRFIVGo8FutxMmPASoqkowGESW5Q+14PYR/QcAz79uzGazaJqG3+/H cRzW6zXz+fzjAI/Hg2VZZDIZJOlPw8VikfF4TLPZ5Hq9igNKpRKhUIjJZMJ+v+d2uxGPx9F1nVwu x/PzM7VaTRwQDodptVr0er3fa51Oh3Q6jWVZ6LpOPp9nMBiIXbJt22+Kv2o6nWLbNpIkYRiGeIq2 2+27XiQSEQc4jvPQO51OAPh8PnHA/X53d9CCweBDLxAIAHC5XMQB0Wj0oReLxQA4HA7igNe8/61E IkEqleJ2uzEajcTn4Hw+Uy6XUVWV1WoFQDKZxDAMvF4vtm3T7XbFAe12m0KhgGmamKb5xlssFtTr dbG3qN/vI8sym82G4XCIYRhomoaiKByPR5bLJbPZ7N0UPVUqle8ufvpnCXgBfrhRHPj2E1aCiEvV 5Vo2AAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="355.37988"
+ x="-33.966713"
+ id="image2439"
+ xlink:href="data:image/png;base64,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 53AAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="363.26941"
+ x="-33.966713"
+ id="image2469"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="378.57858"
+ id="text2474"><tspan
+ sodipodi:role="line"
+ id="tspan2472"
+ x="-67.039833"
+ y="378.57858"
+ style="stroke-width:0.26458332">file_size_zero_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="385.78699"
+ id="text2478"><tspan
+ sodipodi:role="line"
+ id="tspan2476"
+ x="-67.039833"
+ y="385.78699"
+ style="stroke-width:0.26458332">file_size_zero_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.039833"
+ y="393.5062"
+ id="text2482"><tspan
+ sodipodi:role="line"
+ id="tspan2480"
+ x="-67.039833"
+ y="393.5062"
+ style="stroke-width:0.26458332">file_size_zero_dn</tspan></text>
+ <image
+ y="374.56866"
+ x="-33.966713"
+ id="image2530"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="382.11398"
+ x="-33.966713"
+ id="image2560"
+ xlink:href="data:image/png;base64,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 "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <image
+ y="390.22119"
+ x="-33.966713"
+ id="image2590"
+ xlink:href="data:image/png;base64,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 AElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-67.426216"
+ y="310.8063"
+ id="text3212"><tspan
+ sodipodi:role="line"
+ id="tspan3210"
+ x="-67.426216"
+ y="310.8063"
+ style="stroke-width:0.26458332">file_size_capb_dn</tspan></text>
+ <image
+ y="307.29257"
+ x="-33.966713"
+ id="image3241"
+ xlink:href="data:image/png;base64,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
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-66.922058"
+ y="338.67252"
+ id="text2308-6"><tspan
+ sodipodi:role="line"
+ id="tspan2306-6"
+ x="-66.922058"
+ y="338.67252"
+ style="stroke-width:0.26458332">file_size_semi_dn</tspan></text>
+ <image
+ y="336.07837"
+ x="-34.127251"
+ id="image3289"
+ xlink:href="data:image/png;base64,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
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="5.644444" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2"
+ width="6.3276706"
+ height="6.3276706"
+ x="0.14341471"
+ y="290.52884" />
+ <rect
+ y="290.72391"
+ x="0.33849713"
+ height="5.9375057"
+ width="5.9375057"
+ id="rect3597-5-7-9-4-8-9-8-27-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="299.56955"
+ x="0.24254723"
+ height="5.8150721"
+ width="5.8150716"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27026808;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3);fill-opacity:1;stroke:#141414;stroke-width:0.27012175;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0"
+ width="6.3444595"
+ height="6.3444595"
+ x="-6.4277382"
+ y="-313.67889"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406578px;line-height:7.78008318px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.3112033"
+ x="1.3318385"
+ y="295.91119"
+ id="text3360-1"><tspan
+ sodipodi:role="line"
+ id="tspan3358-9"
+ x="1.3318385"
+ y="295.91119"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406578px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.3112033">B</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406673px;line-height:7.78008318px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.3112033"
+ x="1.1746712"
+ y="304.69565"
+ id="text3360-1-4"><tspan
+ sodipodi:role="line"
+ id="tspan3358-9-2"
+ x="1.1746712"
+ y="304.69565"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406673px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.3112033">B</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406578px;line-height:8.0744648px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.32297856"
+ x="1.2623686"
+ y="312.72519"
+ id="text3360-1-4-5"><tspan
+ sodipodi:role="line"
+ id="tspan3358-9-2-1"
+ x="1.2623686"
+ y="312.72519"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.22406578px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.32297856">B</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6"
+ width="6.3276706"
+ height="6.3276706"
+ x="-0.53071237"
+ y="327.267" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2"
+ width="6.3276706"
+ height="6.3276706"
+ x="-0.37354541"
+ y="318.48257" />
+ <rect
+ y="318.67764"
+ x="-0.178463"
+ height="5.9375057"
+ width="5.9375057"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="327.52328"
+ x="-0.27441287"
+ height="5.8150721"
+ width="5.8150716"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27026808;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6);fill-opacity:1;stroke:#141414;stroke-width:0.27012175;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0"
+ width="6.3444595"
+ height="6.3444595"
+ x="-5.910778"
+ y="-341.63263"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0-4);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6-4"
+ width="6.3276706"
+ height="6.3276706"
+ x="-0.75058037"
+ y="356.14297" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9-6);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2-0"
+ width="6.3276706"
+ height="6.3276706"
+ x="-0.59341341"
+ y="347.35855" />
+ <rect
+ y="347.55362"
+ x="-0.39833102"
+ height="5.9375057"
+ width="5.9375057"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="356.39926"
+ x="-0.4942809"
+ height="5.8150721"
+ width="5.8150716"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27026808;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6-7);fill-opacity:1;stroke:#141414;stroke-width:0.27012175;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0-1"
+ width="6.3444595"
+ height="6.3444595"
+ x="-5.6909099"
+ y="-370.50861"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0-9);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6-7"
+ width="6.3276706"
+ height="6.3276706"
+ x="-1.4101847"
+ y="382.16071" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9-9);fill-opacity:1;stroke:#141414;stroke-width:0.28682944;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2-1"
+ width="6.3276706"
+ height="6.3276706"
+ x="-1.2530178"
+ y="373.37628" />
+ <rect
+ y="373.57135"
+ x="-1.0579354"
+ height="5.9375057"
+ width="5.9375057"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="382.41699"
+ x="-1.1538852"
+ height="5.8150721"
+ width="5.8150716"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5-4"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27026808;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6-8);fill-opacity:1;stroke:#141414;stroke-width:0.27012175;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0-2"
+ width="6.3444595"
+ height="6.3444595"
+ x="-5.0313058"
+ y="-396.52634"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66868734px;line-height:6.25222921px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25008917"
+ x="0.92351317"
+ y="352.70212"
+ id="text3705-9"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5"
+ x="0.92351317"
+ y="352.70212"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25008917">b</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66868734px;line-height:6.25222921px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25008917"
+ x="0.76634622"
+ y="361.48654"
+ id="text3705-9-3"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5-2"
+ x="0.76634622"
+ y="361.48654"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25008917">b</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66868734px;line-height:6.25222921px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25008917"
+ x="0.8717714"
+ y="369.51611"
+ id="text3705-9-4"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5-8"
+ x="0.8717714"
+ y="369.51611"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25008917">b</tspan></text>
+ <g
+ id="g3849"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172186,0,0,1.0172186,-6.9788021,-15.661036)">
+ <text
+ id="text3817"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3849-0"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172186,0,0,1.0172186,-7.1359691,-6.8766111)">
+ <text
+ id="text3817-1"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815-9"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844-1"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3849-09"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172186,0,0,1.0172186,-7.0305436,1.1529676)">
+ <text
+ id="text3817-7"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815-5"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844-4"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g3925"
+ transform="matrix(1.1566329,0,0,1.1566329,-1.5569512,-50.610928)">
+ <text
+ id="text3705"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ <g
+ id="g3925-9"
+ transform="matrix(1.1566329,0,0,1.1566329,-1.7141182,-41.826504)">
+ <text
+ id="text3705-3"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703-7"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919-7"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917-4"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ <g
+ id="g3925-4"
+ transform="matrix(1.1566329,0,0,1.1566329,-1.6086928,-33.796938)">
+ <text
+ id="text3705-1"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703-6"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919-4"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917-1"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ x="14.68419"
+ y="323.98709"
+ id="text4170"><tspan
+ sodipodi:role="line"
+ id="tspan4168"
+ x="14.68419"
+ y="323.98709"
+ style="stroke-width:0.26458001">human-readable /1000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ x="16.271669"
+ y="296.07394"
+ id="text4174"><tspan
+ sodipodi:role="line"
+ id="tspan4172"
+ x="16.271669"
+ y="296.07394"
+ style="stroke-width:0.26458001">Byte 000000000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ x="15.398003"
+ y="352.56128"
+ id="text4170-0"><tspan
+ sodipodi:role="line"
+ id="tspan4168-3"
+ x="15.398003"
+ y="352.56128"
+ style="stroke-width:0.26458001">human-readable /1024</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ x="16.274513"
+ y="378.36722"
+ id="text4174-3"><tspan
+ sodipodi:role="line"
+ id="tspan4172-1"
+ x="16.274513"
+ y="378.36722"
+ style="stroke-width:0.26458001">Byte: 000,000,000 </tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_lwrb_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_lwrb_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24402056,0,0,0.37320791,-14.319245,-297.34905)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="24.26"
+ inkscape:cx="12.5"
+ inkscape:cy="12.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6-7);fill-opacity:1;stroke:#141414;stroke-width:0.27012515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0-1"
+ width="6.3445396"
+ height="6.3445396"
+ x="-6.4795613"
+ y="-296.86496"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66875887px;line-height:6.25230789px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25009233"
+ x="1.6603621"
+ y="295.87247"
+ id="text3705-9-4"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5-8"
+ x="1.6603621"
+ y="295.87247"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25009233">b</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_lwrb_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_lwrb_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755309,290.04614)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="18.646098"
+ inkscape:cx="-7.7265427"
+ inkscape:cy="11.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0-4);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6-4"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.78513"
+ x="0.39971912"
+ height="5.8151455"
+ width="5.815145"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27027148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66875887px;line-height:6.25230789px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25009233"
+ x="1.6603621"
+ y="295.87247"
+ id="text3705-9-3"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5-2"
+ x="1.6603621"
+ y="295.87247"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25009233">b</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_lwrb_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_lwrb_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755314,290.04615)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="18.646098"
+ inkscape:cx="-7.7265427"
+ inkscape:cy="11.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9-6);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2-0"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.72391"
+ x="0.33850133"
+ height="5.9375806"
+ width="5.9375806"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66875887px;line-height:6.25230789px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.25009233"
+ x="1.6603621"
+ y="295.87247"
+ id="text3705-9"><tspan
+ sodipodi:role="line"
+ id="tspan3703-5"
+ x="1.6603621"
+ y="295.87247"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.25009233">b</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_semi_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_semi_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24402056,0,0,0.37320791,-14.319245,-297.34905)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.154411"
+ inkscape:cx="12.5"
+ inkscape:cy="12.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6);fill-opacity:1;stroke:#141414;stroke-width:0.27012515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0"
+ width="6.3445396"
+ height="6.3445396"
+ x="-6.4795613"
+ y="-296.86496"
+ transform="scale(-1)" />
+ <g
+ id="g3925-4"
+ transform="matrix(1.1566475,0,0,1.1566475,-1.040004,-78.569352)">
+ <text
+ id="text3705-1"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703-6"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919-4"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917-1"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_semi_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_semi_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755307,290.04613)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="8.5772053"
+ inkscape:cx="12.5"
+ inkscape:cy="12.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.78513"
+ x="0.39971924"
+ height="5.8151455"
+ width="5.815145"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27027148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g3925-9"
+ transform="matrix(1.1566475,0,0,1.1566475,-1.0400042,-78.569335)">
+ <text
+ id="text3705-3"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703-7"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919-7"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917-4"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-14.339304"
+ y="285.03867"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-14.339304"
+ y="285.03867"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_semi_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_semi_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755317,290.04613)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.154411"
+ inkscape:cx="12.5"
+ inkscape:cy="12.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.72391"
+ x="0.33850139"
+ height="5.9375806"
+ width="5.9375806"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g3925"
+ transform="matrix(1.1566475,0,0,1.1566475,-1.0400042,-78.569343)">
+ <text
+ id="text3705"
+ y="322.77383"
+ x="2.535264"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.70846653px;line-height:8.50198555px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34007943"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34007943"
+ y="322.77383"
+ x="2.535264"
+ id="tspan3703"
+ sodipodi:role="line">,</tspan></text>
+ <text
+ id="text3919"
+ y="323.10135"
+ x="2.4716926"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.7741766px;line-height:8.57445908px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.34297839"
+ xml:space="preserve"><tspan
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.34297839"
+ y="323.10135"
+ x="2.4716926"
+ id="tspan3917"
+ sodipodi:role="line">·</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_zero_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_zero_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-3-6-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24402056,0,0,0.37320791,-14.319244,-297.34906)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="9.3230491"
+ inkscape:cx="-2.0952186"
+ inkscape:cy="11.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-3-6-8);fill-opacity:1;stroke:#141414;stroke-width:0.27012515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-0-0-2"
+ width="6.3445396"
+ height="6.3445396"
+ x="-6.4795613"
+ y="-296.86496"
+ transform="scale(-1)" />
+ <g
+ id="g3849-09"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172314,0,0,1.0172314,-5.5824398,-98.513373)">
+ <text
+ id="text3817-7"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815-5"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844-4"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-18.581421"
+ y="286.08624"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-18.581421"
+ y="286.08624"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_zero_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_zero_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-5-0-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755304,290.04613)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.6615246"
+ inkscape:cx="-2.0952186"
+ inkscape:cy="11.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-5-0-9);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-0-6-7"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.78513"
+ x="0.39971912"
+ height="5.8151455"
+ width="5.815145"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-0-5-4"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.27027148;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g3849-0"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172314,0,0,1.0172314,-5.5824398,-98.513373)">
+ <text
+ id="text3817-1"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815-9"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844-1"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-13.217698"
+ y="283.078"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-13.217698"
+ y="283.078"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="25"
+ height="25"
+ viewBox="0 0 6.6145831 6.6145834"
+ version="1.1"
+ id="svg1554"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="file_size_zero_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/file_size_zero_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1548">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-9-9-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24337502,0,0,0.37222054,-7.6755317,290.04614)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="13.184783"
+ inkscape:cx="11.5"
+ inkscape:cy="11.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1551">
+ <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:date>2018-08-10</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-10: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38541)">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-9-9-9);fill-opacity:1;stroke:#141414;stroke-width:0.28683305;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-2-2-1"
+ width="6.3277502"
+ height="6.3277502"
+ x="0.14341652"
+ y="290.52884" />
+ <rect
+ y="290.72391"
+ x="0.33850133"
+ height="5.9375806"
+ width="5.9375806"
+ id="rect3597-5-7-9-4-8-9-8-27-4-4-4"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.14783622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g3849"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(1.0172314,0,0,1.0172314,-5.5824398,-98.513373)">
+ <text
+ id="text3817"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82225776px;line-height:6.61466646px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458663"
+ x="-16.408892"
+ y="286.6011"
+ id="text2266"><tspan
+ sodipodi:role="line"
+ id="tspan2264"
+ x="-16.408892"
+ y="286.6011"
+ style="stroke-width:0.26458663">see: file_size_capb_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="filebox_bigbutton_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.9036438,0,0,2.9114545,-110.90603,-53.522407)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="17.0837"
+ inkscape:cx="-0.065795184"
+ inkscape:cy="22.834193"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer79"
+ borderlayer="false"
+ inkscape:showpageshadow="false">
+ <sodipodi:guide
+ orientation="0,1"
+ position="49.788136,68.855932"
+ id="guide2859"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer78"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="-2.1933078e-09"
+ x="3.3150005e-07"
+ height="50"
+ width="50"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3368"
+ transform="matrix(2.2857142,0,0,2.2857142,1,0.99999976)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer79"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4-2);fill-opacity:1;stroke:#141414;stroke-width:0.50526774;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0-1"
+ width="49.494732"
+ height="49.494732"
+ x="-49.747368"
+ y="-49.747368"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-25.285666"
+ y="-16.314672"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-25.285666"
+ y="-16.314672">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="filebox_bigbutton_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient3000"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.9626755,0,0,1.8922033,1.3556297,1.6106274)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3003"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1052631,0,0,2.1052631,-0.26315886,-0.26315782)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.9032344,0,0,2.9108281,-60.887499,-3.5162356)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="18.88"
+ inkscape:cx="-0.68855895"
+ inkscape:cy="21.398305"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="3.3561406e-07"
+ x="-1.5553137e-09"
+ height="50"
+ width="50"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="3.3214509"
+ y="1.842105"
+ x="1.8421053"
+ height="46.315788"
+ width="46.315788"
+ id="rect3685"
+ style="fill:url(#linearGradient3003);fill-opacity:1;stroke:none" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient3000);fill-opacity:1;stroke:none"
+ d="m 6.3849849,3.5028305 c -1.7154559,0 -3.0666787,1.3027065 -3.0666787,2.9565679 V 20.946579 c 5.4215244,3.419749 12.7572928,5.499216 20.8534278,5.499216 8.868528,0 16.801954,-2.490564 22.325432,-6.504449 V 6.4593984 c 0,-1.6538614 -1.351223,-2.9565679 -3.066678,-2.9565679 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:1.68421042;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="46.315788"
+ height="46.315788"
+ x="1.8421053"
+ y="1.842105"
+ ry="3.3214509" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4);fill-opacity:1;stroke:#141414;stroke-width:0.51590925;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5"
+ width="49.484089"
+ height="49.484089"
+ x="0.25795555"
+ y="0.25795555" />
+ <rect
+ y="0.77523804"
+ x="0.77523804"
+ height="48.449524"
+ width="48.449524"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.5504778;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-20.65131"
+ y="-28.677174"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-20.65131"
+ y="-28.677174">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="filebox_bigbutton_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/filebox_bigbutton_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-9" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26378025,-1.0791239,-0.05356539)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective10-99"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.9032342,0,0,2.9108283,-60.887514,-3.5162881)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="17.372881"
+ inkscape:cy="13.241525"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer77"
+ showborder="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer76"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="50"
+ height="50"
+ x="0"
+ y="7.1054274e-15" />
+ <rect
+ style="fill:#252525;fill-opacity:1;stroke:#595959;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-6"
+ width="50"
+ height="50"
+ x="0"
+ y="0"
+ ry="4.8728814" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer77"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1811-8-5-0);fill-opacity:1;stroke:#141414;stroke-width:0.51590925;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4"
+ width="49.484089"
+ height="49.484089"
+ x="0.25795555"
+ y="0.25795555" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-31.24453"
+ y="-17.342426"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-31.24453"
+ y="-17.342426">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="fileboxbutton_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92227185,0,0,1.4105331,-54.119467,-26.318445)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="-55.879237"
+ inkscape:cy="12.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ y="-3.0219297e-07"
+ x="-7.7765683e-10"
+ height="25"
+ width="25"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3313"
+ transform="matrix(1.095238,0,0,1.095238,1,1.000001)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4);fill-opacity:1;stroke:#141414;stroke-width:1.02093303;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0"
+ width="23.979067"
+ height="23.979067"
+ x="-24.489532"
+ y="-24.489532"
+ transform="scale(-1)" />
+ <rect
+ y="-23.738796"
+ x="-24.238796"
+ height="22.477594"
+ width="23.477594"
+ id="rect3597-5-7-9-4-8-9-8-3-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.52240515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-46.816559"
+ y="-14.588189"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-46.816559"
+ y="-14.588189">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="fileboxbutton_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient2922"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.94044865,0,0,0.90668069,1.1704059,1.2925924)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient2925"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0087718,0,0,1.0087719,0.39473641,0.39473703)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9222718,0,0,1.4105331,-29.119488,-1.3184528)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="0.5826271"
+ inkscape:cy="12.817797"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="25"
+ height="25"
+ x="0"
+ y="0" />
+ <rect
+ ry="1.5915285"
+ y="1.4035088"
+ x="1.4035088"
+ height="22.192982"
+ width="22.192982"
+ id="rect3685"
+ style="fill:url(#linearGradient2925);fill-opacity:1;stroke:none" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient2922);fill-opacity:1;stroke:none"
+ d="m 3.5803052,2.199273 c -0.8219893,0 -1.4694502,0.6242135 -1.4694502,1.4166887 v 6.9417743 c 2.5978136,1.638629 6.1128694,2.63504 9.992267,2.63504 4.249503,0 8.050936,-1.193395 10.697602,-3.116715 V 3.6159617 c 0,-0.7924752 -0.64746,-1.4166887 -1.46945,-1.4166887 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.80701745;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="22.192982"
+ height="22.192982"
+ x="1.4035088"
+ y="1.4035088"
+ ry="1.5915285" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1);fill-opacity:1;stroke:#141414;stroke-width:1.02093303;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6"
+ width="23.979067"
+ height="23.979067"
+ x="0.51046658"
+ y="0.51046658" />
+ <rect
+ y="1.5108776"
+ x="1.0108786"
+ height="21.978245"
+ width="22.978243"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:1.02175701;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="fileboxbutton_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fileboxbutton_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9222718,0,0,1.4105331,-29.119493,-1.3184492)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="-26.863083"
+ inkscape:cy="4.6677236"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer67" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer66"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="25"
+ height="25"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer67"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1811-8-5-6);fill-opacity:1;stroke:#141414;stroke-width:1.02093303;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-7"
+ width="23.979067"
+ height="23.979067"
+ x="0.51046658"
+ y="0.51046658" />
+ <rect
+ y="1.2612028"
+ x="0.76120281"
+ height="22.477594"
+ width="23.477594"
+ id="rect3597-5-7-9-4-8-9-8-2-5"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.52240515;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-44.168255"
+ y="-22.003443"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-44.168255"
+ y="-22.003443">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="fit.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fit.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible">
+ <path
+ id="path3615"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(1.1) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Tail"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Tail"
+ style="overflow:visible">
+ <g
+ id="g3633"
+ transform="scale(-1.2)">
+ <path
+ id="path3635"
+ d="M -3.8048674,-3.9585227 L 0.54352094,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3637"
+ d="M -1.2866832,-3.9585227 L 3.0617053,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3639"
+ d="M 1.3053582,-3.9585227 L 5.6537466,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3641"
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3643"
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3645"
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ </g>
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3621"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3752"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="15.821581"
+ inkscape:cx="-16.006558"
+ inkscape:cy="10.707409"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g2876" />
+ <g
+ id="g5044"
+ transform="matrix(1.1322407,0,0,1.7516247,17.584849,-6.9759748)" />
+ <g
+ id="g2876">
+ <rect
+ transform="matrix(0,-1,1,0,0,0)"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect5026"
+ width="14"
+ height="1.3216982"
+ x="-19"
+ y="5" />
+ <path
+ id="rect5024"
+ d="M 8.125 8 L 5.71875 12 L 8.125 16 L 9.59375 16 L 7.71875 12.875 L 16.25 12.875 L 14.375 16 L 15.84375 16 L 18.25 12 L 15.84375 8 L 14.34375 8 L 16.25 11.125 L 7.71875 11.125 L 9.625 8 L 8.125 8 z "
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <rect
+ y="17.678301"
+ x="-19"
+ height="1.3216982"
+ width="14"
+ id="rect5063"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ transform="matrix(0,-1,1,0,0,0)" />
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-45.166462"
+ y="-5.7593608" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="fitautos.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/fitautos.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible">
+ <path
+ id="path3615"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(1.1) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Tail"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Tail"
+ style="overflow:visible">
+ <g
+ id="g3633"
+ transform="scale(-1.2)">
+ <path
+ id="path3635"
+ d="M -3.8048674,-3.9585227 L 0.54352094,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3637"
+ d="M -1.2866832,-3.9585227 L 3.0617053,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3639"
+ d="M 1.3053582,-3.9585227 L 5.6537466,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3641"
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3643"
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3645"
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ </g>
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3621"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3752"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="15.821581"
+ inkscape:cx="-16.006558"
+ inkscape:cy="10.707409"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g5044"
+ transform="matrix(1.1322407,0,0,1.7516247,17.584849,-6.9759748)" />
+ <rect
+ y="5"
+ x="5"
+ height="1.3216982"
+ width="14"
+ id="rect5026"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 16,8.125 12,5.71875 8,8.125 v 1.46875 l 3.125,-1.875 0,8.53125 L 8,14.375 8,15.84375 12,18.25 16,15.84375 v -1.5 L 12.875,16.25 12.875,7.71875 16,9.625 Z"
+ id="rect5024" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect5063"
+ width="14"
+ height="1.3216982"
+ x="5"
+ y="17.678301" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-51.992577"
+ y="-4.6848788" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="folder.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/folder.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16"
+ inkscape:cx="-18.788665"
+ inkscape:cy="6.1790254"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ id="path3496"
+ d="m 3.0990521,3.9569318 c -0.071023,0 -0.1319081,0.079439 -0.1319081,0.161484 0,5.0268404 -0.035769,10.4868632 -0.040801,15.6091792 0.024145,0.766583 0.4460685,1.289129 0.7386844,1.29187 0.8408697,0.0079 0.4477549,-0.0034 0.8705935,0 5.3722855,-0.01379 11.2745081,-0.06695 16.6467921,-0.08074 0.04501,0.0059 -1.226109,-0.09226 -1.213555,-1.238043 10e-7,-4.002303 -0.416847,-9.581477 -0.416847,-13.5837819 0,-0.1600579 -0.01282,-0.2491391 -0.02638,-0.3229672 -0.01047,-0.057007 -0.02383,-0.08468 -0.05277,-0.1076557 -0.02313,-0.020941 -0.04529,-0.048854 -0.07914,-0.05383 l -7.323318,0 c -0.676953,0 -0.832002,-1.706084 -1.838016,-1.706084 l -7.133334,0.030568 z" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ id="path3498"
+ d="m 5.4422054,7.3637083 c 8.7761376,0 10.8191136,3.94e-4 16.6005086,-0.023588 0,1.3450598 0.214345,13.7382357 -0.401956,13.7382357 -0.59287,0 -11.6620346,-0.08081 -17.4434281,-0.05683 1.221932,0 1.2448755,-0.533373 1.2448755,-13.6578193 z" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
+ id="rect2545"
+ y="5.1821365"
+ x="4.1671557"
+ ry="0.42824191"
+ rx="0.44708198"
+ height="0.85648382"
+ width="5.8120656" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-52.095013"
+ y="-10.394853" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="framefwd.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/framefwd.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.54591"
+ inkscape:cx="-23.314498"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="19.595454,19.064617"
+ orientation="1,0"
+ id="guide995"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="4.3997509,11.785794"
+ orientation="1,0"
+ id="guide997"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-21.044401"
+ y="-5.9143915"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-21.044401"
+ y="-5.9143915">see: play</tspan></text>
+ <g
+ transform="translate(27.267187)"
+ style="display:inline"
+ id="g2467">
+ <g
+ transform="translate(5.1113701e-7,-0.08298065)"
+ style="display:inline"
+ id="g1013">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4-9"
+ d="M -24.208156,4.5829803 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-0"
+ d="M -20.897028,11.682981 -21.705871,5.0833674 -5.6040441,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-8"
+ d="m -20.897028,12.482981 -0.808843,6.599611 16.1018269,-6.599611 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="-20.897028"
+ height="0.80000001"
+ width="15.292984"
+ id="rect2198-0-1"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99085301;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="framerev.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/framerev.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2679">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop2681" />
+ <stop
+ style="stop-color:#d3d7cf"
+ offset="1"
+ id="stop2683" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2679"
+ id="radialGradient4136"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.10091852,-0.59042784,0.96540287,0.28211932,-132.45646,10.134107)"
+ cx="64.227074"
+ cy="147.99352"
+ fx="64.227074"
+ fy="147.99352"
+ r="8.75" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2679"
+ id="radialGradient4145"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.10091852,-0.59042784,0.96540287,0.28211932,-137.19625,10.134107)"
+ cx="64.227074"
+ cy="147.99352"
+ fx="64.227074"
+ fy="147.99352"
+ r="8.75" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.54591"
+ inkscape:cx="-8.2112639"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g2467"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:1.55482244;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 13.482534,5.7772199 V 18.222589 L 5.7774112,12.185103 v -0.370398 z"
+ id="path5288"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png"
+ sodipodi:nodetypes="cccc"
+ id="path5515"
+ d="M 13.482559,5.7772199 5.5508158,11.999905 13.482559,18.222589 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient4145);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#4d4d4d;stroke-width:0.51827449;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 13.482559,5.7772199 5.5508158,11.999905 13.482559,18.222589 Z"
+ id="path5521"
+ sodipodi:nodetypes="cccc"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 13.255939,6.2957769 5.9898944,11.999905 13.255939,17.704031 Z M 12.802696,7.3514108 V 16.648397 L 6.8680518,11.999905 Z"
+ id="path5525"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.56111109;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 8.4569948,10.686627 12.774187,7.3699307 V 10.95117 Z"
+ id="path3197"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ id="path13010"
+ d="M 15.95598,18.222588 V 5.7772193 h 2.266213 V 18.222588 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:1.55482244;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient4136);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none"
+ d="M 18.222374,5.7772193 H 15.956161 V 18.222588 h 2.266213 z"
+ id="path3110"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ transform="scale(1,-1)"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:0.51827419;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect1923"
+ width="1.3597275"
+ height="11.260095"
+ x="16.409224"
+ y="-17.629953" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#4d4d4d;stroke-width:0.51827419;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 15.95598,18.222588 V 5.7772193 h 2.266213 V 18.222588 Z"
+ id="path1935"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.56111109;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="m 17.54251,10.814631 -0.886875,-0.09657 V 6.684634 h 0.92141 l -0.03453,4.129998 z"
+ id="path5291"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-18.873764"
+ y="-27.617849"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-18.873764"
+ y="-27.617849">see: play</tspan></text>
+ <g
+ transform="matrix(-1,0,0,1,-3.267188,0)"
+ style="display:inline"
+ id="g2467">
+ <g
+ transform="translate(-4.8886299e-7,-0.08298065)"
+ style="display:inline"
+ id="g1013">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4-9"
+ d="M -24.208156,4.5829803 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-3"
+ d="M -20.897028,11.682981 -21.705871,5.0833674 -5.6040441,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-3"
+ d="m -20.897028,12.482981 -0.808843,6.599611 16.1018269,-6.599611 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="-20.897028"
+ height="0.80000001"
+ width="15.292984"
+ id="rect2198-0-8"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99085301;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="gangpatch.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/gangpatch.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-22.031313"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g3608"
+ transform="matrix(1.0308262,0,0,0.97614204,-1.4055372,2.3824941)"
+ style="stroke:#e6e4dd;stroke-opacity:1">
+ <path
+ transform="translate(0.32415254,-1.8008475)"
+ d="M 17.576272,5.762712 A 3.9258475,3.8898306 0 0 1 13.650424,9.6525426 3.9258475,3.8898306 0 0 1 9.7245765,5.762712 3.9258475,3.8898306 0 0 1 13.650424,1.8728814 3.9258475,3.8898306 0 0 1 17.576272,5.762712 Z"
+ sodipodi:ry="3.8898306"
+ sodipodi:rx="3.9258475"
+ sodipodi:cy="5.762712"
+ sodipodi:cx="13.650424"
+ id="path2818"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.89898988;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.89898988;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3592"
+ sodipodi:cx="13.650424"
+ sodipodi:cy="5.762712"
+ sodipodi:rx="3.9258475"
+ sodipodi:ry="3.8898306"
+ d="M 17.576272,5.762712 A 3.9258475,3.8898306 0 0 1 13.650424,9.6525426 3.9258475,3.8898306 0 0 1 9.7245765,5.762712 3.9258475,3.8898306 0 0 1 13.650424,1.8728814 3.9258475,3.8898306 0 0 1 17.576272,5.762712 Z"
+ transform="translate(0.32415254,2.809322)" />
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-45.921284"
+ y="-9.2253609" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="126"
+ height="20"
+ sodipodi:docname="generic_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/generic_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3598" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3600"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800072,0,0,0.98167417,-0.00416685,0.36734722)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3606"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3615"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800072,0,0,0.98167414,-0.00416685,0.3673472)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.826326,0,0,1.1461455,-154.79825,-1.2283493)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.2936508"
+ inkscape:cx="-33.175136"
+ inkscape:cy="10"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.98980379"
+ id="rect2818"
+ width="125.01019"
+ height="19.010197"
+ x="0.46070591"
+ y="0.76199895"
+ ry="2.6565082" />
+ <rect
+ ry="2.6565082"
+ y="0.76199895"
+ x="0.46070591"
+ height="19.010197"
+ width="125.01019"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3600);fill-opacity:1;stroke:#000000;stroke-width:0.98980379" />
+ <path
+ style="opacity:0.1;fill:url(#linearGradient3615);fill-opacity:1;stroke:none"
+ d="m 3.1769605,0.76615233 c -1.4961821,0 -2.71331451,1.16654377 -2.71331451,2.63824927 V 17.117162 c 0,1.079591 0.65456781,2.007131 1.59056371,2.423508 v -7.669329 c 0,-1.476615 1.2121408,-2.6689266 2.7133145,-2.6689266 H 120.75392 c 1.50117,0 2.71332,1.1923116 2.71332,2.6689266 v 7.792039 c 1.1481,-0.30611 1.996,-1.317397 1.996,-2.546218 V 3.4044016 c 0,-1.4717055 -1.18595,-2.63824927 -2.68213,-2.63824927 z"
+ id="rect3602"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4);fill-opacity:1;stroke:#141414;stroke-width:0.51552194;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5"
+ width="125.48448"
+ height="19.484478"
+ x="0.25775909"
+ y="0.257761" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="7.2775908"
+ y="-25.552998"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="7.2775908"
+ y="-25.552998">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="126"
+ height="20"
+ sodipodi:docname="generic_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/generic_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3598" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3600"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99792739,0,0,1.0000522,4.6004495e-4,-5.2637079e-4)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3615"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99792739,0,0,1.0000522,4.6004495e-4,-5.2637079e-4)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient2822"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800072,0,0,0.98167414,-0.00416684,0.36734732)"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient2824"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800074,0,0,0.98167414,-0.00416684,0.36734732)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.8263266,0,0,1.1461455,-154.7983,-1.2283405)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.5180348"
+ inkscape:cx="-39.118891"
+ inkscape:cy="-4.6359898"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.98980373"
+ id="rect2818"
+ width="125.01019"
+ height="19.010197"
+ x="0.46070588"
+ y="0.76199907"
+ ry="2.656508" />
+ <rect
+ ry="2.656508"
+ y="0.76199907"
+ x="0.46070588"
+ height="19.010197"
+ width="125.01019"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient2824);fill-opacity:1;stroke:#000000;stroke-width:0.98980373" />
+ <path
+ style="opacity:0.3;fill:url(#linearGradient2822);fill-opacity:1;stroke:none"
+ d="m 3.1769605,0.76615243 c -1.4961821,0 -2.71331451,1.16654377 -2.71331451,2.63824927 V 17.117162 c 0,1.079591 0.65456781,2.007131 1.59056371,2.423508 v -7.669329 c 0,-1.476615 1.2121406,-2.6689265 2.7133144,-2.6689265 H 120.75392 c 1.50118,0 2.71332,1.1923115 2.71332,2.6689265 v 7.792039 c 1.1481,-0.30611 1.99599,-1.317396 1.99599,-2.546218 V 3.4044017 c 0,-1.4717055 -1.18593,-2.63824927 -2.68212,-2.63824927 z"
+ id="rect3602"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-1);fill-opacity:1;stroke:#141414;stroke-width:0.51552194;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-3"
+ width="125.48448"
+ height="19.484478"
+ x="0.25775909"
+ y="0.257761" />
+ <rect
+ y="0.77228737"
+ x="0.77228546"
+ height="18.455473"
+ width="124.45547"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-0"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.54452759;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="10.974246"
+ y="-24.539118"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="10.974246"
+ y="-24.539118">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="126"
+ height="20"
+ sodipodi:docname="generic_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/generic_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3609">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3611" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3613" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3598" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3600"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800072,0,0,0.98167417,-0.00416685,0.36734722)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3615"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99800072,0,0,0.98167414,-0.00416685,0.3673472)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.826326,0,0,1.1461455,-154.79829,-1.2283497)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.9507394"
+ inkscape:cx="-28.567633"
+ inkscape:cy="-0.75171619"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
+ id="rect2818"
+ width="125.0003"
+ height="19.000299"
+ x="0.49985003"
+ y="0.49985051"
+ ry="2.6551251" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-77.787834"
+ y="12.503283"
+ id="text828"><tspan
+ sodipodi:role="line"
+ id="tspan826"
+ x="-77.787834"
+ y="12.503283">generic_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-3.4935293"
+ y="-78.051758"
+ id="text832"><tspan
+ sodipodi:role="line"
+ id="tspan830"
+ x="-3.4935293"
+ y="-78.051758">sämtliche Ausklapp-Menüs, </tspan><tspan
+ sodipodi:role="line"
+ x="-3.4935293"
+ y="-53.051758"
+ id="tspan834">Ok Apply Cancel, Reset usw. </tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="11.06579"
+ y="-18.873709"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="11.06579"
+ y="-18.873709">see: recordpatch_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2);fill-opacity:1;stroke:#141414;stroke-width:0.51599997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9"
+ width="125.48448"
+ height="19.484478"
+ x="0.25775909"
+ y="0.257761"
+ inkscape:transform-center-x="24.989088"
+ inkscape:transform-center-y="-37.1744" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="goto.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/goto.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-5"
+ 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" />
+ <marker
+ style="overflow:visible"
+ id="EmptyTriangleInM"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="EmptyTriangleInM">
+ <path
+ transform="scale(-0.4) translate(-4.5,0)"
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3752" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="Arrow2Mstart"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow2Mstart">
+ <path
+ transform="scale(0.6) translate(0,0)"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ id="path3621" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="Tail"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Tail">
+ <g
+ transform="scale(-1.2)"
+ id="g3633">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M -3.8048674,-3.9585227 L 0.54352094,0"
+ id="path3635" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M -1.2866832,-3.9585227 L 3.0617053,0"
+ id="path3637" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M 1.3053582,-3.9585227 L 5.6537466,0"
+ id="path3639" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ id="path3641" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ id="path3643" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round"
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ id="path3645" />
+ </g>
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="Arrow2Lstart"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow2Lstart">
+ <path
+ transform="scale(1.1) translate(1,0)"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ id="path3615" />
+ </marker>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.458348"
+ inkscape:cx="-1.2681817"
+ inkscape:cy="11.755938"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ y="6.2223058"
+ x="3"
+ height="1.4192789"
+ width="8.4496765"
+ id="rect5024"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.99262816" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path5052"
+ d="M 8.9304934,3.0000001 13,6.9999997 8.9304934,11 8.050599,10.135136 11.240213,6.9999997 8.050599,3.9189191 Z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.99262816" />
+ <rect
+ transform="rotate(-90)"
+ style="fill:#cccac8;fill-opacity:1;stroke:none;stroke-width:0.79538482"
+ id="rect5063"
+ width="4.8118854"
+ height="1.2111797"
+ x="-16.173647"
+ y="13.89291" />
+ <g
+ id="g3874"
+ style="fill:none;stroke:#e6e4dd;stroke-opacity:1"
+ transform="matrix(0.67295987,0,0,0.67337201,9.1604454,3.5832575)">
+ <circle
+ r="7.2203388"
+ cy="17.694916"
+ cx="7.9322033"
+ id="path3872"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.89898992;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <rect
+ y="20.576944"
+ x="-1.339456"
+ height="1.2115541"
+ width="5.8918519"
+ id="rect3877"
+ style="fill:#cccac8;fill-opacity:1;stroke:none;stroke-width:0.88001418"
+ transform="matrix(0.70688827,-0.70732523,0.70688827,0.70732523,0,0)" />
+ <ellipse
+ ry="1.1469336"
+ rx="1.084267"
+ cy="15.498518"
+ cx="14.498501"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.9166646"
+ id="path3881" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-44.786167"
+ y="-5.2635727" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="64"
+ height="64"
+ sodipodi:docname="heroine_icon.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/heroine_icon.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1493">heroine_icon</title>
+ <metadata
+ id="metadata8">
+ <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>heroine_icon</dc:title>
+ <dc:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>New heroine_icon - fitting to the theme.
+Dokumet enlarged from 60 to 64 px.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.722576"
+ inkscape:cx="-19.798634"
+ inkscape:cy="17.064865"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="obsolet"
+ sodipodi:insensitive="true"
+ style="display:inline"
+ transform="translate(0,3.9998016)">
+ <g
+ id="g3492"
+ transform="matrix(1.1472787,0,0,1.1388774,74.651627,7.1193429)">
+ <path
+ style="fill:#008000"
+ d="m -58.586787,45.466647 c -0.597101,-0.110771 -0.706829,-0.187005 -0.857304,-0.595678 -0.172324,-0.467995 0.07986,-0.796715 0.695136,-0.905991 1.052245,-0.186888 4.637813,-1.967992 5.433221,-2.698901 l 0.515754,-0.473951 0.01798,-5.357665 c 0.01873,-5.550946 0.0754,-6.857231 0.315858,-7.28558 0.159694,-0.284356 1.095511,-1.105827 2.851196,-2.502831 1.28836,-1.02515 1.373355,-1.085909 3.169212,-2.265513 0.660575,-0.433896 1.481937,-0.979351 1.825273,-1.212122 0.343325,-0.232774 0.874606,-0.486622 1.180614,-0.564111 0.306009,-0.07751 0.610753,-0.237063 0.677192,-0.354609 0.131847,-0.233226 -0.148471,-0.380233 -1.723488,-0.903887 -1.353164,-0.44989 -3.156266,-1.131936 -4.225891,-1.598507 -1.710686,-0.746189 -2.200598,-1.266914 -1.916882,-2.037432 0.120526,-0.327339 0.09534,-1.691635 -0.05045,-2.731807 -0.02081,-0.148997 -0.399534,-0.190377 -2.225854,-0.243241 -1.210382,-0.03504 -2.274186,-0.106936 -2.36402,-0.159787 -0.08989,-0.05285 -0.573414,-0.138699 -1.074612,-0.190789 -0.501199,-0.05209 -1.081957,-0.153095 -1.29055,-0.224463 -0.208613,-0.07137 -0.761272,-0.224933 -1.228139,-0.34126 -0.584279,-0.145576 -0.983856,-0.332072 -1.281955,-0.598332 l -0.433081,-0.386831 -0.09338,-2.2395858 c -0.09251,-2.2191518 -0.04129,-3.0322753 0.365172,-5.7896321 0.185047,-1.2555721 0.397605,-2.1304782 0.66196,-2.724666 0.294416,-0.66176777 0.358819,-1.32553559 0.151109,-1.55741937 -0.317547,-0.35452382 -0.606994,-1.26527843 -0.606994,-1.90994663 0,-0.5604856 0.03944,-0.6468425 0.422808,-0.9236199 0.362717,-0.2619328 0.552101,-0.3053243 1.332584,-0.3053243 0.738947,0 0.985944,0.050558 1.315531,0.2693102 0.223159,0.1481198 0.424724,0.3097053 0.447888,0.3590791 0.06395,0.1363041 7.976948,0.1060469 10.704003,-0.040929 1.351758,-0.072861 7.667419,-0.1380046 14.444032,-0.1490013 l 12.04198,-0.019552 9e-6,0.2693101 1.1e-5,0.2693087 h -2.950474 c -4.352015,0 -9.527125,0.1434562 -9.207932,0.2552468 0.244743,0.085705 0.274454,0.1841145 0.274454,0.9087715 v 0.81265239 l -1.927046,-0.0224368 -1.92707,-0.0224368 -0.100888,-0.45720599 c -0.161023,-0.7298039 -0.06918,-1.1500095 0.288662,-1.3204868 0.266371,-0.1269058 -0.0196,-0.1508604 -1.819238,-0.1523456 l -2.135312,-0.0017 0.09413,0.6882349 c 0.05186,0.3785296 0.102412,0.8498218 0.112486,1.04731544 l 0.0183,0.3590793 h -1.896368 -1.896376 V -1.3008699 c 0,-0.4049371 -0.04271,-0.7774831 -0.0949,-0.8278784 -0.05219,-0.0504 -0.0949,-0.1711882 -0.0949,-0.2684273 0,-0.1466457 0.167114,-0.1650709 0.979792,-0.1080313 0.538897,0.037825 1.093582,0.020355 1.232651,-0.03881 0.152361,-0.064837 -1.103728,-0.079569 -3.160625,-0.037082 -1.877419,0.038774 -3.47037,0.1209356 -3.539905,0.1825671 -0.07922,0.070219 0.194146,0.102395 0.732138,0.086191 0.472207,-0.014232 0.903926,0.023069 0.959363,0.082916 0.05547,0.059847 0.06734,0.4319643 0.02637,0.8269517 l -0.07442,0.71815965 -0.758548,0.0312022 c -0.417196,0.0171651 -1.299015,-0.009861 -1.959593,-0.059835 l -1.201033,-0.0910363 V -1.6121258 -2.4202677 l -1.074614,6e-6 -1.074613,7.4e-6 v 0.8679815 0.86798293 l -1.011398,0.0380561 c -0.556276,0.0209392 -1.366969,0.003166 -1.801555,-0.0394436 l -0.790155,-0.0775233 V -1.5082903 -2.2533787 l 1.548705,0.025005 1.548717,0.025005 -1.201047,-0.094835 c -0.660565,-0.052153 -1.64272,-0.100861 -2.182565,-0.1082383 l -0.981513,-0.013403 0.01994,1.0473143 0.01994,1.04731539 h 5.383418 5.383417 l 0.02887,0.89769812 c 0.07388,2.30186009 0.146041,3.12497829 0.326361,3.72311789 0.25333,0.8402969 0.474941,2.0699581 0.601697,3.3387791 0.05589,0.5595663 0.106563,1.03697 0.112589,1.0609003 0.0054,0.023933 0.195911,0.00803 0.421891,-0.035597 0.225983,-0.043522 0.595772,-0.1093827 0.821765,-0.1463717 l 0.410875,-0.067273 0.02398,-1.6326858 c 0.01328,-0.8979793 0.02986,-2.828837 0.03682,-4.2907959 0.0077,-1.4619625 0.04172,-2.68558652 0.07725,-2.71916824 0.05808,-0.0549646 18.867129,-0.26660991 21.698376,-0.24415759 0.641281,0.004995 1.2066,0.0477095 1.256239,0.094713 0.04969,0.0470035 0.104926,1.74064643 0.122863,3.76364003 0.01798,2.0229947 0.07201,5.1761325 0.120389,7.0069731 0.06004,2.277569 0.04576,3.368597 -0.04533,3.454818 -0.08553,0.08095 -1.007455,0.11906 -2.577493,0.106546 -1.954177,-0.01558 -2.412743,0.01059 -2.286531,0.129993 0.08684,0.0822 0.157864,0.434929 0.157864,0.783838 v 0.634373 l 1.991201,-0.01377 c 1.406052,-0.0097 1.842586,-0.04286 1.48549,-0.112806 -0.278129,-0.05448 -0.889708,-0.102139 -1.359071,-0.105937 -0.710218,-0.0057 -0.853361,-0.04045 -0.853361,-0.206937 0,-0.110016 -0.0923,-0.296533 -0.204974,-0.414467 -0.112714,-0.117941 -0.171407,-0.297231 -0.130387,-0.398428 0.06079,-0.150059 0.330316,-0.183998 1.460987,-0.183998 0.762525,0 1.536633,0.05408 1.720219,0.120144 0.303186,0.109139 0.330502,0.17117 0.297695,0.676278 -0.03161,0.485702 5e-4,0.568929 0.25272,0.657277 0.45071,0.157853 0.290133,0.494129 -0.29047,0.608338 -0.309432,0.06087 -0.544598,0.05159 -0.625146,-0.02469 -0.138504,-0.131134 -3.227469,-0.170083 -3.713284,-0.04683 -0.156458,0.03969 -0.284457,0.154071 -0.284457,0.254171 0,0.329718 -1.096284,1.765048 -1.601079,2.096242 -0.410812,0.26954 -0.558707,0.306667 -0.869268,0.218234 -0.376774,-0.10729 -1.349624,-0.522593 -1.701688,-0.726434 -0.104276,-0.06039 -0.793621,-0.46127 -1.531817,-0.890848 -0.738196,-0.429575 -1.747393,-0.935182 -2.242655,-1.123567 -0.49525,-0.188384 -1.000644,-0.426824 -1.123098,-0.529866 -0.122451,-0.10304 -0.858524,-0.493695 -1.635704,-0.86812 -1.036905,-0.499548 -1.625867,-0.707165 -2.212442,-0.779911 -0.439652,-0.05452 -0.97004,-0.153053 -1.178654,-0.218955 -0.208592,-0.06589 -0.793305,-0.151725 -1.299352,-0.190719 -1.301054,-0.100253 -1.346367,0.09708 -0.237815,1.03523 0.463011,0.391837 0.841843,0.765064 0.841843,0.829396 0,0.206072 1.057378,1.292877 1.580303,1.624281 0.278148,0.176268 0.619491,0.413243 0.75855,0.526608 0.139078,0.113364 0.70579,0.37588 1.259365,0.583365 0.81258,0.304559 1.19015,0.540543 1.959581,1.224788 0.541753,0.481765 1.113478,1.127403 1.32474,1.495998 0.327331,0.571138 0.372546,0.772293 0.379269,1.687124 0.0088,1.049523 -0.229936,1.830411 -0.699408,2.298295 -0.09784,0.09753 -0.379685,0.427788 -0.626258,0.733886 -0.430804,0.53479 -0.444947,0.583906 -0.361902,1.256457 0.08793,0.712127 0.5568,2.512771 0.992583,3.811931 0.132488,0.39499 0.339337,1.041331 0.459645,1.436321 0.120325,0.394986 0.305005,0.951893 0.410408,1.237571 0.187378,0.507918 0.201639,0.517728 0.644212,0.443179 0.248927,-0.04195 0.911791,-0.105755 1.473047,-0.141819 1.386962,-0.08914 2.630967,0.264072 4.03655,1.146075 0.278138,0.174529 1.011998,0.521856 1.630813,0.771835 0.618826,0.249978 1.529081,0.632047 2.022807,0.849041 2.471501,1.086229 3.226127,1.379541 3.549275,1.379541 0.44,0 1.10586,0.380108 1.315489,0.750934 0.115312,0.204055 0.1476,0.893795 0.1185,2.53467 -0.03987,2.246532 -0.04108,2.255092 -0.356053,2.474834 -0.339903,0.237138 -1.559227,0.464718 -2.949143,0.550438 -0.696945,0.04297 -0.909929,0.01314 -1.106211,-0.155045 -0.542177,-0.464531 -0.180776,-0.979575 1.12214,-1.599226 0.298903,-0.142156 0.57605,-0.338855 0.615873,-0.437112 0.120851,-0.298137 -0.350199,-1.279791 -0.837084,-1.744441 -0.359548,-0.343143 -0.594191,-0.455276 -1.085802,-0.518893 -0.344916,-0.04464 -1.281376,-0.178384 -2.08101,-0.297215 -0.799635,-0.11883 -1.965913,-0.281121 -2.591723,-0.360644 -0.625798,-0.07952 -1.450722,-0.198035 -1.833162,-0.263361 -0.713616,-0.121896 -2.868334,-0.388826 -4.551303,-0.563817 -1.580039,-0.164293 -2.087438,-0.338505 -2.601538,-0.89323 -0.455047,-0.491006 -2.455453,-3.038607 -2.455453,-3.127125 0,-0.02534 -0.507585,-0.79746 -1.127968,-1.715832 -0.620374,-0.918368 -1.252591,-1.904763 -1.404939,-2.191993 -0.152341,-0.287226 -0.37732,-0.629955 -0.499948,-0.761619 -0.122626,-0.131662 -0.261011,-0.441367 -0.307521,-0.688234 -0.04654,-0.246868 -0.153093,-0.455053 -0.236857,-0.462632 -0.478754,-0.04333 -1.215175,0.173743 -2.6528,0.781953 -0.401801,0.169986 -0.828498,0.310898 -0.948196,0.313128 -0.119712,0.0023 -0.445207,0.108129 -0.723335,0.235327 -0.278137,0.127196 -0.6274,0.233092 -0.776154,0.235326 -0.148755,0.0023 -0.398326,0.10209 -0.554622,0.221913 -0.258818,0.198414 -0.270836,0.256108 -0.134687,0.646682 0.09751,0.279506 0.128849,0.943434 0.09011,1.906701 -0.06004,1.498818 -0.10905,1.7164 -0.952288,4.230815 -0.198689,0.59248 -0.488203,1.481202 -0.643376,1.974938 -0.155182,0.493732 -0.3383,1.032354 -0.406932,1.196933 -0.167168,0.400824 -0.388223,1.648253 -0.371205,2.094629 0.0077,0.197495 0.04697,0.843836 0.0876,1.436318 0.07148,1.040312 0.06266,1.088473 -0.253687,1.405007 -0.180211,0.180271 -0.45397,0.352634 -0.608358,0.383022 -0.154386,0.03039 -1.418525,0.08705 -2.809194,0.12593 -1.390677,0.03888 -2.784514,0.119998 -3.09742,0.180307 -0.653495,0.125931 -1.755707,0.130349 -2.406358,0.0095 z m 2.398283,-0.693978 c 0.727356,-0.144757 1.407043,-0.172499 3.003188,-0.122585 1.973014,0.0617 2.080967,0.05307 2.473353,-0.197859 0.410115,-0.262264 0.410289,-0.262803 0.382167,-1.214555 -0.01547,-0.523694 -0.03791,-1.113761 -0.05001,-1.311253 -0.04392,-0.718296 0.360887,-2.230959 1.345331,-5.027113 0.886004,-2.516565 1.081085,-3.252024 1.095347,-4.129416 0.01569,-0.967569 -0.178838,-2.745955 -0.32489,-2.969693 -0.173846,-0.266304 0.153396,-0.586854 0.66547,-0.65188 0.414081,-0.05259 1.882496,-0.508887 2.986079,-0.927912 0.309801,-0.117624 1.860969,-0.649952 2.465281,-0.846024 0.243373,-0.07895 0.59597,-0.218269 0.783543,-0.309574 0.416848,-0.202905 1.89895,-0.689715 3.009212,-0.988398 3.928338,-1.056804 4.236601,-1.200913 4.838571,-2.262017 0.578274,-1.019339 0.653463,-2.103174 0.206545,-2.977229 -0.290448,-0.568037 -1.61934,-1.567339 -2.54705,-1.915334 -0.296159,-0.111087 -0.59537,-0.268308 -0.664893,-0.34936 -0.06952,-0.08105 -0.524668,-0.461489 -1.01141,-0.845416 -1.311489,-1.034472 -1.424682,-1.124811 -2.188929,-1.746986 -0.386023,-0.314269 -0.933659,-0.710231 -1.216952,-0.879911 -0.52883,-0.316755 -1.716003,-1.833955 -1.712385,-2.188456 0.0033,-0.333181 0.213353,-0.522573 0.585225,-0.527851 1.181464,-0.01678 3.825256,0.206938 4.141582,0.350441 0.201903,0.09161 0.598234,0.166535 0.880751,0.166535 0.605904,0 1.507053,0.297403 2.03977,0.673185 0.208921,0.147363 0.521804,0.326163 0.695345,0.39733 0.173522,0.07115 0.491873,0.230845 0.70744,0.354842 0.215566,0.123995 0.756032,0.412672 1.201042,0.641506 1.228327,0.631638 2.744356,1.545194 3.69655,2.227533 0.480497,0.344315 0.989148,0.613023 1.160436,0.613023 0.167735,0 0.499357,-0.161586 0.736942,-0.359079 0.237585,-0.197495 0.486763,-0.35908 0.553714,-0.35908 0.216733,0 0.563644,-0.454734 0.518024,-0.679023 -0.0341,-0.167626 -0.211131,-0.237784 -0.76537,-0.30333 -0.985043,-0.116492 -2.766376,-0.728571 -3.4172,-1.174179 -1.364845,-0.934482 -4.663853,-2.919527 -5.403542,-3.251362 -2.451858,-1.099931 -2.899987,-1.294926 -2.975958,-1.294926 -0.04575,0 -0.262514,-0.0771 -0.48162,-0.171357 -2.373162,-1.0207857 -3.196025,-1.2086986 -4.261933,-0.9732746 -1.218324,0.2690786 -1.700304,0.7031614 -1.390101,1.2519366 0.2267,0.401035 0.167548,0.850242 -0.112,0.850242 -0.13496,0 -0.291419,-0.06731 -0.347671,-0.149618 -0.05633,-0.08229 -0.139952,-0.957545 -0.185996,-1.9450129 -0.151305,-3.2449413 -0.94048,-5.8811092 -2.105102,-7.0319736 -0.807609,-0.798074 -1.163388,-0.4960259 -0.401953,0.3412567 0.567129,0.6236281 0.979412,1.5530416 1.37511,3.0999221 0.392801,1.5355684 0.522422,2.2189595 0.522173,2.7529437 -1.31e-4,0.3291557 0.08606,0.7552123 0.191574,0.9467943 0.111174,0.2019152 0.213167,0.7804847 0.242553,1.3764697 0.0279,0.565481 0.0913,1.364781 0.140975,1.776226 0.06318,0.523189 0.04783,0.748082 -0.05131,0.748082 -0.07779,0 -0.175232,-0.14812 -0.216371,-0.329156 -0.04119,-0.181037 -0.166788,-0.535657 -0.27924,-0.788048 -0.112488,-0.252393 -0.199809,-0.737149 -0.194145,-1.07724 0.0054,-0.340089 -0.06961,-0.765344 -0.167537,-0.945009 -0.09783,-0.179665 -0.207972,-0.63485 -0.244776,-1.0115218 -0.03682,-0.3766729 -0.113539,-0.7413619 -0.170623,-0.8104209 -0.05699,-0.069063 -0.134373,-0.4227731 -0.171875,-0.7860292 -0.03748,-0.3632573 -0.162418,-0.9557372 -0.277594,-1.3166255 -0.115212,-0.3608871 -0.305091,-0.9523992 -0.422021,-1.3144719 -0.230439,-0.7135738 -0.649159,-1.4837612 -0.753146,-1.3853192 -0.07735,0.073238 0.466978,1.755199 0.620722,1.9179546 0.05905,0.06255 0.107426,0.2941278 0.107426,0.5146399 0,0.2205133 0.07866,0.5463772 0.174893,0.7241444 0.0961,0.1777658 0.215075,0.6733146 0.264202,1.1012178 0.04914,0.4279021 0.145639,0.9934532 0.214475,1.2567786 0.06887,0.2633241 0.177541,0.9635297 0.241607,1.5560112 0.330457,3.056343 0.532621,3.761457 1.080542,3.768502 0.07845,9.46e-4 0.210225,0.07902 0.292921,0.173365 0.120901,0.137929 0.09054,0.20859 -0.154607,0.36071 -0.271207,0.168243 -0.353881,0.169822 -0.747086,0.01427 -0.243163,-0.0962 -0.562573,-0.145077 -0.709779,-0.108628 -0.349493,0.08652 -0.901966,-0.477696 -1.287064,-1.314441 -0.15685,-0.340788 -0.363742,-0.762579 -0.459753,-0.937317 -0.0961,-0.174735 -0.1746,-0.489615 -0.1746,-0.699737 0,-0.400544 -0.344271,-1.670642 -0.49488,-1.8257236 -0.04816,-0.049608 -0.187182,-0.021291 -0.308884,0.062951 -0.178619,0.123655 -0.230579,0.383224 -0.269661,1.346996 -0.08161,2.012231 -0.0754,5.927708 0.0098,6.057906 0.118262,0.181198 0.874093,0.474013 4.793366,1.857026 l 3.539905,1.249144 1.224621,-0.08005 c 1.505003,-0.09838 1.904549,-0.02431 1.849385,0.342938 -0.03562,0.236823 -0.154355,0.27979 -1.114414,0.40308 -1.162986,0.149346 -1.778293,0.33549 -2.887969,0.873659 -0.393333,0.190762 -0.914275,0.433115 -1.157635,0.538567 -0.917906,0.397727 -3.132972,1.818781 -4.488099,2.879292 -1.770101,1.385289 -3.51684,2.896329 -3.606662,3.120015 -0.06003,0.149529 -0.144602,2.95032 -0.187891,6.223988 -0.08901,6.733524 -0.06908,6.593958 -1.044204,7.298871 -0.313864,0.226892 -0.643962,0.412531 -0.733554,0.412531 -0.08955,0 -0.874271,0.349576 -1.743712,0.776833 -0.869453,0.427256 -1.896268,0.88857 -2.281813,1.025139 -0.730176,0.258647 -0.900776,0.390041 -0.768844,0.592152 0.08705,0.133359 0.654715,0.07702 2.077775,-0.206185 z m 37.518532,-1.889015 c 0.839078,-0.205847 1.085749,-0.435711 0.951638,-0.886819 -0.118676,-0.399214 -0.06799,-2.000392 0.07071,-2.235085 0.152198,-0.257495 -0.02333,-1.366919 -0.236365,-1.494315 -0.0986,-0.05896 -0.492189,-0.09829 -0.874629,-0.08743 -0.616668,0.01754 -0.881286,-0.06551 -2.338859,-0.733903 -0.903948,-0.414523 -1.757309,-0.798537 -1.896378,-0.853369 -0.523275,-0.206319 -2.06872,-0.880402 -3.350259,-1.461295 -0.730101,-0.330941 -1.526589,-0.651468 -1.76996,-0.712287 -1.082272,-0.270461 -1.774707,-0.332574 -2.304333,-0.206701 -1.947804,0.462937 -1.994501,0.451264 -2.281997,-0.570551 -0.107214,-0.380863 -0.316054,-1.069513 -0.464188,-1.530331 -0.148146,-0.460819 -0.38379,-1.241816 -0.523656,-1.735551 -0.139863,-0.493732 -0.345993,-1.220871 -0.458076,-1.615857 -0.112124,-0.394989 -0.317327,-0.899962 -0.456124,-1.122166 -0.147665,-0.236391 -0.244623,-0.590811 -0.233718,-0.854273 0.0304,-0.734096 -0.168464,-0.797994 -1.560264,-0.501385 -0.654966,0.139578 -1.434585,0.357902 -1.732489,0.485169 -0.699453,0.298804 -1.699051,0.616182 -1.940699,0.616182 -0.336875,0 -0.337911,0.334897 -0.0033,1.027066 0.18021,0.372662 0.327646,0.720772 0.327646,0.773577 0,0.408927 2.89224,4.746798 4.375889,6.563084 0.862883,1.056339 1.300822,1.270363 2.830341,1.383227 0.591032,0.04361 1.700412,0.187604 2.46528,0.319987 0.76488,0.132382 2.016478,0.290349 2.781357,0.351038 0.764869,0.0607 1.600273,0.172711 1.856433,0.248937 0.264652,0.07874 0.692688,0.104232 0.991265,0.05904 0.320935,-0.04859 0.803971,-0.01205 1.240964,0.09374 0.39352,0.09531 1.028385,0.233395 1.410825,0.306871 0.881874,0.169427 1.741716,0.581877 2.06337,0.989752 0.251607,0.319053 0.429233,0.978529 0.551264,2.046664 0.05503,0.481766 0.02017,0.624089 -0.210401,0.856356 -0.152035,0.153213 -0.470724,0.313078 -0.708201,0.355256 -0.237477,0.04219 -0.431785,0.128112 -0.431785,0.190959 0,0.173235 1.033832,0.136756 1.858603,-0.06558 z M -25.322377,15.0553 c 0.411072,0 0.49536,-0.04073 0.49536,-0.239388 0,-0.224188 -0.08432,-0.239385 -1.327463,-0.239385 -1.077316,0 -1.327472,0.0328 -1.327472,0.174117 0,0.108384 0.178977,0.201764 0.47411,0.247356 0.260739,0.04028 0.559425,0.0902 0.663728,0.110892 0.104263,0.02071 0.265398,0.01713 0.357999,-0.0081 0.09261,-0.02509 0.391288,-0.04564 0.663738,-0.04564 z m -2.033147,-1.087651 c 0.468394,-0.04735 0.140365,-0.07663 -1.005079,-0.08977 -1.156482,-0.01327 -1.659129,0.01956 -1.571388,0.102664 0.07092,0.0672 0.494803,0.296097 0.941874,0.508694 l 0.81284,0.386537 0.0632,-0.418924 c 0.06189,-0.409958 0.07802,-0.420432 0.758549,-0.489186 z m 6.479288,0.761679 c -0.225981,-0.02655 -0.595783,-0.02655 -0.821764,0 -0.225993,0.02656 -0.04107,0.04827 0.410877,0.04827 0.451973,0 0.636867,-0.02172 0.410887,-0.04827 z M -46.15129,14.318067 c 0.09,-0.135015 0.05001,-0.253252 -0.148994,-0.441725 -0.18107,-0.171432 -0.272101,-0.407223 -0.272624,-0.70621 -3.82e-4,-0.246867 -0.09,-0.610435 -0.198972,-0.807929 -0.10905,-0.197494 -0.225383,-0.628387 -0.258592,-0.957545 -0.0572,-0.567486 -0.150455,-0.940361 -0.609172,-2.4375307 -0.108188,-0.353175 -0.196553,-0.8379316 -0.196325,-1.0772391 7.51e-4,-0.8048342 -0.673433,-2.7939892 -1.141358,-3.3675885 l -0.244102,-0.2992324 -0.0021,0.3220925 c -0.0011,0.1771498 0.04969,0.3527963 0.113776,0.3903224 0.162614,0.095152 0.514992,1.6215077 0.517999,2.2436956 0.0011,0.2832455 0.0923,0.9458873 0.201937,1.472538 0.109637,0.5266482 0.245254,1.3884402 0.301257,1.9150902 0.22814,2.145434 0.488616,2.908303 1.255509,3.677002 0.348608,0.349437 0.488942,0.364706 0.682455,0.07425 z m 26.048825,-1.297551 c -0.0098,-0.23041 -0.04719,-3.0581607 -0.08488,-6.2838916 -0.03771,-3.2257321 -0.107425,-6.03446144 -0.154845,-6.24162242 l -0.08619,-0.37665713 -2.16764,-0.08266082 c -1.276408,-0.0486707 -2.895353,-0.0293398 -3.937586,0.04701576 -0.973472,0.07132689 -4.922151,0.12988591 -8.774829,0.1301537 l -7.004872,4.87e-4 0.07802,2.13069111 c 0.04391,1.1986067 0.02191,2.6254317 -0.05033,3.261638 -0.07061,0.6220223 -0.09196,1.5214467 -0.04729,1.9987224 l 0.08106,0.8677758 h 0.407991 c 0.520571,0 2.16947,0.5364507 3.868891,1.2586983 0.730113,0.3102939 1.822431,0.7711009 2.427376,1.0240219 0.604956,0.252921 1.42989,0.660088 1.833162,0.904817 0.403293,0.244732 0.96082,0.582621 1.238949,0.750864 0.278148,0.168244 0.737663,0.468567 1.021171,0.667383 l 0.515473,0.361483 h 5.426507 5.426498 l -0.01645,-0.418927 z m -30.646728,-0.311289 0.537754,-0.203712 -0.05078,-0.755297 c -0.02789,-0.415415 -0.09567,-0.797761 -0.150455,-0.849663 -0.0548,-0.05189 -0.649615,-0.101115 -1.321774,-0.109358 -0.859083,-0.01059 -1.372342,-0.07729 -1.727826,-0.224735 -0.42928,-0.178049 -0.729339,-0.197931 -1.985556,-0.131561 -0.948672,0.05012 -1.681508,0.03011 -2.041646,-0.05574 l -0.561799,-0.133926 -0.08695,-1.8141541 c -0.155117,-3.2362442 -0.142008,-6.4451678 0.02812,-6.9011125 0.08596,-0.2304083 0.209039,-0.90368391 0.273387,-1.49616503 0.06438,-0.59247987 0.236964,-1.38837487 0.383573,-1.76865237 0.394336,-1.0228473 0.264432,-1.1844645 -0.915497,-1.1390096 l -0.909253,0.035025 0.03016,0.7477376 c 0.01656,0.4112541 0.147753,1.078265 0.291496,1.48224537 0.319201,0.89705414 0.351637,1.4827982 0.138359,2.49789773 -0.302347,1.4390853 -0.574089,3.0095893 -0.791202,4.5726708 -0.07048,0.5071164 -0.110112,1.8347045 -0.08815,2.9501914 0.04805,2.4357597 0.02626,2.3973507 1.610851,2.8385187 0.596241,0.165997 1.425425,0.408383 1.842619,0.538638 0.669709,0.20908 1.004416,0.230204 2.857624,0.180343 1.571051,-0.04228 2.234344,-0.107713 2.636829,-0.260185 z m -0.79909,-2.8605796 c 0.02048,-0.065824 -0.208244,-0.2947036 -0.508183,-0.5086029 -0.367981,-0.2624293 -0.702404,-0.6711611 -1.028318,-1.2567786 -0.265631,-0.477328 -0.558455,-1.0025252 -0.650706,-1.1671031 -0.0923,-0.1645765 -0.168073,-0.4393137 -0.168509,-0.6105265 -9.15e-4,-0.3674 -0.235592,-1.0746544 -0.413001,-1.2447154 -0.27122,-0.2599714 0.16831,2.6325632 0.539671,3.5515523 0.330556,0.8180137 0.659346,1.1837399 1.170308,1.3017684 0.518587,0.1197794 1.01069,0.089308 1.058738,-0.065592 z m -2.988619,-0.4744831 c 0,-0.4002866 -0.173695,-0.9019882 -0.312274,-0.9019882 -0.224945,0 -0.508334,-0.3350832 -0.884914,-1.0463427 -0.66975,-1.2649801 -0.724107,-2.9613817 -0.121825,-3.8016299 0.169186,-0.2360389 0.307612,-0.5530743 0.307612,-0.704525 0,-0.4021785 0.349262,-0.6387772 1.269684,-0.860099 0.448977,-0.1079581 0.873211,-0.2390396 0.942746,-0.2912851 0.06952,-0.052251 0.467784,-0.1512133 0.884979,-0.2199253 1.288457,-0.2122059 1.501571,-0.2673769 1.998379,-0.5173547 0.315335,-0.15866382 0.751249,-0.24828085 1.264249,-0.25990815 1.250627,-0.028353 1.627807,0.0972574 2.399211,0.79899565 l 0.695431,0.63261 -0.06657,-0.9647593 c -0.03662,-0.53061815 -0.09218,-0.99169036 -0.123414,-1.02460506 -0.03126,-0.0329178 -2.341924,-0.046468 -5.134828,-0.0301063 -5.667733,0.0331984 -5.394096,-0.0111994 -5.394096,0.87561466 0,0.242374 -0.116263,0.6895278 -0.258362,0.993676 -0.286919,0.6140787 -0.371153,1.6394009 -0.368417,4.4841516 0.0021,1.9365199 0.152981,2.8591124 0.477611,2.915793 0.116863,0.020391 0.710184,0.04575 1.318605,0.05634 0.82769,0.014402 1.106221,-0.019502 1.106221,-0.1346533 z m 4.930692,-0.3036258 c 0.259768,-0.229734 0.378451,-0.4274686 0.329324,-0.5486636 -0.04228,-0.1042208 -0.114263,-0.5754608 -0.160086,-1.0472119 -0.0525,-0.5406349 -0.239426,-1.2252713 -0.505601,-1.8519111 -0.232268,-0.5467974 -0.42417,-1.0584875 -0.426457,-1.137086 -0.0021,-0.078595 -0.264998,-0.3541731 -0.58383,-0.6123903 -0.460602,-0.3730549 -0.685866,-0.4713946 -1.096678,-0.4787743 -0.468675,-0.00827 -0.527478,0.024275 -0.629033,0.3497942 -0.06167,0.1974924 -0.220513,0.5582663 -0.353066,0.8017189 -0.398651,0.73215 -0.326001,1.6230832 0.219969,2.6977655 0.978765,1.9266029 2.264226,2.6591754 3.205458,1.8267586 z m -5.436391,-2.0945287 c 0,-0.1645779 -0.05687,-0.299231 -0.12643,-0.299231 -0.141237,0 -0.173292,0.394504 -0.04205,0.5186682 0.139363,0.1319433 0.168561,0.093922 0.168561,-0.2194372 z m 6.746248,-3.8301814 c -0.04,-0.098743 -0.09511,-0.1795396 -0.122464,-0.1795396 -0.02735,0 -0.04969,0.080786 -0.04969,0.1795396 0,0.098743 0.05512,0.1795397 0.12245,0.1795397 0.06734,0 0.08978,-0.080786 0.04969,-0.1795397 z m 9.007194,-4.3187422 c -0.04215,-0.1041358 -0.0767,-0.3979823 -0.0767,-0.6530039 v -0.4636736 l -0.521606,0.1742304 c -0.286864,0.095821 -0.855789,0.1742294 -1.264248,0.1742294 h -0.742652 v 0.478773 0.47877324 h 1.340984 c 1.170863,0 1.331265,-0.024019 1.264259,-0.18932854 z m -12.792998,-0.1270349 c 0.04392,-0.1081652 0.06406,-0.2084295 0.04521,-0.2228021 -0.01907,-0.014366 -0.621472,-0.058496 -1.338782,-0.098037 -1.17375,-0.064705 -1.300149,-0.051934 -1.263593,0.1277835 0.05338,0.2624634 0.473415,0.3632475 1.574481,0.3777942 0.728707,0.00962 0.91844,-0.02604 0.982767,-0.1847415 z m 6.08238,-0.1322404 c -0.04793,-0.1809006 -0.09675,-0.335379 -0.108626,-0.3432811 -0.01188,-0.00792 -0.632903,-0.042608 -1.380393,-0.077122 -1.349591,-0.062319 -1.35907,-0.060845 -1.35907,0.2100011 0,0.2385806 0.09109,0.287527 0.726952,0.3906693 0.399807,0.06485 1.060221,0.1248301 1.467588,0.13328 l 0.740649,0.015364 -0.08715,-0.3289111 z m 14.121419,-0.1401545 c -0.05469,-0.3524372 -0.08379,-0.3687879 -0.656393,-0.3687879 -0.329575,0 -0.948923,-0.034598 -1.376318,-0.076891 l -0.777104,-0.076903 v 0.3561817 c 0,0.1959013 0.02441,0.3786246 0.05416,0.4060546 0.02986,0.027428 0.674872,0.067712 1.433508,0.089502 l 1.379303,0.039638 -0.05709,-0.368788 z m 3.707672,0.289526 c -0.05556,-0.3513561 -0.148536,-0.5386201 -0.267198,-0.5386201 -0.307229,0 -0.201413,-0.3579775 0.142415,-0.481735 0.178356,-0.064205 1.024613,-0.1167357 1.880555,-0.1167357 h 1.556289 l 0.079,0.374041 c 0.121248,0.5740085 0.09446,0.9997058 -0.07279,1.15803114 -0.101326,0.0959914 -0.662658,0.14363145 -1.692383,0.14363145 h -1.540676 l -0.08531,-0.53861889 z m 2.837969,-0.3590804 c 0,-0.2878887 -0.03052,-0.2992335 -0.805964,-0.2992335 -1.195413,0 -1.579311,0.094798 -1.502979,0.3711679 0.05568,0.2017509 0.189014,0.2272991 1.185867,0.2272991 1.113663,0 1.123076,-0.00244 1.123076,-0.2992335 z m 3.250415,0.81118792 c -1.05352,-0.0404299 -1.117563,-0.0583374 -1.232642,-0.34493682 -0.06667,-0.1662628 -0.121399,-0.5157563 -0.121399,-0.776653 v -0.4743589 l 1.738349,0.033296 1.738341,0.033295 v 0.7780054 0.77800546 l -0.505689,0.008034 c -0.278149,0.004386 -1.005765,-0.0112002 -1.616953,-0.0346587 z m 1.553727,-0.81118792 c 0,-0.2979748 -0.0044,-0.2992335 -1.1892,-0.2992335 -1.115418,0 -1.185212,0.014426 -1.124949,0.2326142 0.07179,0.2598082 0.340001,0.3210455 1.523994,0.3479194 0.763603,0.017335 0.790155,0.00792 0.790155,-0.2813001 z"
+ id="path3954"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="hg"
+ style="display:inline"
+ transform="translate(0,3.9998016)">
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.52958179;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1699"
+ width="64"
+ height="64"
+ x="0.00064498186"
+ y="-3.9999022" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Icon"
+ style="display:inline"
+ transform="translate(0,3.9998016)">
+ <rect
+ style="opacity:1;fill:#292929;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.07477689;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1703"
+ width="62.925224"
+ height="35.698353"
+ x="0.52544051"
+ y="10.163513" />
+ <g
+ style="display:inline"
+ transform="matrix(1.7215752,0,0,1.7215752,-239.16967,-425.42047)"
+ id="g874">
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706-8-1"
+ y="339.07217"
+ x="110.50091"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:28.91100502px;line-height:38.72009659px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:1.54880381"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;stroke-width:1.54880381"
+ y="339.07217"
+ x="110.50091"
+ id="tspan1704-0-5"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text838-9"
+ y="266.03046"
+ x="148.92941"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.38709116px;line-height:17.31349373px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:0.69253975"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;fill-opacity:1;stroke-width:0.69253975"
+ y="266.03046"
+ x="148.92941"
+ id="tspan836-9"
+ sodipodi:role="line">inelerra</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994"
+ x="-140.4826"
+ y="58.530777"
+ id="text3890"><tspan
+ sodipodi:role="line"
+ id="tspan3888"
+ x="-140.4826"
+ y="58.530777"
+ style="fill:#000000;stroke-width:0.99999994">s.a.: 0.Neophyte-Logos</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="15"
+ sodipodi:docname="histogram_carrot_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title944">histogram_carrot_*</title>
+ <metadata
+ id="metadata8">
+ <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>histogram_carrot_*</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>histogram_carrot_up, editpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="matrix(-0.4,0,0,-0.4,1.8,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="scale(0.6)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.1944675"
+ inkscape:cx="-9.1920797"
+ inkscape:cy="-25.95284"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="7.5,15.59375"
+ orientation="1,0"
+ id="guide988"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="14.730469,1.109375"
+ orientation="0,1"
+ id="guide990"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="13.285156,-0.34765625"
+ orientation="1,0"
+ id="guide992"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,12.765625"
+ orientation="0,1"
+ id="guide994"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,15.007812"
+ orientation="0,1"
+ id="guide996"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1116" />
+ </sodipodi:namedview>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-29.839439"
+ y="-22.154915"
+ id="text932"><tspan
+ sodipodi:role="line"
+ id="tspan930"
+ x="-29.839439"
+ y="-22.154915">see: histogram_carrot_up</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffe680;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-57"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.06161715,-2.3052248)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.940127,14.993896 7.4963424,-0.00188384 V 2.2403032 L 13.281499,13.896553 Z"
+ id="path998-49"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="15"
+ sodipodi:docname="histogram_carrot_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title944">histogram_carrot_*</title>
+ <metadata
+ id="metadata8">
+ <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>histogram_carrot_*</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>histogram_carrot_up, editpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="matrix(-0.4,0,0,-0.4,1.8,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="scale(0.6)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.1944675"
+ inkscape:cx="-110.83869"
+ inkscape:cy="-35.385953"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="7.5,15.59375"
+ orientation="1,0"
+ id="guide988"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="14.730469,1.109375"
+ orientation="0,1"
+ id="guide990"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="13.285156,-0.34765625"
+ orientation="1,0"
+ id="guide992"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,12.765625"
+ orientation="0,1"
+ id="guide994"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,15.007812"
+ orientation="0,1"
+ id="guide996"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1116" />
+ </sodipodi:namedview>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-29.839439"
+ y="-22.154915"
+ id="text932"><tspan
+ sodipodi:role="line"
+ id="tspan930"
+ x="-29.839439"
+ y="-22.154915">see: histogram_carrot_up</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-94"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.0616173,-2.3052243)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.940127,14.993901 7.4963422,-0.00188434 V 2.2403007 L 13.281499,13.896551 Z"
+ id="path998-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="15"
+ sodipodi:docname="histogram_carrot_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title944">histogram_carrot_*</title>
+ <metadata
+ id="metadata8">
+ <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>histogram_carrot_*</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>histogram_carrot_up, editpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="matrix(-0.4,0,0,-0.4,1.8,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="scale(0.6)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.1944675"
+ inkscape:cx="-29.598406"
+ inkscape:cy="-34.615903"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="7.5,15.59375"
+ orientation="1,0"
+ id="guide988"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="14.730469,1.109375"
+ orientation="0,1"
+ id="guide990"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="13.285156,-0.34765625"
+ orientation="1,0"
+ id="guide992"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,12.765625"
+ orientation="0,1"
+ id="guide994"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,15.007812"
+ orientation="0,1"
+ id="guide996"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1116" />
+ </sodipodi:namedview>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-29.839439"
+ y="-22.154915"
+ id="text932"><tspan
+ sodipodi:role="line"
+ id="tspan930"
+ x="-29.839439"
+ y="-22.154915">see: histogram_carrot_up</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#63637d;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-9"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.0616174,-2.3052248)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.940126,14.993896 7.4963424,-0.00188384 V 2.2403032 L 13.281498,13.896553 Z"
+ id="path998-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="15"
+ sodipodi:docname="histogram_carrot_up_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title944">histogram_carrot_*</title>
+ <metadata
+ id="metadata8">
+ <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>histogram_carrot_*</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>histogram_carrot_up, editpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(0.2)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="scale(-0.4)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
+ transform="matrix(-0.4,0,0,-0.4,1.8,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="scale(0.6)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.1944675"
+ inkscape:cx="-59.822871"
+ inkscape:cy="-35.385953"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="7.5,15.59375"
+ orientation="1,0"
+ id="guide988"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="14.730469,1.109375"
+ orientation="0,1"
+ id="guide990"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="13.285156,-0.34765625"
+ orientation="1,0"
+ id="guide992"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,12.765625"
+ orientation="0,1"
+ id="guide994"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,15.007812"
+ orientation="0,1"
+ id="guide996"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1116" />
+ </sodipodi:namedview>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#b9b9fa;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-5"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.06161831,-2.3052248)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.940125,14.993896 7.4963434,-0.00188384 V 2.2403032 L 13.281497,13.896553 Z"
+ id="path998-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-29.839439"
+ y="-22.154915"
+ id="text932"><tspan
+ sodipodi:role="line"
+ id="tspan930"
+ x="-29.839439"
+ y="-22.154915">see: histogram_carrot_up</tspan></text>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="15"
+ sodipodi:docname="histogram_carrot_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_carrot_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title944">histogram_carrot_up</title>
+ <metadata
+ id="metadata8">
+ <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>histogram_carrot_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>histogram_carrot_*, editpanel_</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.1944675"
+ inkscape:cx="-59.822871"
+ inkscape:cy="-35.385953"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="7.5,15.59375"
+ orientation="1,0"
+ id="guide988"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="14.730469,1.109375"
+ orientation="0,1"
+ id="guide990"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="13.285156,-0.34765625"
+ orientation="1,0"
+ id="guide992"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,12.765625"
+ orientation="0,1"
+ id="guide994"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.5,15.007812"
+ orientation="0,1"
+ id="guide996"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1116" />
+ </sodipodi:namedview>
+ <image
+ y="0.83333349"
+ x="-34.384438"
+ id="image913"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sJCAgcDJ1bTBwAAABaSURBVCjP Y2DAA3bu/PQfnzwTPo2XLx9liI6u+E+yZmIAIz5bYeD8+YMMS5d2MNLWZnRb8dlOPZtx2YrLdurY TMhWbLZTbjOxtqLbTpnNO3d++r9oURsD3QEAj/FCoFUuF/YAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.333333"
+ width="13.333333" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#8c8cb7;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.06527514,-2.3111527)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.943784,14.987968 7.5,-0.007812 v 2.242187 l 5.785156,11.65625 z"
+ id="path998"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <image
+ y="24.912985"
+ x="-34.384438"
+ id="image1008"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sJCAgaGNHbP+cAAABaSURBVCjP Y2DAA27f+fEfnzwTPo2vXj5iWLlq33+SNRMDGPHZCgNPnj5hCA9zYqStzei24rOdejbjshWX7dSx mZCt2Gyn3GZibUW3nTKbb9/58f/cuWMMdAcAHN9FRhTyoNcAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.333333"
+ width="13.333333" />
+ <image
+ y="48.992638"
+ x="-34.384438"
+ id="image1019"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sJCAgZI0v9hQAAAABZSURBVCjP Y2DAA3T1bP7jk2fCp1FQUJ1BQWXrf5I1EwMY8dkKA4+eBjE8uOPNSFub0W3FZzv1bMZlKy7bqWMz IVux2U65zcTaim47ZTbr6tn8//ytkoHuAACT1Sd69oaNigAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.333333"
+ width="13.333333" />
+ <image
+ y="73.072281"
+ x="-34.384438"
+ id="image1030"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sJCAgeFyUI53IAAABaSURBVCjP Y2DAA3bu/PQfnzwTPo08dzMZoqMr/pOsmRjAiM9WGJh2VJZh6dIORtrajG4rPtupZzMuW3HZTh2b CdmKzXbKbSbWVnTbKbN5585P/xctamOgOwAAKCc3hxSqrOwAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.333333"
+ width="13.333333" />
+ <image
+ y="97.151939"
+ x="-34.384438"
+ id="image1041"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sJCAgeLnoNb3oAAABaSURBVCjP Y2DAA27f+fEfnzwTPo1s10sZVq7a959kzcQARny2wsCJ74EM4WFOjLS1Gd1WfLZTz2ZctuKynTo2 E7IVm+2U20ysrei2U2bz7Ts//p87d4yB7gAAnkM54+CH23cAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="13.333333"
+ width="13.333333" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-156.21188"
+ y="10.886612"
+ id="text1046"><tspan
+ sodipodi:role="line"
+ id="tspan1044"
+ x="-156.21188"
+ y="10.886612">histogram_carrot_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-156.21188"
+ y="35.298988"
+ id="text1050"><tspan
+ sodipodi:role="line"
+ id="tspan1048"
+ x="-156.21188"
+ y="35.298988">histogram_carrot_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-156.21188"
+ y="59.672306"
+ id="text1054"><tspan
+ sodipodi:role="line"
+ id="tspan1052"
+ x="-156.21188"
+ y="59.672306">histogram_carrot_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-156.21188"
+ y="84.045624"
+ id="text1058"><tspan
+ sodipodi:role="line"
+ id="tspan1056"
+ x="-156.21188"
+ y="84.045624">histogram_carrot_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-156.21188"
+ y="108.41894"
+ id="text1062"><tspan
+ sodipodi:role="line"
+ id="tspan1060"
+ x="-156.21188"
+ y="108.41894">histogram_carrot_checkedhi</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#b9b9fa;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-5"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.07365582,21.997343)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.952163,39.296464 7.5083809,24.300684 v 2.242187 l 5.7851541,11.65625 z"
+ id="path998-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#63637d;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-9"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,0.028712,46.697183)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.907221,63.996304 7.4634369,49.000524 v 2.242187 l 5.7851561,11.65625 z"
+ id="path998-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffe680;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-57"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,-0.5041933,68.0776)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.374316,85.376721 6.9305316,70.380941 v 2.242187 l 5.7851564,11.65625 z"
+ id="path998-49"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#6f6f8c;stroke-width:0.95999998;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path986-94"
+ sodipodi:sides="3"
+ sodipodi:cx="7.5"
+ sodipodi:cy="10.668857"
+ sodipodi:r1="7.7022853"
+ sodipodi:r2="3.8511424"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 14.170375,14.519999 -13.34074975,0 L 7.5,2.9665713 Z"
+ inkscape:transform-center-y="-2.2217385"
+ transform="matrix(0.99129665,0,0,1.1538073,-0.9343699,91.072785)" />
+ <path
+ style="fill:#a5a5db;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 13.944139,108.37191 6.500355,93.376125 v 2.242185 l 5.785156,11.65625 z"
+ id="path998-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-80.855263"
+ y="-23.502502"
+ id="text1120"><tspan
+ sodipodi:role="line"
+ id="tspan1118"
+ x="-80.855263"
+ y="-23.502502">Unknown use.</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot1141"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion1143"><rect
+ id="rect1145"
+ width="30.224464"
+ height="27.144264"
+ x="-9.0480881"
+ y="43.299339" /></flowRegion><flowPara
+ id="flowPara1147" /></flowRoot></svg>
--- /dev/null
+<?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="24"
+ height="24"
+ viewBox="0 0 6.3499999 6.3500002"
+ version="1.1"
+ id="svg3590"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="histogram_img.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_img.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs3584" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.784375"
+ inkscape:cx="8.66828"
+ inkscape:cy="-48.160641"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="5.2999348,0.36380209"
+ orientation="0,1"
+ id="guide846"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-3.3982421,-27.591082"
+ orientation="0,1"
+ id="guide910"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-3.2246093,-25.896095"
+ orientation="0,1"
+ id="guide912"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata3587">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.64999)">
+ <image
+ y="290.61679"
+ x="-11.424043"
+ id="image4173"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIHAccMSx0rkgAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAFpJREFUSMftVEEOACAIKn7my3lafaCy NpltxVUniMxSPk5AskXPhFr0XQQk26mNUN8K6gBAnbhHUjSzY8em/A08lV49d4OI54eI4aveGqnY zKqUYEQkP/KHiw5+kTItXPkDaAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <image
+ y="298.34143"
+ x="-11.285278"
+ id="image4184"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIHAccMSx0rkgAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAFpJREFUSMftVEEOACAIKn7my3lafaCy NpltxVUniMxSPk5AskXPhFr0XQQk26mNUN8K6gBAnbhHUjSzY8em/A08lV49d4OI54eI4aveGqnY zKqUYEQkP/KHiw5+kTItXPkDaAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-31.301268"
+ y="295.6405"
+ id="text4189"><tspan
+ sodipodi:role="line"
+ id="tspan4187"
+ x="-31.301268"
+ y="295.6405"
+ style="stroke-width:0.26458335">histogram_img</tspan></text>
+ <image
+ y="305.77734"
+ x="-11.6418"
+ id="image4199"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL EwAACxMBAJqcGAAAAAd0SU1FB9sJCAcQL5jVNV8AAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IFRoZSBHSU1Q72QlbgAAAIdJREFUSMftlTsKwDAMQ6XQ+19ZHUqXUFP5M8ZrjCTkBwHOZEaAnB1n 7501HaBssIu7ZquT3DG5Jm4CAAT49c5ux4Eoozgy+pK1V6EoI5w32MU1SFEopiZF9k2ey/5TVOk4 wIhRHMNA8vYqFCWECwa7uAYpCsXUpMi+CQDQoKjQcYARz/dtzw3X8kHsBDaCJQAAAABJRU5ErkJg gg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-33.485474"
+ y="310.47971"
+ id="text4204"><tspan
+ sodipodi:role="line"
+ id="tspan4202"
+ x="-33.485474"
+ y="310.47971"
+ style="stroke-width:0.26458335">histogram_rgb</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-36.532829"
+ y="302.90158"
+ id="text4208"><tspan
+ sodipodi:role="line"
+ id="tspan4206"
+ x="-36.532829"
+ y="302.90158"
+ style="stroke-width:0.26458335">histogram_toggle</tspan></text>
+ <g
+ id="g872">
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821"
+ d="m 1.2420648,296.11603 c 1.256588,-0.79986 1.4646934,-3.69027 2.15971,-3.70738 0.9990162,-0.0246 0.7096303,2.91419 1.8232632,3.69836 z"
+ style="fill:#efede3;fill-opacity:1;stroke:#efede3;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ y="291.25955"
+ x="0.60955709"
+ height="5.1308861"
+ width="0.10380269"
+ id="rect823"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.16078065;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.8208332"
+ x="296.20624"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1073">
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0"
+ d="m 0.73641347,311.71822 c 1.25658813,-0.26362 0.86531043,-1.20621 2.15971003,-1.2219 1.0361148,-0.0126 0.70963,0.96048 1.823263,1.21893 z"
+ style="fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745213"
+ x="311.67056"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2"
+ style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="310.15717"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6"
+ style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0-9"
+ d="m 0.73641343,309.96643 c 1.25658817,-0.26362 0.86531047,-1.20621 2.15971007,-1.2219 1.0361147,-0.0126 0.70963,0.96048 1.8232628,1.21893 z"
+ style="fill:#00ff00;fill-opacity:1;stroke:#00ff00;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745208"
+ x="309.91873"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2-1"
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="308.40533"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6-0"
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0-4"
+ d="m 0.7364135,308.1884 c 1.2565881,-0.26362 0.8653104,-1.20621 2.15971,-1.2219 1.0361147,-0.0126 0.70963,0.96048 1.8232628,1.21893 z"
+ style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745213"
+ x="308.14072"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2-2"
+ style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="306.62732"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6-7"
+ style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="24"
+ height="24"
+ viewBox="0 0 6.3499999 6.3500002"
+ version="1.1"
+ id="svg3590"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="histogram_rgb.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/histogram_rgb.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs3584" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="25.229167"
+ inkscape:cx="12"
+ inkscape:cy="12"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata3587">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.64999)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-21.807106"
+ y="280.49567"
+ id="text4189"><tspan
+ sodipodi:role="line"
+ id="tspan4187"
+ x="-21.807106"
+ y="280.49567"
+ style="stroke-width:0.26458335">see: histogram_img</tspan></text>
+ <g
+ transform="translate(0.44631226,-15.456252)"
+ id="g1073">
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0"
+ d="m 0.73641347,311.71822 c 1.25658813,-0.26362 0.86531043,-1.20621 2.15971003,-1.2219 1.0361148,-0.0126 0.70963,0.96048 1.823263,1.21893 z"
+ style="fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745213"
+ x="311.67056"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2"
+ style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="310.15717"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6"
+ style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0-9"
+ d="m 0.73641343,309.96643 c 1.25658817,-0.26362 0.86531047,-1.20621 2.15971007,-1.2219 1.0361147,-0.0126 0.70963,0.96048 1.8232628,1.21893 z"
+ style="fill:#00ff00;fill-opacity:1;stroke:#00ff00;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745208"
+ x="309.91873"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2-1"
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="308.40533"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6-0"
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cscc"
+ inkscape:connector-curvature="0"
+ id="path821-0-4"
+ d="m 0.7364135,308.1884 c 1.2565881,-0.26362 0.8653104,-1.20621 2.15971,-1.2219 1.0361147,-0.0126 0.70963,0.96048 1.8232628,1.21893 z"
+ style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0.15189599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="-5.3745213"
+ x="308.14072"
+ height="5.2916665"
+ width="0.26458335"
+ id="rect823-5-2-2"
+ style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26068187;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="306.62732"
+ x="0.082854651"
+ height="1.778"
+ width="0.26458335"
+ id="rect823-5-2-6-7"
+ style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15110557;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="24"
+ height="24"
+ viewBox="0 0 6.3499999 6.3500002"
+ version="1.1"
+ id="svg3590"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="histogram_toggle.svg">
+ <defs
+ id="defs3584" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.5768229"
+ inkscape:cx="13.972098"
+ inkscape:cy="-34.412131"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata3587">
+ <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="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.64999)">
+ <image
+ y="308.53168"
+ x="-4.2609229"
+ id="image4173"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIHAccMSx0rkgAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAFpJREFUSMftVEEOACAIKn7my3lafaCy NpltxVUniMxSPk5AskXPhFr0XQQk26mNUN8K6gBAnbhHUjSzY8em/A08lV49d4OI54eI4aveGqnY zKqUYEQkP/KHiw5+kTItXPkDaAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <image
+ y="293.14102"
+ x="-4.795505"
+ id="image4184"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIHAccMSx0rkgAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAFpJREFUSMftVEEOACAIKn7my3lafaCy NpltxVUniMxSPk5AskXPhFr0XQQk26mNUN8K6gBAnbhHUjSzY8em/A08lV49d4OI54eI4aveGqnY zKqUYEQkP/KHiw5+kTItXPkDaAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.436148"
+ y="312.95343"
+ id="text4189"><tspan
+ sodipodi:role="line"
+ id="tspan4187"
+ x="-25.436148"
+ y="312.95343"
+ style="stroke-width:0.26458335">histogram_img</tspan></text>
+ <image
+ y="322.02737"
+ x="-4.0045028"
+ id="image4199"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAL EwAACxMBAJqcGAAAAAd0SU1FB9sJCAcQL5jVNV8AAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IFRoZSBHSU1Q72QlbgAAAIdJREFUSMftlTsKwDAMQ6XQ+19ZHUqXUFP5M8ZrjCTkBwHOZEaAnB1n 7501HaBssIu7ZquT3DG5Jm4CAAT49c5ux4Eoozgy+pK1V6EoI5w32MU1SFEopiZF9k2ey/5TVOk4 wIhRHMNA8vYqFCWECwa7uAYpCsXUpMi+CQDQoKjQcYARz/dtzw3X8kHsBDaCJQAAAABJRU5ErkJg gg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499999"
+ width="6.3499999" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-25.848175"
+ y="326.72974"
+ id="text4204"><tspan
+ sodipodi:role="line"
+ id="tspan4202"
+ x="-25.848175"
+ y="326.72974"
+ style="stroke-width:0.26458335">histogram_rgb</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-30.043056"
+ y="297.70117"
+ id="text4208"><tspan
+ sodipodi:role="line"
+ id="tspan4206"
+ x="-30.043056"
+ y="297.70117"
+ style="stroke-width:0.26458335">histogram_toggle</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="173"
+ height="17"
+ sodipodi:docname="hscroll_handle_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. Breeze dark</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.517341"
+ inkscape:cx="75.971129"
+ inkscape:cy="8.4999995"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ ry="0"
+ y="0"
+ x="0"
+ height="17"
+ width="173"
+ id="rect3592"
+ style="fill:#333333;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3596"
+ width="173"
+ height="2"
+ x="0"
+ y="15.000001" />
+ <rect
+ y="0"
+ x="0"
+ height="1"
+ width="173"
+ id="rect3598"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <rect
+ y="16"
+ x="0"
+ height="1"
+ width="173"
+ id="rect3626"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ ry="0"
+ y="82.349327"
+ x="1.328215"
+ height="17"
+ width="173"
+ id="rect3592-8"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3596-1"
+ width="173"
+ height="2"
+ x="1.5495842"
+ y="75.323097" />
+ <rect
+ y="82.349327"
+ x="1.328215"
+ height="1"
+ width="173"
+ id="rect3598-3"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ <rect
+ y="103.66219"
+ x="2.877799"
+ height="1"
+ width="173"
+ id="rect3626-1"
+ style="fill:#404040;fill-opacity:1;stroke:none" />
+ <rect
+ y="98.349327"
+ x="1.328215"
+ height="1"
+ width="173"
+ id="rect3598-3-1"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ <rect
+ ry="0"
+ y="0"
+ x="-173"
+ height="17"
+ width="173"
+ id="rect3592-3-2"
+ style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:1"
+ transform="scale(-1,1)" />
+ <rect
+ ry="0"
+ y="0.50661993"
+ x="-172.49338"
+ height="15.98676"
+ width="171.98676"
+ id="rect3592-3-2-9"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:1.01323998;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1,1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-50.333004"
+ y="-67.771561"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-50.333004"
+ y="-67.771561"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="104"
+ height="17"
+ sodipodi:docname="hscroll_handle_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. Breeze dark</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="5.3134995"
+ inkscape:cx="-33.678"
+ inkscape:cy="12.263998"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-47.486931"
+ y="-38.07494"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-47.486931"
+ y="-38.07494"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ <rect
+ ry="0"
+ y="-0.024408206"
+ x="3.6805868e-06"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7-3-2"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="0.52441227"
+ x="1.5000037"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7-4-6"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4-6"
+ id="use884-8-1-7-9-1-7"
+ transform="translate(4.3848429e-6,2.9993454)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4-6"
+ id="use886-0-0-3-93-48-5"
+ width="100%"
+ height="100%"
+ transform="translate(4.3848429e-6,5.9987094)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4-6"
+ id="use888-5-7-1-9-6-6"
+ transform="translate(4.3848429e-6,8.9980594)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4-6"
+ id="use890-6-5-1-84-8-9"
+ width="100%"
+ height="100%"
+ transform="translate(4.3848429e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4-6"
+ id="use892-6-8-9-0-75-8"
+ transform="translate(4.3848429e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,10.000011,0.02440461)"
+ id="g1995-7-1-3-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8-9-2"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2-42-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8-59-2"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2-42-8"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="0.52441227"
+ x="102.50002"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-1-9"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="0.27480519"
+ x="0.25039279"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8-7-9"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.52441227"
+ x="0.5000037"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4-7-6"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,-16.003531,57.877174)"
+ id="g2238-5-1-7-0"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-1-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-03-7"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-0-6"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-03-7"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,10.000011,57.925994)"
+ id="g2238-5-1-42-1"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-73-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-3-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-2-1"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-3-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,35.962541,57.877184)"
+ id="g2238-5-1-6-5"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-9-9"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-77-9"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-7-1"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-77-9"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="104"
+ height="17"
+ sodipodi:docname="hscroll_handle_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="3.7572115"
+ inkscape:cx="-56.700403"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="dotss high "
+ style="display:inline">
+ <g
+ transform="translate(-2.1270303,25.06159)"
+ id="g1328">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-26.194456"
+ y="-51.481907"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-26.194456"
+ y="-51.481907"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ <rect
+ ry="0"
+ y="-25.078859"
+ x="2.1270339"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7-1-2"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="-24.544321"
+ x="3.6270339"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7-5-9"
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5-9"
+ id="use884-8-1-7-9-2-0"
+ transform="translate(4.4398233e-6,2.9993446)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5-9"
+ id="use886-0-0-3-93-4-2"
+ width="100%"
+ height="100%"
+ transform="translate(4.4398233e-6,5.9987096)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5-9"
+ id="use888-5-7-1-9-3-8"
+ transform="translate(4.4398233e-6,8.9980596)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5-9"
+ id="use890-6-5-1-84-5-3"
+ width="100%"
+ height="100%"
+ transform="translate(4.4398233e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5-9"
+ id="use892-6-8-9-0-7-8"
+ transform="translate(4.4398233e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,12.127039,-25.044343)"
+ id="g1995-7-1-5-0">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8-7-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2-4-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8-5-9"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2-4-0"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="-24.544321"
+ x="104.62705"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-47-1"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="-24.793924"
+ x="2.377423"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8-1-9"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="-24.544321"
+ x="2.6270339"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4-3-6"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,-13.876502,32.822725)"
+ id="g2238-5-1-2"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-5"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-4"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-49"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-4"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,12.127039,32.857238)"
+ id="g2238-5-1-4-9"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-7-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-0-6"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-6-0"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-0-6"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,38.089568,32.857237)"
+ id="g2238-5-1-9-5"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-2-0"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-7-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-4-9"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-7-2"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="104"
+ height="17"
+ sodipodi:docname="hscroll_handle_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_handle_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. Breeze dark</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="2.4296875"
+ inkscape:cx="61.946"
+ inkscape:cy="-23.942492"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="stripes"
+ style="display:inline">
+ <rect
+ ry="0"
+ y="-0.024406299"
+ x="3.6805868e-06"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="0.52440655"
+ x="1.5000037"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7"
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use884-8-1-7-9"
+ transform="translate(4.1299601e-6,2.999346)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use886-0-0-3-93"
+ width="100%"
+ height="100%"
+ transform="translate(4.1299601e-6,5.998711)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use888-5-7-1-9"
+ transform="translate(4.1299601e-6,8.99806)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use890-6-5-1-84"
+ width="100%"
+ height="100%"
+ transform="translate(4.1299601e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use892-6-8-9-0"
+ transform="translate(4.1299601e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,35.962541,-0.02440796)"
+ id="g1995-2-8">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-59"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-09"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-59"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,10.000001,0.02440004)"
+ id="g1995-7-1">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,-16.003531,-0.02440496)"
+ id="g1995-4-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-6"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-4"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-8"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="0.52440655"
+ x="102.50002"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-1"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="0.27480328"
+ x="0.25039279"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.52440655"
+ x="0.5000037"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4-0"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="10.289389"
+ y="-21.276527"
+ id="text971"><tspan
+ sodipodi:role="line"
+ id="tspan969"
+ x="10.289389"
+ y="-21.276527">see: vscroll_handle_up</tspan></text>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="dots"
+ style="display:inline" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_left_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.749788"
+ y1="5.2364135"
+ x2="-21.749788"
+ y2="-1.5185461"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)" />
+ <inkscape:perspective
+ id="perspective4578"
+ 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>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-35.624801"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ id="path3725"
+ d="M 0,0 V 17 H 16 V 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ d="M 12,14.5 V 2.5 L 5,8.6016951 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.1;fill:url(#linearGradient3750);fill-opacity:1;stroke:none"
+ d="M 2.94254,1.25 C 1.722426,1.25 0.75,2.181383 0.75,3.35 v 4.9 C 7.854127,6.7194065 12.392601,6.6048987 15.25,7.046 V 1.25 Z"
+ id="path3728"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4292"
+ d="m 2.7679801,0.49976547 c -1.262227,0 -2.26821697,1.10882223 -2.26821697,2.50007383 V 13.966829 c 0,1.391252 1.00598997,2.533408 2.26821697,2.533408 H 15.500237 V 0.49976547 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-93"
+ d="M 0.00156116,17 V 0 H 16.001561 v 17 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 11.501561,2.5 v 12 L 4.5015612,8.398305 Z"
+ id="path2910-1-3"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_left_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.972042"
+ y1="5.5055122"
+ x2="-21.972042"
+ y2="-1.5051316"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)" />
+ <inkscape:perspective
+ id="perspective4578"
+ 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>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-17.090358"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1">
+ <path
+ id="path3725"
+ d="M 0,0 0,17 16,17 16,0 0,0 z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 12,14.5 12,2.5 5,8.6016951 12,14.5 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="opacity:0.4;fill:url(#linearGradient3750);fill-opacity:1;stroke:none"
+ d="M 2.94254,1.25 C 1.722426,1.25 0.75,2.181383 0.75,3.35 l 0,4.9 C 7.854127,6.7194065 12.392601,6.6048987 15.25,7.046 l 0,-5.796 -12.30746,0 z"
+ id="path3728" />
+ <path
+ id="path4292"
+ d="m 2.7679801,0.49976406 c -1.262227,0 -2.26821697,1.10882214 -2.26821697,2.50007374 l 0,10.9669902 c 0,1.391252 1.00598997,2.533408 2.26821697,2.533408 l 12.7322569,0 0,-16.00047193 -12.7322569,0 z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-9"
+ d="M 0.00156126,17 V 9e-8 H 16.001561 V 17 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5f8dd3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 11.514977,2.4988007 V 14.498801 L 4.5149773,8.3971057 Z"
+ id="path2910-1-6"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_left_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_left_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)" />
+ <inkscape:perspective
+ id="perspective4578"
+ 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>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-11.066093"
+ inkscape:cy="8.5"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ id="path3725"
+ d="M 0,0 V 17 H 16 V 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 12,14.5 V 2.5 L 5,8.6016951 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4292"
+ d="m 2.7679801,0.49976487 c -1.262227,0 -2.26821697,1.10882223 -2.26821697,2.50007383 V 13.966829 c 0,1.391252 1.00598997,2.533408 2.26821697,2.533408 H 15.500237 V 0.49976487 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M 0.00156106,17 V 0 H 16.001561 v 17 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 11.501561,2.5 v 12 L 4.5015612,8.398305 Z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_right_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-22.74757"
+ y1="5.5176229"
+ x2="-22.74757"
+ y2="-1.5155107"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1,0,0,1,-14.25,2.75)" />
+ <inkscape:perspective
+ id="perspective4578"
+ 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>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="23.22515"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ id="path3725"
+ d="M 16,0 V 17 H 0 V 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ d="m 5,14.5 v -12 l 7,6.1016951 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.1;fill:url(#linearGradient3750);fill-opacity:1;stroke:none"
+ d="m 13.05746,1.25 c 1.220114,0 2.19254,0.931383 2.19254,2.1 v 4.9 C 8.145873,6.7194065 3.607399,6.6048987 0.75,7.046 V 1.25 Z"
+ id="path3728"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4292"
+ d="m 13.23202,0.49976457 c 1.262227,0 2.268217,1.10882223 2.268217,2.50007383 V 13.966829 c 0,1.391252 -1.00599,2.533408 -2.268217,2.533408 H 0.49976313 V 0.49976457 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-93"
+ d="M 16.001561,-4.9999999e-8 V 17 H 0.00156116 v -17.00000005 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 4.5015612,14.5 V 2.5 L 11.501561,8.6016951 Z"
+ id="path2910-1-3"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_right_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-22.480219"
+ y1="5.5033317"
+ x2="-22.480219"
+ y2="-1.9131187"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.96551724,0,0,1,-13.732759,2.75)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient4296"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.96551724,0,0,1,-38.371541,-0.71768044)"
+ x1="-29.5"
+ y1="2"
+ x2="-15"
+ y2="2" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="16.437501"
+ inkscape:cx="16.755921"
+ inkscape:cy="8.4999995"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ id="path3725"
+ d="M 16,0 V 17 H 0 V 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 13.23202,0.4997646 c 1.262227,0 2.268217,1.1088221 2.268217,2.5000738 V 13.966829 c 0,1.391252 -1.00599,2.533408 -2.268217,2.533408 H 0.49976312 V 0.4997646 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5,14.5 v -12 l 7,6.1016951 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.4;fill:url(#linearGradient3750);fill-opacity:1;stroke:none"
+ d="M 12.633065,1.25 C 13.811106,1.25 14.75,2.181383 14.75,3.35 v 4.9 C 7.8908429,6.7194065 3.508868,6.6048987 0.75,7.046 V 1.25 Z"
+ id="path3728"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-9"
+ d="M 16.001561,0 V 17 H 0.00156116 V 0 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5f8dd3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 4.4881452,14.501199 v -12 l 6.9999998,6.101695 z"
+ id="path2910-1-6"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16.003122"
+ height="17"
+ sodipodi:docname="hscroll_right_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hscroll_right_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="23.246137"
+ inkscape:cx="-20.1768"
+ inkscape:cy="8.4999995"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true">
+ <path
+ id="path3725"
+ d="M 16,0 V 17 H 0 V 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5,14.5 v -12 l 7,6.1016951 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4292"
+ d="m 13.23202,0.49976537 c 1.262227,0 2.268217,1.10882253 2.268217,2.50007353 V 13.966829 c 0,1.391252 -1.00599,2.533408 -2.268217,2.533408 H 0.49976313 V 0.49976537 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M 16.001561,-7.5000002e-8 V 17 H 0.00156109 V -7.5000002e-8 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 4.5015612,14.5 V 2.5 L 11.501561,8.6016949 Z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="167"
+ height="20"
+ sodipodi:docname="hslider_bg_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//hslider_bg_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3592">
+ <stop
+ style="stop-color:#989898;stop-opacity:1;"
+ offset="0"
+ id="stop3594" />
+ <stop
+ id="stop3600"
+ offset="0.5"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#989898;stop-opacity:1;"
+ offset="1"
+ id="stop3596" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3592"
+ id="linearGradient3598"
+ x1="74.955605"
+ y1="8"
+ x2="74.955605"
+ y2="12.00002"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.98802395,0,0,1,1,0)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3592"
+ id="linearGradient3605"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9760479,0,0,1,2,0)"
+ x1="74.955605"
+ y1="8"
+ x2="74.955605"
+ y2="12.00002" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3592"
+ id="linearGradient3610"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9760479,0,0,1,2,0)"
+ x1="74.955605"
+ y1="8"
+ x2="74.955605"
+ y2="12.00002" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.3788695"
+ inkscape:cx="-22.008662"
+ inkscape:cy="14.439355"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none"
+ d="m 2,8 c -1.10456951,0 -2,0.8954305 -2,2 0,1.10457 0.89543049,2 2,2 h 163 c 1.10457,0 2,-0.89543 2,-2 0,-1.1045695 -0.89543,-2 -2,-2 z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="13.27565"
+ y="-14.633374"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="13.27565"
+ y="-14.633374">see: hslider_bg_up</tspan></text>
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-2-8"
+ width="167"
+ height="5"
+ x="0"
+ y="7.5" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 1.0000037,9.9999999 H 166.00001"
+ id="path1821-9-4-8-7"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="167"
+ height="20"
+ sodipodi:docname="hslider_bg_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3592">
+ <stop
+ style="stop-color:#989898;stop-opacity:1;"
+ offset="0"
+ id="stop3594" />
+ <stop
+ id="stop3600"
+ offset="0.5"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#989898;stop-opacity:1;"
+ offset="1"
+ id="stop3596" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3592"
+ id="linearGradient3610"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9760479,0,0,1,2,0)"
+ x1="74.955605"
+ y1="8"
+ x2="74.955605"
+ y2="12.00002" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.3811416"
+ inkscape:cx="88.289549"
+ inkscape:cy="13.161654"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none"
+ d="m 2,8 c -1.10456951,0 -2,0.8954305 -2,2 0,1.10457 0.89543049,2 2,2 h 163 c 1.10457,0 2,-0.89543 2,-2 0,-1.1045695 -0.89543,-2 -2,-2 z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="9.1087713"
+ y="-21.798878"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="9.1087713"
+ y="-21.798878">see: hslider_bg_up</tspan></text>
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-2-8"
+ width="167"
+ height="5"
+ x="0"
+ y="7.5" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0.99999638,9.9999995 H 166"
+ id="path1821-9-4-8-7"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="167"
+ height="20"
+ sodipodi:docname="hslider_bg_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hslider_bg_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3592">
+ <stop
+ style="stop-color:#4b4b4b;stop-opacity:1;"
+ offset="0"
+ id="stop3594" />
+ <stop
+ id="stop3600"
+ offset="0.5"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ style="stop-color:#4b4b4b;stop-opacity:1;"
+ offset="1"
+ id="stop3596" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3592"
+ id="linearGradient3610"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9760479,0,0,1,2,0)"
+ x1="74.955605"
+ y1="8"
+ x2="74.955605"
+ y2="12.00002" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.8165212"
+ inkscape:cx="189.07545"
+ inkscape:cy="-59.420542"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:url(#linearGradient3610);fill-opacity:1;stroke:none"
+ d="m 2,8 c -1.10456951,0 -2,0.8954305 -2,2 0,1.10457 0.89543049,2 2,2 h 163 c 1.10457,0 2,-0.89543 2,-2 0,-1.1045695 -0.89543,-2 -2,-2 z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:#214478;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847"
+ width="167"
+ height="5"
+ x="284.16113"
+ y="88.190056" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="3.7123106"
+ y="-18.360542"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="3.7123106"
+ y="-18.360542">hslider_bg_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="196.48137"
+ y="125.20224"
+ id="text1799"><tspan
+ sodipodi:role="line"
+ id="tspan1797"
+ x="196.48137"
+ y="125.20224">hslider_bg_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="192.76907"
+ y="160.38081"
+ id="text1803"><tspan
+ sodipodi:role="line"
+ x="192.76907"
+ y="160.38081"
+ id="tspan1805">hslider_bg_dn</tspan></text>
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-8"
+ width="167"
+ height="5"
+ x="285.04651"
+ y="119.34349" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 286.0465,121.84348 H 451.04651"
+ id="path1821-9"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-8-1"
+ width="167"
+ height="5"
+ x="285.04614"
+ y="180.53496" />
+ <rect
+ style="fill:#214478;stroke:#141414;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9"
+ width="11.041284"
+ height="19.041285"
+ x="463.92712"
+ y="81.290451"
+ ry="0" />
+ <rect
+ style="fill:#3771c8;stroke:#262626;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-7"
+ width="11.041284"
+ height="19.041285"
+ x="464.43427"
+ y="111.61573"
+ ry="0" />
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:#141414;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-7-9"
+ width="11.041284"
+ height="19.041285"
+ x="464.61105"
+ y="145.38008"
+ ry="0" />
+ <g
+ id="g2754"
+ transform="translate(261.35843,78.155404)">
+ <rect
+ y="41.480972"
+ x="207.0965"
+ height="3"
+ width="3"
+ id="rect2662-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.12282547;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687-38"
+ d="m 205.5965,46.604893 h 6"
+ style="fill:none;stroke:#000000;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687-3-7"
+ d="m 205.5965,39.357048 h 6"
+ style="fill:none;stroke:#000000;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <g
+ id="g2728"
+ transform="translate(267.08525,81.06414)">
+ <rect
+ y="8.2469521"
+ x="200.86252"
+ height="3"
+ width="3"
+ id="rect2662"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.12282547;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687"
+ d="m 199.36251,13.370874 h 6"
+ style="fill:none;stroke:#000000;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687-3"
+ d="m 199.36251,6.1230294 h 6"
+ style="fill:none;stroke:#000000;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <g
+ id="g2759"
+ transform="translate(235.54902,91.236883)"
+ style="fill:#0b1728;stroke:#0b1728">
+ <rect
+ y="62.163845"
+ x="233.08267"
+ height="3"
+ width="3"
+ id="rect2662-1-9"
+ style="opacity:1;fill:#0b1728;fill-opacity:1;fill-rule:evenodd;stroke:#0b1728;stroke-width:0.12282547;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687-38-3"
+ d="m 231.58268,67.287766 h 6"
+ style="fill:#0b1728;stroke:#0b1728;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2687-3-7-8"
+ d="m 231.58268,60.039921 h 6"
+ style="fill:#0b1728;stroke:#0b1728;stroke-width:0.87333912px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 286.04614,183.03496 H 451.04615"
+ id="path1821-9-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 285.16112,90.690059 H 450.16113"
+ id="path1821-9-4"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-8-8"
+ width="167"
+ height="5"
+ x="285.76617"
+ y="152.98814" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 286.76618,155.48814 h 165"
+ id="path1821-9-6"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="311.99982"
+ y="68.999008"
+ id="text2977"><tspan
+ sodipodi:role="line"
+ id="tspan2975"
+ x="311.99982"
+ y="68.999008">es Blitzt zu sehr:</tspan></text>
+ <rect
+ style="opacity:1;fill:#4f4947;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-2"
+ width="167"
+ height="5"
+ x="0"
+ y="7.5" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0.999997,10 H 166"
+ id="path1821-9-4-8"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-2-8"
+ width="167"
+ height="5"
+ x="-0.80720472"
+ y="32.723442" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0.19279528,35.223442 H 165.1928"
+ id="path1821-9-4-8-7"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-95.21405"
+ y="39.762199"
+ id="text1799-4"><tspan
+ sodipodi:role="line"
+ id="tspan1797-2"
+ x="-95.21405"
+ y="39.762199">hslider_bg_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-99.723022"
+ y="64.430779"
+ id="text1803-9"><tspan
+ sodipodi:role="line"
+ x="-99.723022"
+ y="64.430779"
+ id="tspan1805-6">hslider_bg_dn</tspan></text>
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38910651;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect847-2-8-1"
+ width="167"
+ height="5"
+ x="-0.65041232"
+ y="59.311039" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.99859989px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0.34958577,61.811037 H 165.34959"
+ id="path1821-9-4-8-7-0"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-91-0-4-5-0"
+ width="5.5"
+ height="20"
+ x="169.69357"
+ y="53.029861"
+ ry="0" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1-0-4-2-6-5"
+ width="6.5"
+ height="20"
+ x="175.19357"
+ y="53.029861"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4-7-8-2-6-5"
+ width="11.500538"
+ height="19.500538"
+ x="169.9433"
+ y="53.279594"
+ ry="0" />
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9-5-0-2-4-2"
+ width="1"
+ height="18"
+ x="175.19357"
+ y="54.029861"
+ ry="0" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-91-0-9"
+ width="5.5"
+ height="20"
+ x="169.69357"
+ y="26.469082"
+ ry="0" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1-0-4-0"
+ width="6.5"
+ height="20"
+ x="175.19357"
+ y="26.469082"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4-7-8-2"
+ width="11.500538"
+ height="19.500538"
+ x="169.94331"
+ y="26.718813"
+ ry="0" />
+ <rect
+ style="fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9-5-0-8"
+ width="1"
+ height="18"
+ x="175.19357"
+ y="27.469084"
+ ry="0" />
+ <rect
+ style="fill:#4f4947;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9"
+ width="5.5"
+ height="20"
+ x="170.18416"
+ y="-0.021612499"
+ ry="0" />
+ <rect
+ style="fill:#4f4947;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1"
+ width="6.5"
+ height="20"
+ x="175.68416"
+ y="-0.021612499"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4"
+ width="11.500538"
+ height="19.500538"
+ x="170.43388"
+ y="0.22811857"
+ ry="0" />
+ <rect
+ style="fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9"
+ width="1"
+ height="18"
+ x="175.68416"
+ y="0.97838748"
+ ry="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="12"
+ height="20"
+ sodipodi:docname="hslider_fg_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3598">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3601" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3603" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3596">
+ <stop
+ style="stop-color:#cccccc;stop-opacity:1;"
+ offset="0"
+ id="stop3598" />
+ <stop
+ style="stop-color:#cccccc;stop-opacity:0;"
+ offset="1"
+ id="stop3600" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3596"
+ id="linearGradient3602"
+ x1="6.7796612"
+ y1="12.203163"
+ x2="6.7796612"
+ y2="6.1297207"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3598"
+ id="linearGradient3605"
+ x1="6.0000005"
+ y1="1.2306548"
+ x2="6.0000005"
+ y2="5.9836311"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.2713258,0,-0.33390835)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="18.208014"
+ inkscape:cx="17.551771"
+ inkscape:cy="16.013085"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818"
+ width="11.016948"
+ height="19.915253"
+ x="3.825433"
+ y="-0.011873573" />
+ <rect
+ style="fill:#4d4d4d;stroke:#1a1a1a;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820"
+ width="11.041284"
+ height="19.041285"
+ x="0.47935799"
+ y="0.47935799"
+ ry="1.8557184" />
+ <path
+ style="opacity:0.2;fill:url(#linearGradient3605);fill-opacity:1;stroke:none"
+ d="m 2.784428,1.2306548 c -0.9041577,0 -1.6490113,0.7675127 -1.6490113,1.6991759 v 5.663919 C 2.6262008,6.6676034 4.957119,5.4219551 7.5665607,5.4219551 c 1.1700094,0 2.2924148,0.2597039 3.2980233,0.70799 V 2.9298307 c 0,-0.9316632 -0.744854,-1.6991759 -1.6490119,-1.6991759 z"
+ id="rect2821"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect3607"
+ width="6"
+ height="1"
+ x="3"
+ y="8"
+ ry="0.5" />
+ <rect
+ ry="0.5"
+ y="11"
+ x="3"
+ height="1"
+ width="6"
+ id="rect3609"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.034225"
+ y="-18.061756"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="-59.034225"
+ y="-18.061756">see: hslider_bg_up</tspan></text>
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-91-0-4-5"
+ width="5.5"
+ height="20"
+ x="0"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1-0-4-2-6"
+ width="6.5"
+ height="20"
+ x="5.5"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4-7-8-2-6"
+ width="11.500538"
+ height="19.500538"
+ x="0.24973106"
+ y="0.24973106"
+ ry="0" />
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9-5-0-2-4"
+ width="1"
+ height="18"
+ x="5.5"
+ y="1"
+ ry="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="12"
+ height="20"
+ sodipodi:docname="hslider_fg_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3598">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3601" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3603" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3596">
+ <stop
+ style="stop-color:#cccccc;stop-opacity:1;"
+ offset="0"
+ id="stop3598" />
+ <stop
+ style="stop-color:#cccccc;stop-opacity:0;"
+ offset="1"
+ id="stop3600" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3598"
+ id="linearGradient3605"
+ x1="6.0000005"
+ y1="1.2306548"
+ x2="6.0000005"
+ y2="5.9836311"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.2713258,0,-0.33390835)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="21"
+ inkscape:cx="3.7940922"
+ inkscape:cy="5.9665126"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818"
+ width="11.016948"
+ height="19.915253"
+ x="3.825433"
+ y="-0.011873573" />
+ <rect
+ style="fill:#4d4d4d;stroke:#1a1a1a;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820"
+ width="11.041284"
+ height="19.041285"
+ x="0.47935799"
+ y="0.47935799"
+ ry="1.8557184" />
+ <path
+ style="opacity:0.4;fill:url(#linearGradient3605);fill-opacity:1;stroke:none"
+ d="m 2.784428,1.2306548 c -0.9041577,0 -1.6490113,0.7675127 -1.6490113,1.6991759 v 5.663919 C 2.6262008,6.6676034 4.957119,5.4219551 7.5665607,5.4219551 c 1.1700094,0 2.2924148,0.2597039 3.2980233,0.70799 V 2.9298307 c 0,-0.9316632 -0.744854,-1.6991759 -1.6490119,-1.6991759 z"
+ id="rect2821"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect3607"
+ width="6"
+ height="1"
+ x="3"
+ y="8"
+ ry="0.5" />
+ <rect
+ ry="0.5"
+ y="11"
+ x="3"
+ height="1"
+ width="6"
+ id="rect3609"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-91-0"
+ width="5.5"
+ height="20"
+ x="-4.5523047e-06"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1-0-4"
+ width="6.5"
+ height="20"
+ x="5.4999952"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4-7-8"
+ width="11.500538"
+ height="19.500538"
+ x="0.24973604"
+ y="0.24973106"
+ ry="0" />
+ <rect
+ style="fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9-5-0"
+ width="1"
+ height="18"
+ x="5.5"
+ y="1"
+ ry="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="12"
+ height="20"
+ sodipodi:docname="hslider_fg_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/hslider_fg_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3598">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3601" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3603" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3596">
+ <stop
+ style="stop-color:#cccccc;stop-opacity:1;"
+ offset="0"
+ id="stop3598" />
+ <stop
+ style="stop-color:#cccccc;stop-opacity:0;"
+ offset="1"
+ id="stop3600" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3598"
+ id="linearGradient3605"
+ x1="6.0000005"
+ y1="1.2306548"
+ x2="6.0000005"
+ y2="5.9836311"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.2713258,0,-0.33390835)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.575"
+ inkscape:cx="6"
+ inkscape:cy="10"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818"
+ width="11.016948"
+ height="19.915253"
+ x="3.825433"
+ y="-0.011873573" />
+ <rect
+ style="fill:#4d4d4d;stroke:#1a1a1a;stroke-width:0.95871598;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820"
+ width="11.041284"
+ height="19.041285"
+ x="0.47935799"
+ y="0.47935799"
+ ry="1.8557184" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect3607"
+ width="6"
+ height="1"
+ x="3"
+ y="8"
+ ry="0.5" />
+ <rect
+ ry="0.5"
+ y="11"
+ x="3"
+ height="1"
+ width="6"
+ id="rect3609"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-37.127373"
+ y="-12.821883"
+ id="text1795"><tspan
+ sodipodi:role="line"
+ id="tspan1793"
+ x="-37.127373"
+ y="-12.821883">see: hslider_bg_up</tspan></text>
+ <rect
+ style="fill:#4f4947;fill-opacity:1;stroke:none;stroke-width:0.69341636;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9"
+ width="5.5"
+ height="20"
+ x="0"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:#4f4947;fill-opacity:1;stroke:none;stroke-width:0.75382304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-1"
+ width="6.5"
+ height="20"
+ x="5.5"
+ y="0"
+ ry="0" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.49946126;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-4"
+ width="11.500538"
+ height="19.500538"
+ x="0.24973106"
+ y="0.24973106"
+ ry="0" />
+ <rect
+ style="fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.28050068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2820-9-76-9-9"
+ width="1"
+ height="18"
+ x="5.5"
+ y="1"
+ ry="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="ibeam.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ibeam.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-43.932203"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 8.9375 5 C 7.857113 5 7 5.857113 7 6.9375 L 7 7.5 L 9.9375 7.5 C 10.530333 7.5 11 7.9696675 11 8.5625 L 11 15.4375 C 11 16.030333 10.530333 16.5 9.9375 16.5 L 7 16.5 L 7 17.0625 C 7 18.142887 7.857113 19 8.9375 19 L 11 19 C 11 18.447715 11.447715 18 12 18 C 12.552285 18 13 18.447715 13 19 L 15.0625 19 C 16.142887 19 17 18.142887 17 17.0625 L 17 16.5 L 14.0625 16.5 C 13.469667 16.5 13 16.030333 13 15.4375 L 13 8.5625 C 13 7.9696675 13.469667 7.5 14.0625 7.5 L 17 7.5 L 17 6.9375 C 17 5.857113 16.142887 5 15.0625 5 L 13 5 C 13 5.5522847 12.552285 6 12 6 C 11.447715 6 11 5.5522847 11 5 L 8.9375 5 z "
+ id="rect2820" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-48.111961"
+ y="-9.3948526" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="icons.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/icons.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.08"
+ inkscape:cx="-41.28486"
+ inkscape:cy="12.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <path
+ style="color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 12.289444,3.2747643 c -3.1585274,0 -5.7142921,2.5231757 -5.7142921,5.6414297 0,1.501462 0.5776835,2.858564 1.5458958,3.869965 -2.9224444,2.239952 -3.2686738,5.034474 -2.4844754,6.731562 0.8714091,1.885817 2.3533403,2.207514 4.1131865,2.207514 l 5.8523182,0 c 1.66208,0 3.316785,-0.601655 3.919951,-2.316528 0.536979,-1.526696 0.15758,-4.344313 -2.953766,-6.758815 0.891965,-0.995811 1.435475,-2.299858 1.435475,-3.733698 0,-3.118254 -2.555765,-5.6414297 -5.714293,-5.6414297 z m 0.0276,0.4087993 c 2.945853,0 5.327819,2.3515937 5.327819,5.2598835 0,2.9082889 -2.381966,5.2598829 -5.327819,5.2598829 -2.9458517,0 -5.3278183,-2.351594 -5.3278183,-5.2598829 0,-2.9082898 2.3819666,-5.2598835 5.3278183,-5.2598835 z"
+ id="path4308" />
+ <g
+ inkscape:label="Livello 1"
+ id="g7118"
+ transform="matrix(0.04645957,0,0,0.04645957,-50.304422,-0.09280604)" />
+ <g
+ transform="matrix(0.03505858,0,0,0.03551514,-50.279772,0.11238891)"
+ id="layer2"
+ inkscape:label="luci" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="in_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/in_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="73.176469"
+ inkscape:cx="8.5000002"
+ inkscape:cy="8.5000002"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer100" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer10"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#d40000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.0554324,2 C 2.4665433,2 2,2.4250728 2,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 2,15.574928 2.4665433,16 3.0554324,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242424 H 14.944568 C 15.533457,5.2242424 16,4.7991696 16,4.2626263 V 2.9616162 C 16,2.4250728 15.533457,2 14.944568,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer11"
+ inkscape:label="Layer 2"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="display:inline;fill:#ffcc00;fill-opacity:1;stroke:#2b2200;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 3.0554326,2.0000001 c -0.5888891,0 -1.0554324,0.4250728 -1.0554324,0.9616162 V 3.5838385 4.2626264 14.416162 15.038384 C 2.0000002,15.574928 2.4665435,16 3.0554326,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388029 V 5.2242425 H 14.944568 C 15.533457,5.2242425 16,4.7991697 16,4.2626264 V 2.9616163 C 16,2.4250729 15.533457,2.0000001 14.944568,2.0000001 Z"
+ id="rect2818-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer100"
+ inkscape:label="Layer 3"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 5,0.9999996 V 3.8333336 15.166667 18 h 3 5 V 15.166667 H 8 V 3.8333336 h 5 V 0.9999996 H 8 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="in_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/in_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.166221"
+ inkscape:cx="-14.337035"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer99" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer12"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.0554324,2 C 2.4665433,2 2,2.4250728 2,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 2,15.574928 2.4665433,16 3.0554324,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242424 H 14.944568 C 15.533457,5.2242424 16,4.7991696 16,4.2626263 V 2.9616162 C 16,2.4250728 15.533457,2 14.944568,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer13"
+ inkscape:label="Layer 2"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="display:inline;fill:#fff200;fill-opacity:1;stroke:#0b1728;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 3.0554325,2.0000002 c -0.5888893,0 -1.0554323,0.425072 -1.0554323,0.961616 v 0.622222 0.678788 10.1535358 0.622222 C 2.0000002,15.574928 2.4665432,16 3.0554325,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242422 H 14.944568 C 15.533457,5.2242422 16,4.7991692 16,4.2626262 v -1.30101 c 0,-0.536544 -0.466543,-0.961616 -1.055432,-0.961616 z"
+ id="rect2818-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer99"
+ inkscape:label="Layer 3"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#fff200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 5,1.0000003 V 3.8333343 15.166667 18 h 3 5 V 15.166667 H 8 V 3.8333343 h 5 V 1.0000003 H 8 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="in_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/in_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="21.448276"
+ inkscape:cx="-8.7403536"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer98" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer14"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#005500;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.0554324,2 C 2.4665433,2 2,2.4250728 2,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 2,15.574928 2.4665433,16 3.0554324,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242424 H 14.944568 C 15.533457,5.2242424 16,4.7991696 16,4.2626263 V 2.9616162 C 16,2.4250728 15.533457,2 14.944568,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer15"
+ inkscape:label="Layer 2"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#2c5aa0;fill-opacity:1;stroke:#2b2200;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.055432,2.0000001 C 2.466543,2.0000001 2,2.4250729 2,2.9616163 V 3.5838385 4.2626264 14.416162 15.038384 C 2,15.574928 2.466543,16 3.055432,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.538803 V 5.2242425 h 9.405765 C 15.533457,5.2242425 16,4.7991697 16,4.2626264 V 2.9616163 C 16,2.4250729 15.533457,2.0000001 14.944568,2.0000001 Z"
+ id="rect2818-5" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer98"
+ inkscape:label="Layer 3"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#2c5aa0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 5,1.0000004 V 3.8333337 15.166667 18 h 3 5 V 15.166667 H 8 V 3.8333337 h 5 V 1.0000004 H 8 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="in_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/in_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="28.275862"
+ inkscape:cx="-4.4567074"
+ inkscape:cy="8.9999999"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer97" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer16"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#00d400;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.0554324,2 C 2.4665433,2 2,2.4250728 2,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 2,15.574928 2.4665433,16 3.0554324,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242424 H 14.944568 C 15.533457,5.2242424 16,4.7991696 16,4.2626263 V 2.9616162 C 16,2.4250728 15.533457,2 14.944568,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer17"
+ inkscape:label="Layer 2"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#d7e3f4;fill-opacity:1;stroke:#2b2200;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 3.0554322,2.0000001 c -0.5888891,0 -1.0554324,0.4250728 -1.0554324,0.9616162 V 3.5838385 4.2626264 14.416162 15.038384 C 1.9999998,15.574928 2.4665431,16 3.0554322,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388025 V 5.2242425 H 14.944568 C 15.533457,5.2242425 16,4.7991697 16,4.2626264 V 2.9616163 C 16,2.4250729 15.533457,2.0000001 14.944568,2.0000001 Z"
+ id="rect2818-9"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/rect2818-9.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer97"
+ inkscape:label="Layer 3"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#d7e3f4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 4.9999998,0.9999995 V 3.8333328 15.166667 18 h 3 H 13 V 15.166667 H 7.9999998 V 3.8333328 H 13 V 0.9999995 H 7.9999998 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="in_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//in_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#02d3ff"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.2048611"
+ inkscape:cx="-54.749781"
+ inkscape:cy="-26.078447"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer96"
+ inkscape:measure-start="1.7473,12.9894"
+ inkscape:measure-end="5.50566,12.8905"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false">
+ <sodipodi:guide
+ position="8.950549,9.0000004"
+ orientation="0,1"
+ id="guide884"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="12.5,1"
+ orientation="0,1"
+ id="guide890"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="22.109375,1.453125"
+ orientation="1,0"
+ id="guide892"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="0,18"
+ orientation="-0.70710678,-0.70710678"
+ id="guide894"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="20.898431,0.029727498"
+ orientation="0,18"
+ id="guide919"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="18,0"
+ orientation="-18,0"
+ id="guide921"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="18,18"
+ orientation="0,-18"
+ id="guide923"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="0,18"
+ orientation="18,0"
+ id="guide925"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer42"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#008000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 3.0554324,2 C 2.4665433,2 2,2.4250728 2,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 2,15.574928 2.4665433,16 3.0554324,16 H 14.944568 C 15.533457,16 16,15.574928 16,15.038384 v -1.30101 C 16,13.20083 15.533457,12.747475 14.944568,12.747475 H 5.5388027 V 5.2242424 H 14.944568 C 15.533457,5.2242424 16,4.7991696 16,4.2626263 V 2.9616162 C 16,2.4250728 15.533457,2 14.944568,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer43"
+ inkscape:label="Layer 2"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="display:inline;fill:#5f8dd3;fill-opacity:1;stroke:#2b2200;stroke-width:0.55749977;stroke-miterlimit:4;stroke-dasharray:none"
+ d="m 3.0681688,0.27874981 c -0.5876274,0 -1.0531712,0.52959531 -1.0531712,1.19807079 v 0.7752222 0.8456971 12.6502181 0.775223 c 0,0.668475 0.4655438,1.198069 1.0531712,1.198069 H 14.931832 c 0.587627,0 1.05317,-0.529594 1.05317,-1.198069 V 14.90226 c 0,-0.668475 -0.465543,-1.233306 -1.05317,-1.233306 L 5.1176344,13.73489 V 4.3617466 l 9.8141976,-0.065936 c 0.587614,-0.00395 1.05317,-0.5295952 1.05317,-1.1980707 V 1.4768206 c 0,-0.66847548 -0.465543,-1.19807079 -1.05317,-1.19807079 z"
+ id="rect2818-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sscccssssssccsssss" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer96"
+ inkscape:label="Schlicht & schmal"
+ style="display:inline"
+ transform="translate(0,-1)">
+ <rect
+ style="opacity:1;fill:#afc6e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10515486;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect929"
+ width="8"
+ height="16.989265"
+ x="20.898432"
+ y="0.9810068" />
+ <path
+ style="opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68141514;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 5,1.0107349 V 3.8422791 15.168456 18 h 3 5 V 15.168456 H 8 V 3.8422791 h 5 V 1.0107349 H 8 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="32.37812"
+ y="-34.436356"
+ id="text933"><tspan
+ sodipodi:role="line"
+ x="32.37812"
+ y="-34.436356"
+ id="tspan935">Compsitor 16 px</tspan><tspan
+ sodipodi:role="line"
+ x="32.37812"
+ y="-9.4363546"
+ id="tspan939">Main 17 px</tspan></text>
+ <g
+ style="display:inline"
+ id="g1808"
+ transform="translate(20.644362,83.217765)">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path2818"
+ d="m -46.494229,-48.502703 7.494228,14.988457 7.49423,-14.988457 z"
+ style="fill:#005500;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#00aa00;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -46.494229,5.8701854 7.494228,14.9884586 7.49423,-14.9884586 z"
+ id="path2818-4"
+ sodipodi:nodetypes="cccc" />
+ <text
+ id="text882"
+ y="18.56654"
+ x="-98.453125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="18.56654"
+ x="-98.453125"
+ id="tspan880"
+ sodipodi:role="line">uphi</tspan></text>
+ <text
+ id="text886"
+ y="-34.796608"
+ x="-98.296875"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="-34.796608"
+ x="-98.296875"
+ id="tspan884"
+ sodipodi:role="line">down</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -46.494229,-21.316259 7.494228,14.9884592 7.49423,-14.9884592 z"
+ id="path2818-5"
+ sodipodi:nodetypes="cccc" />
+ <text
+ id="text1577"
+ y="-10.178837"
+ x="-98.453125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="-10.178837"
+ x="-98.453125"
+ id="tspan1575"
+ sodipodi:role="line">up</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#d40000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -46.494229,33.05663 7.494228,14.988459 7.49423,-14.988459 z"
+ id="path2818-49"
+ sodipodi:nodetypes="cccc" />
+ <text
+ id="text1685"
+ y="47.064522"
+ x="-98.244789"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="47.064522"
+ x="-98.244789"
+ id="tspan1683"
+ sodipodi:role="line">checked</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff0000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -46.494229,60.243075 7.494228,14.988459 7.49423,-14.988459 z"
+ id="path2818-1"
+ sodipodi:nodetypes="cccc" />
+ <text
+ id="text1685-3"
+ y="74.351562"
+ x="-98.244789"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="74.351562"
+ x="-98.244789"
+ id="tspan1683-9"
+ sodipodi:role="line">checkedhi</tspan></text>
+ </g>
+ <path
+ style="display:inline;opacity:1;fill:#2c5aa0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 4.7751625,34.742604 v 2.833333 11.333332 2.83333 h 3 4.9999995 v -2.83333 H 7.7751625 V 37.575937 H 12.775162 V 34.742604 H 7.7751625 Z"
+ id="rect175300-5"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 4.7751625,62.115115 v 2.833333 11.333334 2.833333 h 3 4.9999995 V 76.281782 H 7.7751625 V 64.948448 H 12.775162 V 62.115115 H 7.7751625 Z"
+ id="rect175300-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 4.7751625,116.86015 v 2.83334 11.33333 2.83334 h 3 4.9999995 v -2.83334 H 7.7751625 v -11.33333 h 4.9999995 v -2.83334 H 7.7751625 Z"
+ id="rect175300-0-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;opacity:1;fill:#fff200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 4.7751625,144.23268 v 2.83333 11.33333 2.83334 h 3 4.9999995 v -2.83334 H 7.7751625 v -11.33333 h 4.9999995 v -2.83333 H 7.7751625 Z"
+ id="rect175300-06"
+ inkscape:connector-curvature="0" />
+ <path
+ style="display:inline;opacity:1;fill:#d7e3f4;fill-opacity:0.94117647;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 4.7751625,89.487637 v 2.83333 11.333333 2.83334 h 3 4.9999995 V 103.6543 H 7.7751625 V 92.320967 h 4.9999995 v -2.83333 H 7.7751625 Z"
+ id="rect175300-3"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;fill:#217821;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 36.845379,62.607522 v 1.416667 l -2.74218,2.589844 -0.70703,0.667751 3.44921,3.25944 0.499995,9.066298 h 2 l 0.5,-9.066298 3.44922,-3.25944 -0.70703,-0.667751 -2.74219,-2.589844 v -1.416667 h -1.5 z"
+ id="rect1810-77"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <path
+ style="opacity:1;fill:#00d455;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 36.845379,35.428712 v 1.416667 l -2.74218,2.589844 -0.70703,0.667751 3.44921,3.25944 0.499995,9.066298 h 2 l 0.5,-9.066298 3.44922,-3.25944 -0.70703,-0.667751 -2.74219,-2.589844 v -1.416667 h -1.5 z"
+ id="rect1810-77-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <path
+ style="opacity:1;fill:#2aff80;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 36.845379,89.786331 v 1.41666 l -2.74218,2.58985 -0.70703,0.66775 3.44921,3.25944 0.499995,9.066299 h 2 l 0.5,-9.066299 3.44922,-3.25944 -0.70703,-0.66775 -2.74219,-2.58985 v -1.41666 h -1.5 z"
+ id="rect1810-77-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ inkscape:transform-center-x="-3.0993377"
+ inkscape:transform-center-y="-53.165563" />
+ <path
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 36.845379,116.96514 v 1.41666 l -2.74218,2.58985 -0.70703,0.66775 3.44921,3.25944 0.499995,9.0663 h 2 l 0.5,-9.0663 3.44922,-3.25944 -0.70703,-0.66775 -2.74219,-2.58985 v -1.41666 h -1.5 z"
+ id="rect1810-77-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ inkscape:transform-center-x="-2.8609271"
+ inkscape:transform-center-y="-27.655629" />
+ <path
+ style="opacity:1;fill:#fff200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 36.845379,144.14395 v 1.41667 l -2.74218,2.58984 -0.70703,0.66775 3.44921,3.25944 0.499995,9.0663 h 2 l 0.5,-9.0663 3.44922,-3.25944 -0.70703,-0.66775 -2.74219,-2.58984 v -1.41667 h -1.5 z"
+ id="rect1810-77-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-39.39336"
+ y="10.827504"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-39.39336"
+ y="10.827504">in_up</tspan></text>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Diamant"
+ style="display:none"
+ transform="translate(0,-1)"
+ sodipodi:insensitive="true">
+ <rect
+ style="opacity:1;fill:#afc6e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13463368;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect927"
+ width="9"
+ height="12"
+ x="8"
+ y="3.5" />
+ <path
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.12531817px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m -14.210495,-19.120021 v 16 h 12.9797678 l -3.967711,-8 3.967711,-8 z"
+ id="path886"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03454329;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867"
+ width="12.979769"
+ height="0.1"
+ x="4.5000005"
+ y="-3.8455822" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35369122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect833-9"
+ width="9.8615417"
+ height="9.8615417"
+ x="9.4554777"
+ y="-8.2952957"
+ transform="matrix(0.50702014,0.86193421,-0.50702014,0.86193421,0,0)" />
+ <rect
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03454329;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-3"
+ width="12.979769"
+ height="0.1"
+ x="4.0838151"
+ y="22.102312" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.11068537;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect833-9-9"
+ width="9.9517307"
+ height="9.9517307"
+ x="-8.839592"
+ y="7.5542397"
+ transform="matrix(0.44721359,0.89442719,-0.44721359,0.89442719,0,0)" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="inpoint.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/inpoint.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="36.588235"
+ inkscape:cx="2.2017684"
+ inkscape:cy="10.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer102" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer101"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 7,5 V 7.6723647 8.7492877 17.005698 19 H 17 V 15.250712 H 11.017094 V 8.7492877 H 17 V 5 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer102"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <path
+ style="display:inline;opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 8,3.5 V 6.333334 17.666667 20.5 h 3 5 V 17.666667 H 11 V 6.333334 h 5 V 3.5 h -5 z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="14"
+ sodipodi:docname="keyframe3.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/keyframe3.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient7582">
+ <stop
+ offset="0"
+ style="stop-color:white;stop-opacity:1"
+ id="stop7584" />
+ <stop
+ offset="1"
+ style="stop-color:white;stop-opacity:0"
+ id="stop7586" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7582"
+ id="radialGradient27654"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1.1034483,-1.1034484,0,-39.107357,-5.8455151)"
+ cx="11.15625"
+ cy="2.0625"
+ fx="11.15625"
+ fy="2.0625"
+ r="0.90625" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.1463383"
+ inkscape:cx="-30.47307"
+ inkscape:cy="6.9526469"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <path
+ d="m -41.383219,7.46483 a 1,1 0 1 1 0,-2 1,1 0 0 1 0,2 z"
+ id="use6173"
+ style="fill:url(#radialGradient27654);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="fill:#ffff00;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 17.726168,1.8906292 C 15.55131,1.8959392 13.644604,3.145976 12.771739,4.9966719 H 11.609354 L 10.446968,6.1590572 9.284583,4.9966719 H 8.5223632 L 7.7601434,6.5401669 H 6.9788682 L 6.1975929,4.9966719 5.4353732,5.0157269 4.272988,6.1590567 3.1106027,5.0157269 H 2.3483829 l -1.54349507,1.924605 v 1.9436609 l 1.16238517,0.76222 10.804466,-0.019052 c 0.888417,1.8286942 2.868691,3.0732042 5.030651,3.0679342 3.013351,-0.0074 5.400078,-2.311261 5.392705,-5.3355386 -0.0074,-3.0242791 -2.455576,-5.4762732 -5.468927,-5.4689272 z m 2.362882,3.8492071 c 0.851977,-0.00207 1.560473,0.6915166 1.56255,1.5434951 0.0021,0.8519784 -0.691517,1.5414178 -1.543495,1.5434954 -0.851978,0.00211 -1.541418,-0.691517 -1.543495,-1.5434954 -0.0021,-0.8519785 0.67246,-1.5414182 1.52444,-1.5434951 z"
+ id="path6767"
+ sodipodi:nodetypes="cccccccccccccccccssccsssc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 17.726168,1.5977669 c -2.174858,0.00531 -4.081564,1.2553468 -4.954429,3.1060426 H 11.609354 L 10.446968,5.8661948 9.2845832,4.7038095 h -0.76222 L 7.7601437,6.2473045 H 6.9788685 L 6.1975932,4.7038095 5.4353735,4.7228645 4.2729883,5.8661943 3.110603,4.7228645 H 2.3483832 l -1.54349514,1.924605 v 1.9436609 l 1.16238524,0.76222 10.8044657,-0.019052 c 0.888417,1.8286936 2.868691,3.0732046 5.030651,3.0679346 3.013351,-0.0074 5.400078,-2.311261 5.392705,-5.335539 -0.0074,-3.0242791 -2.455576,-5.4762731 -5.468927,-5.4689271 z m 2.362882,3.849207 c 0.851977,-0.00207 1.560473,0.6915166 1.56255,1.5434951 0.0021,0.8519784 -0.691517,1.5414178 -1.543495,1.5434954 -0.851978,0.00211 -1.541418,-0.691517 -1.543495,-1.5434954 -0.0021,-0.8519785 0.67246,-1.5414182 1.52444,-1.5434951 z"
+ id="path6767-3"
+ sodipodi:nodetypes="cccccccccccccccccssccsssc" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="label.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/label.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="52.583333"
+ inkscape:cx="5.1822504"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3607"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.157771,0.42871625)">
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect2825"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <g
+ id="g3607-3"
+ transform="matrix(1.0315542,0,0,1.0064209,-0.16300174,0.42348953)">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccz"
+ id="rect2818-0"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2825-8"
+ d="m 5.96875,10 v 1 3 H 5 L 7.0625,15.96875 9,14 H 8 v -3 h 2.25 V 10 H 8 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="label_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/label_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="23.727361"
+ inkscape:cx="-7.0363388"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#d40000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 1.5057712,1.5057707 8.9999992,16.494229 16.494229,1.5057707 Z"
+ id="path2818"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 7.5,1 V 2.416667 L 4.757812,5.006511 4.050781,5.674262 7.5,8.933702 8,18 h 2 L 10.5,8.933702 13.949219,5.674262 13.242188,5.006511 10.5,2.416667 V 1 H 9 Z"
+ id="rect1810-77-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ inkscape:transform-center-x="-2.8609271"
+ inkscape:transform-center-y="-27.655629" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-31.599504"
+ y="-8.0807724"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-31.599504"
+ y="-8.0807724">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="label_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/label_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="23.727361"
+ inkscape:cx="-7.0363388"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="fill:#ff0000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 1.5057712,1.5057707 8.9999992,16.494229 16.494229,1.5057707 Z"
+ id="path2818"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="opacity:1;fill:#fff200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 7.5000002,1 V 2.416667 L 4.7578118,5.006511 4.0507808,5.674262 7.5000002,8.933702 8.0000002,18 H 10 L 10.5,8.933702 13.949219,5.674262 13.242188,5.006511 10.5,2.416667 V 1 H 9.0000002 Z"
+ id="rect1810-77-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-30.040125"
+ y="-9.0079718"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-30.040125"
+ y="-9.0079718">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="labeltoggle_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. Breeze dark</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.1944445"
+ inkscape:cx="-147.0671"
+ inkscape:cy="8.4039735"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot940"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ transform="translate(0,-1)"><flowRegion
+ id="flowRegion942"><rect
+ id="rect944"
+ width="21.508474"
+ height="17.542374"
+ x="-58.118645"
+ y="-2.4406779" /></flowRegion><flowPara
+ id="flowPara946" /></flowRoot> <flowRoot
+ xml:space="preserve"
+ id="flowRoot1767"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ transform="translate(0,-1)"><flowRegion
+ id="flowRegion1769"><rect
+ id="rect1771"
+ width="5.25"
+ height="91"
+ x="-47.25"
+ y="-24.25" /></flowRegion><flowPara
+ id="flowPara1773" /></flowRoot> <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="all"
+ style="display:inline"
+ transform="translate(0,-1)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="dn"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#217821;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 7.5,1 V 2.4166667 L 4.7578125,5.0065104 4.0507812,5.6742622 7.5,8.9337022 8,18 h 2 L 10.5,8.9337022 13.949219,5.6742622 13.242188,5.0065104 10.5,2.4166667 V 1 H 9 Z"
+ id="rect1810"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-13.665594"
+ y="-9.6591644"
+ id="text2216"><tspan
+ sodipodi:role="line"
+ id="tspan2214"
+ x="-13.665594"
+ y="-9.6591644">17 pt</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-17.403963"
+ y="-40.649006"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-17.403963"
+ y="-40.649006">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="labeltoggle_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.638889"
+ inkscape:cx="-50.248948"
+ inkscape:cy="8.6316679"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#008000;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 1.5057712,1.5057707 8.9999992,16.494229 16.494229,1.5057707 Z"
+ id="path2818"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#217821;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 7.5,1.0000013 v 1.416667 L 4.757812,5.0065123 4.050781,5.6742633 7.5,8.933703 8,18 h 2 L 10.5,8.933703 13.949219,5.6742633 13.242188,5.0065123 10.5,2.4166683 V 1.0000013 H 9 Z"
+ id="rect1810-77"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-57.773556"
+ y="-18.778788"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-57.773556"
+ y="-18.778788">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="labeltoggle_uphi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/labeltoggle_uphi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="34.555556"
+ inkscape:cx="-2.0112539"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="fill:#00aa00;stroke:#000000;stroke-width:1.01154232;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 1.5057712,1.5057707 8.9999992,16.494229 16.494229,1.5057707 Z"
+ id="path2818"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="opacity:1;fill:#2aff80;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11405712;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 7.5000002,0.99999985 V 2.4166669 l -2.7421879,2.5898439 -0.707031,0.6677511 3.449219,3.25944 0.5,9.0662981 H 10.000001 L 10.5,8.9337019 13.949219,5.6742619 13.242188,5.0065108 10.5,2.4166669 V 0.99999985 H 9.0000002 Z"
+ id="rect1810-77-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ inkscape:transform-center-x="-3.0993377"
+ inkscape:transform-center-y="-53.165563" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-28.111177"
+ y="-2.8913281"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-28.111177"
+ y="-2.8913281">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="left_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/left_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="31.300082"
+ inkscape:cx="0.60486688"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11"
+ height="4.25"
+ x="6.5"
+ y="-10.75"
+ ry="0"
+ transform="matrix(0,1,-1,0,0,0)" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-39.610798"
+ y="-7.672502" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="listbox_button.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/listbox_button.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-44.033898"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 10.443325,4 0,9.832061 L 6,13.832061 12.015113,20 18,13.832061 l -4.413098,0 0,-9.832061 -3.143577,0 z"
+ id="rect2818" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-51.976372"
+ y="-7.5643439" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="8"
+ sodipodi:docname="listbox_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/listbox_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="29.5"
+ inkscape:cx="-5.9780106"
+ inkscape:cy="4"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 0,0 7.5254234,8 15.050847,0 0,0 z"
+ id="path2818"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-38.552643"
+ y="-16.038919" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="8"
+ sodipodi:docname="listbox_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/listbox_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="29.5"
+ inkscape:cx="-5.9780106"
+ inkscape:cy="4"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 0,8 7.5254234,0 15.050847,8 0,8 z"
+ id="path2818"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-38.044167"
+ y="-15.021971" />
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729165 6.3500002"
+ version="1.1"
+ id="svg2455"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_all.svg">
+ <defs
+ id="defs2449">
+ <linearGradient
+ x2="54"
+ gradientUnits="userSpaceOnUse"
+ y2="31"
+ x1="40"
+ y1="17"
+ id="b-8"
+ gradientTransform="matrix(0.12627774,0,0,0.13229131,-296.76592,72.365147)">
+ <stop
+ style="stop-color:#efede3;stop-opacity:1"
+ id="stop1422"
+ stop-color="#060606" />
+ <stop
+ id="stop1424"
+ stop-opacity="0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26137421,0,0,0.22216782,-304.55213,22.450593)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-32"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.28415062,0,0,0.35676477,290.88574,-19.721197)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="translate(0.39318672,8.8240765)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004-9"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="translate(-2.4917285,28.778559)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004-2"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2613742,0,0,0.22216781,-306.55171,34.025194)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2-1"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-4.4913298,40.353164)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004-2-1"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="a"
+ y1="392.35999"
+ y2="336.35999"
+ gradientUnits="userSpaceOnUse"
+ x2="0"
+ gradientTransform="matrix(0.26458333,0,0,0.26458333,-307.12932,-26.172333)">
+ <stop
+ stop-color="#ffffff"
+ stop-opacity="0"
+ id="stop2" />
+ <stop
+ offset="1"
+ stop-color="#ffffff"
+ stop-opacity=".2"
+ id="stop4" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient857"
+ y1="392.35999"
+ y2="336.35999"
+ gradientUnits="userSpaceOnUse"
+ x2="0"
+ gradientTransform="translate(-47.987,-332.35)">
+ <stop
+ stop-color="#ffffff"
+ stop-opacity="0"
+ id="stop853" />
+ <stop
+ offset="1"
+ stop-color="#ffffff"
+ stop-opacity=".2"
+ id="stop855" />
+ </linearGradient>
+ <linearGradient
+ id="b"
+ y1="17"
+ x1="40"
+ y2="31"
+ gradientUnits="userSpaceOnUse"
+ x2="54"
+ gradientTransform="translate(0.013,0.016)">
+ <stop
+ stop-color="#060606"
+ id="stop7" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop9" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.12627774,0,0,0.13229131,-296.76592,72.365147)"
+ id="b-8-8"
+ y1="17"
+ x1="40"
+ y2="31"
+ gradientUnits="userSpaceOnUse"
+ x2="54">
+ <stop
+ stop-color="#060606"
+ id="stop7-7"
+ style="stop-color:#efede3;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop9-2" />
+ </linearGradient>
+ <linearGradient
+ id="a-8"
+ y1="392.35999"
+ y2="336.35999"
+ gradientUnits="userSpaceOnUse"
+ x2="0"
+ gradientTransform="matrix(0.26458333,0,0,0.26458333,-261.15145,-27.487775)">
+ <stop
+ stop-color="#ffffff"
+ stop-opacity="0"
+ id="stop2-2" />
+ <stop
+ offset="1"
+ stop-color="#ffffff"
+ stop-opacity=".2"
+ id="stop4-9" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient870"
+ y1="392.35999"
+ y2="336.35999"
+ gradientUnits="userSpaceOnUse"
+ x2="0"
+ gradientTransform="translate(-48,-332.36)">
+ <stop
+ stop-color="#ffffff"
+ stop-opacity="0"
+ id="stop866" />
+ <stop
+ offset="1"
+ stop-color="#ffffff"
+ stop-opacity=".2"
+ id="stop868" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#b-8-8"
+ id="linearGradient1362"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.12627774,0,0,0.13229131,-296.76592,72.365147)"
+ x1="40"
+ y1="17"
+ x2="54"
+ y2="31" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#b-8-8"
+ id="linearGradient1420"
+ x1="-312.59842"
+ y1="101.84714"
+ x2="-311.95001"
+ y2="102.50095"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8721091"
+ inkscape:cx="-1230.7353"
+ inkscape:cy="1060.0894"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="-295.50316,224.23797"
+ orientation="1,0"
+ id="guide1317"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-291.3906,244.24426"
+ orientation="0,1"
+ id="guide1364"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-291.20351,187.3693"
+ orientation="0,1"
+ id="guide1366"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata2452">
+ <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:date>2018-08-15</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-15: new. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.64998)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9946"
+ y="-2.7640972"
+ id="text2399"><tspan
+ sodipodi:role="line"
+ id="tspan2397"
+ x="-359.9946"
+ y="-2.7640972"
+ style="stroke-width:0.26458332">loadmode_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9946"
+ y="7.4757824"
+ id="text2403"><tspan
+ sodipodi:role="line"
+ id="tspan2401"
+ x="-359.9946"
+ y="7.4757824"
+ style="stroke-width:0.26458332">loadmode_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9946"
+ y="27.721268"
+ id="text2407"><tspan
+ sodipodi:role="line"
+ id="tspan2405"
+ x="-359.9946"
+ y="27.721268"
+ style="stroke-width:0.26458332">loadmode_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9946"
+ y="17.598545"
+ id="text2411"><tspan
+ sodipodi:role="line"
+ id="tspan2409"
+ x="-359.9946"
+ y="17.598545"
+ style="stroke-width:0.26458332">loadmode_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9946"
+ y="37.844002"
+ id="text2415"><tspan
+ sodipodi:role="line"
+ id="tspan2413"
+ x="-359.9946"
+ y="37.844002"
+ style="stroke-width:0.26458332">loadmode_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-362.92947"
+ y="122.52988"
+ id="text2419"><tspan
+ sodipodi:role="line"
+ id="tspan2417"
+ x="-362.92947"
+ y="122.52988"
+ style="stroke-width:0.26458332">loadmode_nested</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.53088"
+ y="66.824753"
+ id="text2423"><tspan
+ sodipodi:role="line"
+ id="tspan2421"
+ x="-359.53088"
+ y="66.824753"
+ style="stroke-width:0.26458332">loadmode_resource</tspan></text>
+ <image
+ y="-7.5489259"
+ x="-326.61792"
+ id="image3087"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFygMVWJRtAAAACpJREFUSMftzUEBACAIBDAw3fUv JC3k4VZgneTWY6cWSKVSqVQqlUp/Tgc8DwIHbonv2wAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <image
+ y="62.117481"
+ x="-326.61792"
+ id="image3098"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFzANoH75ewAAAFdJREFUSMdjYBgFo2CoAkZ0gf37 9/+n1FBHR0dGkiyll8UMuCwm13JK9A4tiwelhQQTEikJAqaP5EREbtBQFKTD1mJGYuKI2gUEI7GJ g64l0ygYBYMWAACYT3KWNp1KPAAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.53088"
+ y="78.214417"
+ id="text3103"><tspan
+ sodipodi:role="line"
+ id="tspan3101"
+ x="-359.53088"
+ y="78.214417"
+ style="stroke-width:0.26458332">loadmode_paste</tspan></text>
+ <image
+ y="73.624275"
+ x="-326.61792"
+ id="image3113"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFywPqAfFCgAAAKFJREFUSMftlFEOxCAIRJ3Gi3Fy vNn0yy0xjYq4yWYjX5riPIciKZ34t4D3gKrS7kUE26EtxIJ635ahqkrgSSGZRAQVVtdvOT3da7Yk VkxEYNckXeXN3TIYBwBSKWWobs8sQUl+REZuZvOG0J6DVtxT4hx5b23DvHVzqJE8FxnBw1BVpYXM uM07nM0Mja3QlbGYo//nK7PXM5Ojlzlx4vfjBjQFXK83yKu2AAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.53088"
+ y="89.838348"
+ id="text3118"><tspan
+ sodipodi:role="line"
+ id="tspan3116"
+ x="-359.53088"
+ y="89.838348"
+ style="stroke-width:0.26458332">loadmode_none</tspan></text>
+ <image
+ y="85.13105"
+ x="-326.61792"
+ id="image3128"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gceAA0kg/gzsgAAALxJREFUSMftlEEOAyEIRT/Gg8nJ h5vRjU6sUwVp08VkWBFFH3wU4LG7GXkDj+Norn66h5khIiilAMCbH4JW4AljZur2znUiIlXV5oeh /aU9bJVUq3xmyQmknVYAUBGZbmbr9Ky6EdJL2quzBbUOjnFjcrW3tC2vJekgv1udFP1rswo9lv4N DEG/BXqgGgFajzB5v8puhau4/IuJtPvVLJku483TCiu57OkpM1OtQFcD3ys9RV9vYFQ+dmN7Ackz bmDmTTa2AAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-362.92947"
+ y="131.81596"
+ id="text3133"><tspan
+ sodipodi:role="line"
+ id="tspan3131"
+ x="-362.92947"
+ y="131.81596"
+ style="stroke-width:0.26458332">loadmode_newtracks</tspan></text>
+ <image
+ y="127.56602"
+ x="-326.61792"
+ id="image3143"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFykyjRh9XgAAAE1JREFUSMftkskNACEMAwOiMFy5 tzMoIRCxQoDnndMaMyEWkLwCki0yGEAKXxVZ6vXkHfGWv76VSMPxVmBq4UfamSJ5l0skifSOSOI+ OgCGIE6IfSRxAAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-362.92947"
+ y="141.10204"
+ id="text3148"><tspan
+ sodipodi:role="line"
+ id="tspan3146"
+ x="-362.92947"
+ y="141.10204"
+ style="stroke-width:0.26458332">loadmode_newcat</tspan></text>
+ <image
+ y="136.65063"
+ x="-326.61792"
+ id="image3158"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFyoMZ1QzNgAAAEJJREFUSMdjYBgFo2AUjAIsgBGf 5P79+/+Ta7CjoyMjWRr379///z8DAwomRoyQY5kGInhHjqWDLyGNglEwCkYuAACsLSrjuWtCEQAA AABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.53088"
+ y="101.34515"
+ id="text3163"><tspan
+ sodipodi:role="line"
+ id="tspan3161"
+ x="-359.53088"
+ y="101.34515"
+ style="stroke-width:0.26458332">loadmode_new</tspan></text>
+ <image
+ y="96.637863"
+ x="-326.61792"
+ id="image3173"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFzkpTb+m4wAAAHZJREFUSMftlEEKwCAMBHelDzMv Nz+zJ0EETQR7aJs5CSqzG0Qg+Br0Hiyl1NW+iFBVa86ZANCvR64doYjQCmSFA4DkEc5kI32zWUtT 2lJ70reRkgRJqOr0jjleb8ux4UqaTr7KI+N9ipCG9L1S83Pw/kZB8A9uwcoymtWj9QAAAAAASUVO RK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <image
+ y="117.77584"
+ x="-326.61792"
+ id="image3184"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH2QEIAhIsSJkuRgAAAKxJREFUSMftVdEOgzAIhMX/snz5 4ZexpzUVWy1uarL0kiYGaQ+uJxINXAgmIlJVu4swpcSvJzqdfBU+AcBmk4gcvvMo1dztFAAxc16f QwEQgExQ5tQK8eiW18wyiYisns3svLw1KbLjmElVj53p8mpXNrU2zyltYotqOP6VvL/EIP0/0qZ7 W86LxrtJy29rb8K0Rl45rUKd9hzcM/JOkUaLCZPe9V99xL0Dl+INW3dKD7Qgg4gAAAAASUVORK5C YII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="6.3499994"
+ width="7.6729169" />
+ <image
+ y="3.151139"
+ x="-326.61792"
+ id="image3195"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFzc1xz3XIgAAAdFJREFUSMfFllluBCEMRA2YOdvc /zo0Jh9RMUW1J4sUKUiIXsAPr1Cez+cyMyulWCnF8Fxr3d9qrbd3bhFhay1ba1lE3N7XWmZm+5sr EMIByjrmojFMO//HOufFCmytWWttP2PkTWL3c06LiGNkS9Ra9yYcAtSUALr7MX4FnXPadV0HkME3 TRkK4b13c3dzd+u9H1D4FT4DtNZq13WlLiilfPr0nZYAYcQzzMxQmBMwdA0ggF21VPP23u3xeGww +xlQ1pLN3lrb/uRgOqBsXtZQwSo8ImyMcfOzRjIYjh1/FUgMh7aqqabPnPNwBQefazFgIHeGqk+5 WADGfc65ZUfEC8p5mmmdjbwWwjPtIAtw19DOfPyuSrFJdQ7L0FbtH5ojlzSRswLOUciVJpvDMm5Q QPS0YAFcT2FWXqNzMjAXf+cwR3Qh2bmPMfZOs5QZY9gYI13LVlhrmUeEtdZS7VDa9DhDFGpxQEfR z7Q+zMtQhTGA00LLIIMZrqZ2LVullJsg1ui7gq9m1kBba72il6Eoazgp+Mz87miDhuiZiV3TBFGW XUV+c4irXw+fch5lUDbhb68r79LHVTjfZbjE4R9H7k8uZpwuaXFAEGk6/PUV9ANITnBtaZXqBQAA AABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <image
+ y="13.145654"
+ x="-326.61792"
+ id="image3206"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFygURg7J4gAAAZRJREFUSMfFluGOxCAIhAF9t77/ +1S9X2PGEd3N5ZIzMdt2ST8YQOrP8wwzszGG4TfbvXdjOyx3NzOziDB3TzfbmZnVDNh7X675PoO6 u/XeLSIWeERMmzHGBNcTEDDeCuZoImL+BzgcUXDNgK21CeJrBjMUkIiwUsq0KaVs4EVelbO1tmwG 88qApZQJgQIc7SIvvxiw930XeBZpKWUCNdd8PeXNcslA7BuUpVco/mcHtpxmkWLryyGfPuPnGuWU N8vpTWJekJadABBFxO9fIs0i5iLSvGrDu7u11mZBaaXzbz2dRNqv7EAGZZm1p5kxI+V18k4dY/ub bbbC/mFtkWaHtPbbb2wXqBpxyXM1okJZQj4Y+LDPJs52DCqYQSgkhmYtA3t1IFOgZhEqVA8DvY8I q7Vu0FPEVSPEaOJpwX14O3s/gZdI0WcK5ILBC27QDKw5noWEpsXc4/HEUMh9G22nSK+FpDnjw/vb IX7K6TJlWGJUqo6mbz5XdGfSbvIyWL3UfGZzM/swu/apgnkUwZG/+gT9AfycsjUM8CDUAAAAAElF TkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <image
+ y="33.134655"
+ x="-326.61792"
+ id="image3217"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFzgFZnz7QQAABF5JREFUSMfFllGS4zgORB9AUpJd 3X2uvv9VpqpkiSRyP8CqntmN+V5HIBwhm0oikUjAfv/+LQAzcDPcRXFoxWhV7BVaEVtzWhG1gLsB IBkzjD7JGPDqMKbRpxgT5hQhAYYkJFH/G7AVoxXYqjg22Bs8N2NvYmt5Gbc8JBkjoA/jGsZ5i1aN 1y18OGbCDOY0ZgRmedkKwjDMRF2Ae4OjibfDeO7wtovHbpl1heL2Ddon3MM4b9ib8XEZ7mAXgK0I wJkRCZoZGtWhOmwVjhb8eBg/D/jx+AP+2IytOqUkaCxqr2GcF3xcUItRXIDyYgSSEyHcjMhMwU2U rxo2eB4J+Ospfj2Nn4fxPJzH5rTmK1MnBGMk6GeD1kRxYW4EWb8ZRggk0WWgoLpnjTJL49jguYu3 A349nV9P+Plw3o7CvpUF6gvUGFPsfQEWYZbCmYI5gxFihojpTA8ko9rKshQlaBNvG/w4Mn4+Cj+e znOv7Ful1oKXgi3QOZWANcCCIBgzGFNcm3EPuCeMCR4QYVQD3FKVWU/j2MVzT0rfjgQ8jsa+NUpt uJdsAfIlPiZmEzGZMZeag0eHa4hrBH0IHwYGtbjjHhSHWmBr8GjGYzcem7NvhX2r7FujtkYpDfcK 5oAxQ2AD5EwZx4DHMB437E20IpobxVPVbix6zShlmUA1Ws36bi2FU2uh1AQsdctMzZEMTIAT6myx gKpobZ2vUGosQMdsUm21kpsonnJvxahf4U4pheIF94p7wVamhoEFAkqkkEoNaglaEaUkg77Mx0zZ nmAY+vPQDHPWzQxzw83BDHPHLJVri15b58z829mKG2ZQjG9KbQWA83/4VFCqUEKy/A4jYj0LEQqQ UATywJSUQja7viPPzBASTLHeA1oBULUcK5RK/JoaYyojgjmzFSwGFp70LCFFiJiTOUf+b0zGDPoM 5oS5QDMpiBBVMqbyD2neog/jHuLuQe/BqJM6+ndN5BUzR6tlxhiMPrn74O6TPkTv6/wI5tDKONmo M4IIY0a6xt3h7OK84NiCvU1qSUHlDAX3+Ic53GNy3RnnNTlfwXkHV1fO2S8rXFnXrCf0Ke5hvLp4 XfC5if0VtLJ8AFCIWuf/2OA9xOsOPs7Jx0t8XsH5EucVXHf+PmdSjL7onTA9ffLVjY9btFf2a2YF iqxza/Pb8HOeKtm5xftLvJ/irzP4uHOYXyMYA5LRnDY1QoTBCFs3TjtsbhRbNEYwJjx6ri2+RpuU K8o1jM8L3i/x16d4P+H9DM5LXHdSPKdSdF/rSqxsuxmXgVtQllWFtAb15NziH0NcYdxrc/hcQ/z9 hPcXfJzi1TORMVIvWrtSDQkCBmCRFKfbRM7LgD7E1Y29ilbjX9eV84aPy/i8UoivLvqiVn9rm/ql Qq2BbPzZ9AT0afSRL8zFLH0aSyXnpfhezK7OquXKcmr1a6x9adGbyQrC6Gg1szGl1UZ/X0G1VtDl OpFi6lNrBdVaQeNfV9D/ABAocXiDcRHWAAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <image
+ y="23.140146"
+ x="-326.61792"
+ id="image3228"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFygb1rHUcwAAA6BJREFUSMfFlt2OGzcMhT+S0szG yb5X3v9V2qztkUT2gtKMN01/LgpUgGABHvGI5OEh5fv37wEAgQCqgUpQNDB1NnOKOtWCoo5pIJJX IoThQneljfw9hjJc6S54CO5Cfi2sVX4GtAlYbbAVZ7PBW3G2MqjmlPkoAA+hu9CGcnTj0RVT4+iB YHQHlAkcJ3BZgCKXh9UGexl8qWt33upgs0G1z6BtCMcwHs2ozbi3BMxlxC+ASwKCCRPQ2cvgtg2+ bp2vW+O29QSe3pom6JhePrpxL4VqBVPQM5JCoPQhhAABscKrEhladaoN3moCftsP3vfGt61z2/4e dJ+5X/kekZFYv+EwJnIRyUibBFWDvThf6uBWO+97531vvO/tBC3m2GlY6EPZur0ACj6JNDxJ5R44 gkxvi0wvVZ1qSZwvZXDbGl+3xvve+bY3bjXzXMw/E2noC7nkzHOSS2mmNBc0BPdkfJEZ3iufzl47 tzq4bZ3bloBvtbMXx9TPnHkkD+R8RKO5TCZ39m4cwylDGR7IYu9irslLTovzVgdvJb3LnZEw+Vyn Kj7Pg+bCW0lOvDXnwwamdt7JLTO8s0bT2/S42mCzKQ6WHubDXkEBh1CnmLDNSFUbc6fNJTgyNaGI ALNGdXpbNEWgTDEwCUwyDSLB0hgky0OFU1Rs3Z3nZZdZmiKgS6BWbnWFW6+zCjM0r2I27y1DcgnM isYCTNvXPeV/WJpRzu0h+IuQr7NH5i+moqy1zhHMb7Jkhst59pBp+7pXIoCXD7JDZHH3MYs8cmuA XLp9PW7+vwSh+3VedtfjIqDE9M59dYws7DaMY2Sr2k4BcHBe6nSBKX1+e/S8mzttul8eg1BivXh6 2Ua2qEczHtXYu1FfBUAdFTnFYbjy7MqzG89u3Ht2nMcEH66MyHDnJkFf++KzK89WuNfBdhSqXrIX MSgmf5LBZzc+mvFxFD6Owr0bz1Z4dqWNq6HHldPURBeljeAYxr079Si/bNj1J+1dXebjKPx+VH4c lR8T+BhG82wAi2gnkUKyYzQXnrP7F63TeBAzb0fJaeIV9OivoIXfnoWPo3Jvdno6XkJ79lMPQRyG KG3Ao6UCLYau2WcvKY06+6m7cJzhzdD+mCF+NDtzuojEK5EIGAAuCApz3EiiMHNt/ziu3Jtxb2V6 aVc++VzjJUeKmLVKDlMTNFgEMx793w1mx7CzbP5qIizXLBO4pxqHQ2CzjIQ2nDqng/9iBP0D3TE5 0SOd5zEAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-362.92947"
+ y="150.38811"
+ id="text3233"><tspan
+ sodipodi:role="line"
+ id="tspan3231"
+ x="-362.92947"
+ y="150.38811"
+ style="stroke-width:0.26458332">loadmode_cat</tspan></text>
+ <image
+ y="145.73526"
+ x="-326.61792"
+ id="image3243"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAYCAYAAAAGXva8AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAABZ0AAAWdAEtIJO3AAAAB3RJTUUH1gcdFyoWmjbKTAAAAENJREFUSMft0kEKACAIBMC1n/ny fZqdCynwUuAOeDFSEQERkYSdHklGtbC7W+lj1pRkBLDEnrsNO16st0/T/w5JRPqa7ysi68Ta8fMA AAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="5.644444"
+ width="6.8203707" />
+ <g
+ id="g977"
+ transform="translate(-4.491333)">
+ <rect
+ y="-6.7276416"
+ x="-302.92053"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4"
+ width="6.9830046"
+ height="5.6600881"
+ x="-302.70886"
+ y="-6.5159593" />
+ </g>
+ <g
+ id="g989">
+ <rect
+ transform="scale(-1)"
+ y="-19.258596"
+ x="300.01474"
+ height="6.0650024"
+ width="7.3879189"
+ id="rect3597-9-1-69"
+ style="fill:url(#linearGradient1811-8-43-32);fill-opacity:1;stroke:#141414;stroke-width:0.28499776;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ transform="scale(-1)"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.16074529;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-3-8"
+ width="6.9830046"
+ height="5.6600881"
+ x="300.21719"
+ y="-19.056139" />
+ <circle
+ r="1.5875"
+ cy="16.226095"
+ cx="-303.70871"
+ id="path1478-9"
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-343.05417"
+ y="-11.039122"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-343.05417"
+ y="-11.039122"
+ style="stroke-width:0.26458335">see: recordpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-313.61774"
+ y="-10.873793"
+ id="text1373"
+ inkscape:transform-center-x="1.8186131"
+ inkscape:transform-center-y="-0.33065693"><tspan
+ sodipodi:role="line"
+ id="tspan1371"
+ x="-313.61774"
+ y="-10.873793"
+ style="stroke-width:0.26458335">checkbox_*</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-359.9808"
+ y="-23.197775"
+ id="text962"><tspan
+ sodipodi:role="line"
+ id="tspan960"
+ x="-359.9808"
+ y="-23.197775"
+ style="stroke-width:0.26458332">Are these the correct measurements?</tspan></text>
+ <g
+ id="g973"
+ transform="translate(-4.8845215,1.2642316)">
+ <rect
+ y="2.0964508"
+ x="-302.52734"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-2"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004-9);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-7"
+ width="6.9830046"
+ height="5.6600881"
+ x="-302.31567"
+ y="2.3081207" />
+ <circle
+ r="1.5875"
+ cy="5.1381645"
+ cx="-298.82416"
+ id="path1478-0"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g963"
+ transform="translate(-1.9996033,1.4863111)">
+ <rect
+ y="22.050934"
+ x="-305.41226"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-0"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004-2);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-8"
+ width="6.9830046"
+ height="5.6600881"
+ x="-305.20059"
+ y="22.262604" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-7-3-6"
+ d="m -299.13855,23.942173 c 0,0 -0.58368,-0.3494 -0.90464,-0.9088 l -2.07447,2.1825 c 0,0 -0.68843,-0.74045 -1.1928,-1.29068 0,0 -0.32193,0.51353 -0.96918,0.90842 1.13205,0.74562 1.50295,1.15249 2.16198,2.31831 z"
+ style="display:inline;fill:url(#radialGradient51059-4-2);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g958">
+ <rect
+ y="33.625549"
+ x="-307.41187"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-0-4"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004-2-1);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-8-0"
+ width="6.9830046"
+ height="5.6600881"
+ x="-307.2002"
+ y="33.837219" />
+ <circle
+ r="1.5875"
+ cy="36.667263"
+ cx="-303.70868"
+ id="path1478-1-3"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-7-3-6-3"
+ d="m -301.13814,35.516774 c 0,0 -0.58368,-0.3494 -0.90464,-0.9088 l -2.07447,2.1825 c 0,0 -0.68843,-0.74045 -1.1928,-1.29068 0,0 -0.32193,0.51353 -0.96918,0.90842 1.13205,0.74562 1.50295,1.15249 2.16198,2.31831 z"
+ style="display:inline;fill:url(#radialGradient51059-4-2-1);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1143"
+ transform="translate(4.2333335)">
+ <rect
+ y="118.72094"
+ x="-313.84293"
+ height="4.5414195"
+ width="6.926908"
+ id="rect3597-9-4-3"
+ style="fill:none;fill-opacity:1;stroke:#efede3;stroke-width:0.22108038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="119.99946"
+ x="-313.0253"
+ height="1.984375"
+ width="5.2916665"
+ id="rect1011"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.57102871;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="translate(12.210029,0.09165246)"
+ style="stroke:#efede3;stroke-opacity:1"
+ id="g1022">
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.12482122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1013"
+ width="1.7272621"
+ height="1.9141577"
+ x="-325.18039"
+ y="119.94292" />
+ <use
+ style="stroke:#efede3;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect1013"
+ id="use1015"
+ transform="translate(1.7272644)"
+ width="100%"
+ height="100%" />
+ <use
+ style="stroke:#efede3;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect1013"
+ id="use1017"
+ transform="translate(3.4545288)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ id="g1094"
+ transform="translate(4.2333335)">
+ <rect
+ y="138.54254"
+ x="-311.65869"
+ height="1.3539649"
+ width="3.6105731"
+ id="rect1011-8"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38962033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="138.5665"
+ x="-311.62119"
+ height="1.3060548"
+ width="1.1785334"
+ id="rect1013-5"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.1785364)"
+ id="use1015-6"
+ xlink:href="#rect1013-5"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3570684)"
+ id="use1017-6"
+ xlink:href="#rect1013-5"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1088"
+ transform="translate(4.2333335)">
+ <rect
+ y="147.62152"
+ x="-310.54663"
+ height="1.3539649"
+ width="2.353297"
+ id="rect1011-8-4"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.31455159;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="147.64548"
+ x="-311.76639"
+ height="1.3060548"
+ width="1.1785334"
+ id="rect1013-5-0"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.1785441,-2.1084948e-6)"
+ id="use1015-6-0"
+ xlink:href="#rect1013-5-0"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3570741,-2.1084948e-6)"
+ id="use1017-6-4"
+ xlink:href="#rect1013-5-0"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1135"
+ transform="translate(4.2333335)">
+ <rect
+ transform="rotate(90)"
+ y="308.54642"
+ x="129.89449"
+ height="3.2467117"
+ width="2.2221372"
+ id="rect1011-8-2"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.47332251;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="308.60385"
+ x="128.82326"
+ height="3.1318266"
+ width="1.0862815"
+ id="rect1013-5-6"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-4.2289363e-8,1.0862868)"
+ id="use1015-6-7"
+ xlink:href="#rect1013-5-6"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-4.2289363e-8,2.1725652)"
+ id="use1017-6-5"
+ xlink:href="#rect1013-5-6"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-width:0.13229167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ id="g21-6"
+ transform="matrix(0.26458333,0,0,0.26458333,-284.9765,61.12445)">
+ <path
+ style="opacity:0.1"
+ inkscape:connector-curvature="0"
+ id="path17"
+ d="m 10,4 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h -2 v 1 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v 2 h 1 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 v -1 h -2 v -2 h 2 l -1,-1 h -1 v -1 l -1,-1 v 2 h -2 v -2 h 2 l -1,-1 h -1 v -1 l -1,-1 v 2 h -2 v -2 h 2 L 47,10 H 46 V 9 L 45,8 v 2 H 43 V 8 h 2 L 44,7 H 43 V 6 L 42,5 V 7 H 40 V 5 h 2 L 41,4 H 12 Z m 3,1 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 V 7 H 37 Z M 13,8 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -27,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -30,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -33,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m 3,0 h 2 v 2 h -2 v -1 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m -36,3 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z m 3,0 h 2 v 2 h -2 z" />
+ <rect
+ style="opacity:0.5"
+ id="rect19-0"
+ transform="scale(1,-1)"
+ height="1"
+ width="30"
+ y="-4"
+ x="10" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m -247.75141,141.62054 v -4.06025 h 2.10013 l 0.98006,0.98007 v 3.08018 h -0.98006 z"
+ id="use31"
+ style="fill:url(#a-8);stroke-width:0.07000434" />
+ <g
+ id="g1439"
+ transform="translate(11.833806,0.1385188)">
+ <g
+ transform="matrix(0.4966389,0,0,0.4966389,-172.5178,61.532303)"
+ id="g1324-3">
+ <path
+ inkscape:connector-curvature="0"
+ d="m -295.50317,80.434935 v -7.672917 h 3.78835 l 1.7679,1.852078 v 5.820839 h -1.7679 z"
+ id="use15-2"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.12924995" />
+ <path
+ style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#afafaf;stroke-width:0.12924986;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ inkscape:connector-curvature="0"
+ id="path25-2-1"
+ d="m -289.94691,74.614094 -1.7679,-1.852078 v 1.852078 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.2;fill:url(#linearGradient1362);fill-rule:evenodd;stroke-width:0.12924956"
+ d="m -291.71481,74.614096 1.76789,1.85208 v -1.85208 z"
+ id="path29-5" />
+ <rect
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.0559846;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1300-9"
+ width="5.5562501"
+ height="0.26458335"
+ x="-295.50317"
+ y="80.170357" />
+ <rect
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04622781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1300-7-9"
+ width="3.7883608"
+ height="0.26458335"
+ x="-295.50317"
+ y="72.762016" />
+ </g>
+ <text
+ transform="scale(1.0121623,0.98798388)"
+ id="text1370-0"
+ y="103.10181"
+ x="-313.15582"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.78831005px;line-height:6.53510141px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient1420);fill-opacity:1;stroke:none;stroke-width:0.26140407"
+ xml:space="preserve"><tspan
+ style="fill:url(#linearGradient1420);fill-opacity:1;stroke-width:0.26140407"
+ y="103.10181"
+ x="-313.15582"
+ id="tspan1368-4"
+ sodipodi:role="line">+</tspan></text>
+ <text
+ id="text1370"
+ y="101.87151"
+ x="-316.97638"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#a3a1a0;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ xml:space="preserve"><tspan
+ style="fill:#a3a1a0;fill-opacity:1;stroke-width:0.26458332"
+ y="101.87151"
+ x="-316.97638"
+ id="tspan1368"
+ sodipodi:role="line">+</tspan></text>
+ </g>
+ <g
+ id="g1455"
+ transform="matrix(1.0108926,0,0,1.0108926,14.239147,-0.79366983)">
+ <circle
+ r="1.7363281"
+ cy="88.590996"
+ cx="-316.14398"
+ id="path1427"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.2315104;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1451"
+ d="m -314.37607,86.833764 -3.53583,3.514463"
+ style="fill:none;stroke:#efede3;stroke-width:0.25642553px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1324-2"
+ transform="translate(1.3828127e-5,23.215042)">
+ <path
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.12924995"
+ id="use15-9"
+ d="m -295.50317,80.434935 v -7.672917 h 3.78835 l 1.7679,1.852078 v 5.820839 h -1.7679 z"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -289.94691,74.614094 -1.7679,-1.852078 v 1.852078 z"
+ id="path25-2-6"
+ inkscape:connector-curvature="0"
+ style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#afafaf;stroke-width:0.12924986;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+ <path
+ id="path29-1"
+ d="m -291.71481,74.614096 1.76789,1.85208 v -1.85208 z"
+ style="opacity:0.2;fill:url(#b-8);fill-rule:evenodd;stroke-width:0.12924956"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="80.170357"
+ x="-295.50317"
+ height="0.26458335"
+ width="5.5562501"
+ id="rect1300-0"
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.0559846;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="72.762016"
+ x="-295.50317"
+ height="0.26458335"
+ width="3.7883608"
+ id="rect1300-7-4"
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04622781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1538"
+ transform="matrix(0.95966893,0,0,0.95966893,-3.7487085,3.0951389)">
+ <rect
+ y="74.623405"
+ x="-316.12558"
+ height="3.8378265"
+ width="3.5552905"
+ id="rect1493"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:#d4d2d0;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="translate(-0.14074242)"
+ id="g1522">
+ <rect
+ style="opacity:1;fill:#bfbfbf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1495"
+ width="1.3773637"
+ height="0.75931585"
+ x="-314.89587"
+ y="74.557259" />
+ <circle
+ style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229166;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1497"
+ cx="-314.64429"
+ cy="74.93692"
+ r="0.10337167" />
+ <circle
+ style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229166;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1497-2"
+ cx="-313.77014"
+ cy="74.93692"
+ r="0.10337167" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1524"
+ d="M -315.0026,75.245176 V 74.557259"
+ style="fill:none;stroke:#000000;stroke-width:0.01527424px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.3094142)"
+ id="use1526"
+ xlink:href="#path1524"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="matrix(0,1,-1.9034479,0,-171.77732,390.24778)"
+ id="use1528"
+ xlink:href="#path1524"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="g1583">
+ <text
+ id="text1548"
+ y="65.859474"
+ x="-307.17981"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:3.18123627px;line-height:7.45602226px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.2982409;"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:3.18123627px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.2982409;fill:#efede3;fill-opacity:1;"
+ y="65.859474"
+ x="-307.17981"
+ id="tspan1546"
+ sodipodi:role="line">RES</tspan></text>
+ <rect
+ y="63.299358"
+ x="-306.9953"
+ height="0.39687499"
+ width="3.7570834"
+ id="rect1550"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10385826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="65.878563"
+ x="-306.9953"
+ height="0.39687499"
+ width="3.7570834"
+ id="rect1550-0"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10385826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.44047594px;line-height:10.40736485px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.41629457"
+ x="-0.059990797"
+ y="295.297"
+ id="text2388"><tspan
+ sodipodi:role="line"
+ id="tspan2386"
+ x="-0.059990797"
+ y="295.297"
+ style="stroke-width:0.41629457">ALL!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.6848985px;line-height:3.94898105px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.15795922"
+ x="0.041734483"
+ y="292.08325"
+ id="text2399-7"><tspan
+ sodipodi:role="line"
+ id="tspan2397-4"
+ x="0.041734483"
+ y="292.08325"
+ style="stroke-width:0.15795922">loadmode</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_cat.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_cat.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="50.541667"
+ inkscape:cx="14.5"
+ inkscape:cy="12"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1088"
+ transform="translate(313.83504,145.5265)">
+ <rect
+ y="147.62152"
+ x="-310.54663"
+ height="1.3539649"
+ width="2.353297"
+ id="rect1011-8-4"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.31455159;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="147.64548"
+ x="-311.76639"
+ height="1.3060548"
+ width="1.1785334"
+ id="rect1013-5-0"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.1785441,-2.1084948e-6)"
+ id="use1015-6-0"
+ xlink:href="#rect1013-5-0"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3570741,-2.1084948e-6)"
+ id="use1017-6-4"
+ xlink:href="#rect1013-5-0"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.26137421,0,0,0.22216782,-304.55213,22.450593)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2-1"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient845"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-2.4917285,28.778559)"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="12.822917"
+ inkscape:cx="14.5"
+ inkscape:cy="12"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g963-4"
+ transform="translate(305.54554,268.73234)">
+ <rect
+ y="22.050934"
+ x="-305.41226"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-0-0"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient845);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-8-3"
+ width="6.9830046"
+ height="5.6600881"
+ x="-305.20059"
+ y="22.262604" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-7-3-6-9"
+ d="m -299.13855,23.942173 c 0,0 -0.58368,-0.3494 -0.90464,-0.9088 l -2.07447,2.1825 c 0,0 -0.68843,-0.74045 -1.1928,-1.29068 0,0 -0.32193,0.51353 -0.96918,0.90842 1.13205,0.74562 1.50295,1.15249 2.16198,2.31831 z"
+ style="display:inline;fill:url(#radialGradient51059-4-2-1);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2613742,0,0,0.22216781,-306.55171,34.025194)"
+ r="9.9999895"
+ fy="11.500006"
+ fx="11.000066"
+ cy="11.500006"
+ cx="11.000066"
+ id="radialGradient51059-4-2-1-3"
+ xlink:href="#linearGradient51055-6"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient851"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-4.4913298,40.353164)"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="9.0671713"
+ inkscape:cx="14.5"
+ inkscape:cy="12"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ transform="translate(307.54514,257.15772)"
+ id="g958-0">
+ <rect
+ y="33.625549"
+ x="-307.41187"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-0-4-3"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient851);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-8-0-4"
+ width="6.9830046"
+ height="5.6600881"
+ x="-307.2002"
+ y="33.837219" />
+ <circle
+ r="1.5875"
+ cy="36.667263"
+ cx="-303.70868"
+ id="path1478-1-3-0"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path2787-7-3-6-3-3"
+ d="m -301.13814,35.516774 c 0,0 -0.58368,-0.3494 -0.90464,-0.9088 l -2.07447,2.1825 c 0,0 -0.68843,-0.74045 -1.1928,-1.29068 0,0 -0.32193,0.51353 -0.96918,0.90842 1.13205,0.74562 1.50295,1.15249 2.16198,2.31831 z"
+ style="display:inline;fill:url(#radialGradient51059-4-2-1-3);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:0.15058035;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-32-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.28415062,0,0,0.35676477,290.88574,-19.721197)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.80464"
+ inkscape:cx="36.903356"
+ inkscape:cy="22.661814"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ transform="translate(307.54516,277.5989)"
+ id="g989">
+ <rect
+ transform="scale(-1)"
+ y="-19.258596"
+ x="300.01474"
+ height="6.0650024"
+ width="7.3879189"
+ id="rect3597-9-1-69-3"
+ style="fill:url(#linearGradient1811-8-43-32-9);fill-opacity:1;stroke:#141414;stroke-width:0.28499776;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ transform="scale(-1)"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.16074529;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-3-8-3"
+ width="6.9830046"
+ height="5.6600881"
+ x="300.21719"
+ y="-19.056139" />
+ <circle
+ r="1.5875"
+ cy="16.226095"
+ cx="-303.70871"
+ id="path1478-9-8"
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="22"
+ viewBox="0 0 7.6729166 5.8208334"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.39318672,8.8240765)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004-9"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.80464"
+ inkscape:cx="54.80315"
+ inkscape:cy="19.959958"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17917)">
+ <g
+ id="g973"
+ transform="translate(302.66062,288.95141)">
+ <rect
+ y="2.0964508"
+ x="-302.52734"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4-2"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004-9);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4-7"
+ width="6.9830046"
+ height="5.6600881"
+ x="-302.31567"
+ y="2.3081207" />
+ <circle
+ r="1.5875"
+ cy="5.1381645"
+ cx="-298.82416"
+ id="path1478-0"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05265208;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_nested.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_nested.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="27.865058"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1143"
+ transform="translate(314.21593,172.83335)">
+ <rect
+ y="118.72094"
+ x="-313.84293"
+ height="4.5414195"
+ width="6.926908"
+ id="rect3597-9-4-3"
+ style="fill:none;fill-opacity:1;stroke:#efede3;stroke-width:0.22108038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="119.99946"
+ x="-313.0253"
+ height="1.984375"
+ width="5.2916665"
+ id="rect1011"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.57102871;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="translate(12.210029,0.09165246)"
+ style="stroke:#efede3;stroke-opacity:1"
+ id="g1022">
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.12482122;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1013"
+ width="1.7272621"
+ height="1.9141577"
+ x="-325.18039"
+ y="119.94292" />
+ <use
+ style="stroke:#efede3;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect1013"
+ id="use1015"
+ transform="translate(1.7272644)"
+ width="100%"
+ height="100%" />
+ <use
+ style="stroke:#efede3;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect1013"
+ id="use1017"
+ transform="translate(3.4545288)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_new.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_new.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#b-8-8"
+ id="linearGradient1362"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.12627774,0,0,0.13229131,-296.76592,72.365147)"
+ x1="40"
+ y1="17"
+ x2="54"
+ y2="31" />
+ <linearGradient
+ gradientTransform="matrix(0.12627774,0,0,0.13229131,-296.76592,72.365147)"
+ id="b-8-8"
+ y1="17"
+ x1="40"
+ y2="31"
+ gradientUnits="userSpaceOnUse"
+ x2="54">
+ <stop
+ stop-color="#060606"
+ id="stop7-7"
+ style="stop-color:#efede3;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop9-2" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#b-8-8"
+ id="linearGradient1420"
+ x1="-312.59842"
+ y1="101.84714"
+ x2="-311.95001"
+ y2="102.50095"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="30.607007"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1439"
+ transform="translate(321.23678,194.25084)">
+ <g
+ transform="matrix(0.4966389,0,0,0.4966389,-172.5178,61.532303)"
+ id="g1324-3">
+ <path
+ inkscape:connector-curvature="0"
+ d="m -295.50317,80.434935 v -7.672917 h 3.78835 l 1.7679,1.852078 v 5.820839 h -1.7679 z"
+ id="use15-2"
+ style="fill:#efede3;fill-opacity:1;stroke-width:0.12924995" />
+ <path
+ style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#afafaf;stroke-width:0.12924986;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+ inkscape:connector-curvature="0"
+ id="path25-2-1"
+ d="m -289.94691,74.614094 -1.7679,-1.852078 v 1.852078 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.2;fill:url(#linearGradient1362);fill-rule:evenodd;stroke-width:0.12924956"
+ d="m -291.71481,74.614096 1.76789,1.85208 v -1.85208 z"
+ id="path29-5" />
+ <rect
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.0559846;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1300-9"
+ width="5.5562501"
+ height="0.26458335"
+ x="-295.50317"
+ y="80.170357" />
+ <rect
+ style="opacity:1;fill:#d4d2d0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04622781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1300-7-9"
+ width="3.7883608"
+ height="0.26458335"
+ x="-295.50317"
+ y="72.762016" />
+ </g>
+ <text
+ transform="scale(1.0121623,0.98798388)"
+ id="text1370-0"
+ y="103.10181"
+ x="-313.15582"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.78831005px;line-height:6.53510141px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient1420);fill-opacity:1;stroke:none;stroke-width:0.26140407"
+ xml:space="preserve"><tspan
+ style="fill:url(#linearGradient1420);fill-opacity:1;stroke-width:0.26140407"
+ y="103.10181"
+ x="-313.15582"
+ id="tspan1368-4"
+ sodipodi:role="line">+</tspan></text>
+ <text
+ id="text1370"
+ y="101.87151"
+ x="-316.97638"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#a3a1a0;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ xml:space="preserve"><tspan
+ style="fill:#a3a1a0;fill-opacity:1;stroke-width:0.26458332"
+ y="101.87151"
+ x="-316.97638"
+ id="tspan1368"
+ sodipodi:role="line">+</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_newcat.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newcat.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="41.574803"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1094"
+ transform="translate(313.68984,154.60547)">
+ <rect
+ y="138.54254"
+ x="-311.65869"
+ height="1.3539649"
+ width="3.6105731"
+ id="rect1011-8"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.38962033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="138.5665"
+ x="-311.62119"
+ height="1.3060548"
+ width="1.1785334"
+ id="rect1013-5"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.1785364)"
+ id="use1015-6"
+ xlink:href="#rect1013-5"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3570684)"
+ id="use1017-6"
+ xlink:href="#rect1013-5"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_newtracks.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_newtracks.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="30.607007"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1135"
+ transform="translate(314.00622,163.37232)">
+ <rect
+ transform="rotate(90)"
+ y="308.54642"
+ x="129.89449"
+ height="3.2467117"
+ width="2.2221372"
+ id="rect1011-8-2"
+ style="opacity:1;fill:#d40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.47332251;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(90)"
+ y="308.60385"
+ x="128.82326"
+ height="3.1318266"
+ width="1.0862815"
+ id="rect1013-5-6"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-4.2289363e-8,1.0862868)"
+ id="use1015-6-7"
+ xlink:href="#rect1013-5-6"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-4.2289363e-8,2.1725652)"
+ id="use1017-6-5"
+ xlink:href="#rect1013-5-6"
+ y="0"
+ x="0"
+ style="stroke:#efede3;stroke-width:0.13229167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_none.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_none.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="33.348956"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1455"
+ transform="matrix(1.0108926,0,0,1.0108926,323.42407,204.26902)">
+ <circle
+ r="1.7363281"
+ cy="88.590996"
+ cx="-316.14398"
+ id="path1427"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.2315104;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1451"
+ d="m -314.37607,86.833764 -3.53583,3.514463"
+ style="fill:none;stroke:#efede3;stroke-width:0.25642553px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_paste.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_paste.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.588163"
+ inkscape:cx="54.80315"
+ inkscape:cy="30.607007"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ id="g1538"
+ transform="matrix(0.95966894,0,0,0.95966894,305.50641,220.36971)">
+ <rect
+ y="74.623405"
+ x="-316.12558"
+ height="3.8378265"
+ width="3.5552905"
+ id="rect1493"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:#d4d2d0;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="translate(-0.14074242)"
+ id="g1522">
+ <rect
+ style="opacity:1;fill:#bfbfbf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229167;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1495"
+ width="1.3773637"
+ height="0.75931585"
+ x="-314.89587"
+ y="74.557259" />
+ <circle
+ style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229166;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1497"
+ cx="-314.64429"
+ cy="74.93692"
+ r="0.10337167" />
+ <circle
+ style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13229166;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1497-2"
+ cx="-313.77014"
+ cy="74.93692"
+ r="0.10337167" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1524"
+ d="M -315.0026,75.245176 V 74.557259"
+ style="fill:none;stroke:#000000;stroke-width:0.01527424px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(1.3094142)"
+ id="use1526"
+ xlink:href="#path1524"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="matrix(0,1,-1.9034479,0,-171.77732,390.24778)"
+ id="use1528"
+ xlink:href="#path1524"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="29"
+ height="24"
+ viewBox="0 0 7.6729166 6.3500001"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_resource.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_resource.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="13.784091"
+ inkscape:cx="14.5"
+ inkscape:cy="11"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.65)">
+ <g
+ transform="translate(308.95322,229.0376)"
+ id="g1583-2">
+ <text
+ id="text1548-0"
+ y="65.859474"
+ x="-307.17981"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:3.18123627px;line-height:7.45602226px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.2982409"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:3.18123627px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.2982409"
+ y="65.859474"
+ x="-307.17981"
+ id="tspan1546-6"
+ sodipodi:role="line">RES</tspan></text>
+ <rect
+ y="63.299358"
+ x="-306.9953"
+ height="0.39687499"
+ width="3.7570834"
+ id="rect1550-1"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10385826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="65.878563"
+ x="-306.9953"
+ height="0.39687499"
+ width="3.7570834"
+ id="rect1550-0-5"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10385826;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="29"
+ height="22"
+ viewBox="0 0 7.6729166 5.8208334"
+ version="1.1"
+ id="svg1601"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="loadmode_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/loadmode_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1595">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1004"
+ x1="-295.83527"
+ y1="-6.874023"
+ x2="-295.83527"
+ y2="-0.53759223"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="25.229166"
+ inkscape:cx="14.135941"
+ inkscape:cy="6.6945568"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata1598">
+ <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:relation>loadmode_all</dc:relation>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17917)">
+ <g
+ id="g977"
+ transform="translate(303.05381,297.7755)">
+ <rect
+ y="-6.7276416"
+ x="-302.92053"
+ height="6.0834532"
+ width="7.4063697"
+ id="rect3597-9-4"
+ style="fill:#000020;fill-opacity:1;stroke:#141414;stroke-width:0.26654688;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1004);fill-opacity:1;stroke:#262626;stroke-width:0.16086666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-4"
+ width="6.9830046"
+ height="5.6600881"
+ x="-302.70886"
+ y="-6.5159593" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="locklabels_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1386"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-51.954661,-25.265706)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-30.855563"
+ inkscape:cy="10.779661"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1386);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-7-1"
+ width="23.019905"
+ height="23.019905"
+ x="-23.509953"
+ y="-23.509953"
+ transform="scale(-1)" />
+ <rect
+ y="-22.749918"
+ x="-23.249912"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-3-4-3"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <g
+ transform="translate(-339.5762,-47.596028)"
+ id="g2100-1">
+ <g
+ style="fill:#ffcc00"
+ transform="translate(339.14547,47.797933)"
+ id="g2915-3-4-1">
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ id="rect3456-1-8-0"
+ width="6.1738887"
+ height="4.4545779"
+ x="8.4406767"
+ y="16.628881"
+ ry="0.81355929" />
+ <path
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ id="path3458-8-4-3"
+ sodipodi:nodetypes="cscccccsccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#ffcc00;stroke-width:1.65751636;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 353.00787,55.359574 c -0.009,1.303659 -1.19175,2.600837 -1.91953,2.618996 l -5.67343,0.0059 v -5.274891 h 5.66118 c 0.98634,0.03694 1.94056,1.346671 1.93178,2.649987 z"
+ id="rect2818-16-4"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.00825274"
+ d="m 357.58593,54.818607 v 0.984848 6.13902 h 0.99996 l -2.12895,1.938918 -1.99991,-1.938918 h 1.03221 v -6.13902 h -2.32248 v -0.984848 h 2.32248 z"
+ id="rect2825-8-0"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.170762,-2.6258934)"
+ id="g3607-5-6">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-2-4"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-19-9"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-76.575035"
+ y="-16.228018"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-76.575035"
+ y="-16.228018">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="locklabels_locked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_locked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716-7"
+ xlink:href="#linearGradient3708-4"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706-8"
+ xlink:href="#linearGradient3700-0"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700-0">
+ <stop
+ id="stop3702-7"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704-5"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708-4"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-9"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-1"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-2-4-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88116421,0,0,1.3476629,-27.764394,-1.2025251)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-55.567427"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3302"
+ width="24"
+ height="24"
+ x="0"
+ y="0" />
+ <g
+ id="g3768"
+ transform="matrix(1.0476342,0,0,1.0476038,0.9999944,1.0003137)">
+ <rect
+ style="fill:url(#linearGradient3716-7);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706-8);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.160808,-2.9112566)"
+ id="g3607">
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818"
+ sodipodi:nodetypes="cccccz"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825"
+ sodipodi:nodetypes="cccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g2915"
+ transform="translate(-0.44067669,-0.08345938)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3473"
+ d="m 11.130203,13.021186 c -1.2321578,0 -2.2417288,0.969008 -2.3054378,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.298684 h 0.768478 V 15.2786 15.20655 c 0.06364,-0.790427 0.7301888,-1.416884 1.5369598,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.370729 h 0.792495 v -4.298683 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-2-4-2);fill-opacity:1;stroke:#141414;stroke-width:1.08973038;stroke-opacity:1"
+ id="rect3597-7-9-1-0"
+ width="22.910269"
+ height="22.910269"
+ x="0.54486561"
+ y="0.54486561" />
+ <rect
+ y="1.2500811"
+ x="0.7500658"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-0-5-8"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g2915-3-8-1"
+ transform="translate(-0.4307033,-0.59279718)"
+ style="fill:#800000">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1-1-3"
+ style="fill:#800000;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8-3-1"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#800000;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccz"
+ id="rect2818-1-1"
+ d="m 13.431697,6.968844 c -0.009,1.303659 -1.19175,2.6008368 -1.91953,2.6189958 l -5.6734303,0.0059 V 4.3188579 h 5.6611803 c 0.98634,0.03693 1.94056,1.346671 1.93178,2.6499861 z"
+ style="fill:none;stroke:#782121;stroke-width:1.65751636;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccccc"
+ id="rect2825-1-0"
+ d="m 18.009757,6.427877 v 0.984848 6.139019 h 0.99996 l -2.12895,1.938918 -1.99991,-1.938918 h 1.03221 V 7.412725 h -2.32248 V 6.427877 h 2.32248 z"
+ style="fill:#800000;fill-opacity:1;stroke:none;stroke-width:1.00825274"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-3-3-3"
+ d="m 11.140177,12.511848 c -1.2321503,0 -2.2417303,0.969008 -2.3054303,2.185364 -10e-4,0.02422 5.1e-4,0.04764 0,0.07205 v 4.298684 h 0.76847 v -4.298684 -0.07205 c 0.0636,-0.790427 0.7301903,-1.416884 1.5369603,-1.416884 0.80589,0 1.44807,0.627689 1.51295,1.416884 v 4.370729 h 0.79249 v -4.298683 c -5e-4,-0.02408 10e-4,-0.04815 0,-0.07205 -0.0632,-1.216816 -1.07295,-2.185364 -2.30544,-2.185364 z"
+ style="fill:#800000;fill-opacity:1;stroke:none" />
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.170786,-3.4205941)"
+ id="g3607-5">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-2"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-19"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="locklabels_lockedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_lockedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-9-4-5-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88116422,0,0,1.3476629,-27.764371,-1.2025333)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-55.364038"
+ inkscape:cy="9.8644067"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-77.490288"
+ y="-13.482256"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-77.490288"
+ y="-13.482256">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-3-9-4-5-4);fill-opacity:1;stroke:#141414;stroke-width:1.08973038;stroke-opacity:1"
+ id="rect3597-2-3-0-4-9"
+ width="22.910269"
+ height="22.910269"
+ x="0.54486561"
+ y="0.54486561" />
+ <rect
+ y="1.4891251"
+ x="0.98914051"
+ height="21.021744"
+ width="22.021744"
+ id="rect3597-5-7-9-4-8-9-8-0-2-1-1"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.97825694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="translate(-339.83342,-77.527044)"
+ id="g2028-3-9">
+ <g
+ style="fill:#800000"
+ transform="translate(339.39287,76.943865)"
+ id="g2915-3-8-7-6">
+ <rect
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ id="rect3456-1-1-9-9"
+ width="6.1738887"
+ height="4.4545779"
+ x="8.4406767"
+ y="16.628881"
+ ry="0.81355929" />
+ <path
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ id="path3458-8-3-8-3"
+ sodipodi:nodetypes="cscccccsccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#782121;stroke-width:1.65751636;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 353.25527,84.505506 c -0.009,1.303659 -1.19175,2.600837 -1.91953,2.618996 l -5.67343,0.0059 V 81.85552 h 5.66118 c 0.98634,0.03693 1.94056,1.346671 1.93178,2.649986 z"
+ id="rect2818-1-6-3"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#800000;fill-opacity:1;stroke:none;stroke-width:1.00825274"
+ d="m 357.83333,83.964539 v 0.984848 6.13902 h 0.99996 l -2.12895,1.938918 -1.99991,-1.938918 h 1.03221 v -6.13902 h -2.32248 v -0.984848 h 2.32248 z"
+ id="rect2825-1-7-8"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#800000;fill-opacity:1;stroke:none"
+ d="m 350.96375,90.048511 c -1.23215,0 -2.24173,0.969008 -2.30543,2.185364 -10e-4,0.02422 5.1e-4,0.04764 0,0.07205 v 4.298684 h 0.76847 v -4.298684 -0.07205 c 0.0636,-0.790427 0.73019,-1.416884 1.53696,-1.416884 0.80589,0 1.44807,0.627689 1.51295,1.416884 v 4.370729 h 0.79249 v -4.298683 c -5e-4,-0.02408 0.001,-0.04815 0,-0.07205 -0.0632,-1.216816 -1.07295,-2.185364 -2.30544,-2.185364 z"
+ id="path3473-3-3-0-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.160939,-3.4109733)"
+ id="g3607-9">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-6"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-0"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="locklabels_unlocked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlocked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811-8-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954685,-1.2657083)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-30.143699"
+ inkscape:cy="6.6101695"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3302"
+ width="24"
+ height="24"
+ x="0"
+ y="0" />
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.160808,-2.9112566)"
+ id="g3607">
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818"
+ sodipodi:nodetypes="cccccz"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825"
+ sodipodi:nodetypes="cccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g2915"
+ transform="translate(-0.44067669,-0.08345938)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3473"
+ d="m 41.333593,12.512712 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.298684 h 0.768478 v -4.298684 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.370729 h 0.792495 v -4.298683 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-0"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.250083"
+ x="0.75011826"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.170804,-3.4205953)"
+ id="g3607-1-5">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-9-6"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-6-6"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ id="g2915-9-4"
+ transform="translate(-0.4306746,-0.59279715)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-3-0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-3-0"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ id="g2915-3-9"
+ transform="translate(-0.4306746,-0.59279715)"
+ style="fill:#27ae60;fill-opacity:1">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1-0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8-8"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-74.74453"
+ y="-20.092426"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-74.74453"
+ y="-20.092426">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="locklabels_unlockedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/locklabels_unlockedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-2-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954705,-1.265709)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="40.941046"
+ inkscape:cy="-3.9661018"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-2-9);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-7-3"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.4891281"
+ x="0.98913193"
+ height="21.021744"
+ width="22.021744"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-5-3"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.97825694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g2915-3-8"
+ transform="translate(-0.43070564,-0.59279695)"
+ style="fill:#27ae60;fill-opacity:1">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-1-0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-8-5"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ transform="matrix(-1.0322146,0,0,0.98484715,24.170785,-3.420594)"
+ id="g3607-6">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#cccccc;stroke-width:1.64394927;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 10.403929,10.54929 c 0.0085,1.323717 1.154559,2.640853 1.859622,2.659292 l 5.49637,0.006 V 7.8585308 H 12.27542 c -0.955557,0.037504 -1.879996,1.3673915 -1.871491,2.6907602 z"
+ id="rect2818-6"
+ sodipodi:nodetypes="cccccz" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 5.96875,10 v 1 6.233475 H 5 L 7.0625,19.202225 9,17.233475 H 8 V 11 h 2.25 V 10 H 8 Z"
+ id="rect2825-4"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="magnify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/magnify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-70.881355"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#cccccc;stroke-width:1.38871074;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ d="m 8.935967,3.194355 c -3.1688278,0 -5.7416141,2.4920995 -5.7416116,5.5614596 0,3.0693624 2.5727838,5.5614614 5.7416116,5.5614614 1.175107,0 2.291686,-0.339146 3.202053,-0.926911 l 7.591073,7.41528 1.076552,-1.41933 -7.673884,-6.864928 c 0.955814,-0.9935 1.545819,-2.301844 1.545819,-3.7655724 0,-3.0693601 -2.572785,-5.5614596 -5.741613,-5.5614596 z m 0.082808,0.3475912 c 2.836122,0 5.134327,2.2350433 5.134327,4.9821409 0,2.7470979 -2.298204,4.9821419 -5.134327,4.9821419 -2.836122,0 -5.1343266,-2.235043 -5.1343266,-4.9821419 0,-2.7470976 2.2982046,-4.9821409 5.1343266,-4.9821409 z"
+ id="path11112" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7-9"
+ width="37.240875"
+ height="36.891399"
+ x="-52.383148"
+ y="-4.5134964" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="mask.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mask.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-44.033898"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:2.2005043;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="m 4.1002522,5.1002527 0,13.7994953 4.7983648,-5.990478 6.904965,5.990478 4.096165,0 0,-13.7994953 -3.979132,4.5998321 -6.0857315,-4.5998321 -5.7346313,0 z"
+ id="path2818"
+ sodipodi:nodetypes="ccccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-50.654335"
+ y="-5.7338352" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="maskkeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/maskkeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-18.82477"
+ inkscape:cy="10.677966"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#27ae60;stroke:#0b331e;stroke-width:1.01486325;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1"
+ d="m 4.1076838,3.9071792 0,14.9851368 4.5510412,-6.505174 6.54906,6.505174 3.885036,0 0,-14.9851368 -3.774035,4.9950461 -5.7720527,-4.9950461 -5.4390495,0 z"
+ id="path2818"
+ sodipodi:nodetypes="ccccccccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="26"
+ sodipodi:docname="mbutton_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#ffc3ff"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.8031378"
+ inkscape:cx="25.217667"
+ inkscape:cy="-5.3722797"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer86"
+ showborder="true"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="254.67375,26"
+ orientation="1,0"
+ id="guide1549"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="254.67375,25.003906"
+ orientation="0,1"
+ id="guide1551"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-4.1176117,-63.33279"
+ orientation="0,1"
+ id="guide1608"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer84"
+ inkscape:label="Layer 1"
+ style="display:inline"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="256"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="256"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ y="-26"
+ x="0"
+ height="26"
+ width="256"
+ id="rect2825"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="256"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ y="-26"
+ x="0"
+ height="1"
+ width="256"
+ id="rect2827"
+ style="fill:#666666;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2829"
+ width="256"
+ height="1"
+ x="0"
+ y="-1" />
+ <path
+ style="opacity:0.39175259;fill:#80ffb3"
+ d="m 215.94898,22.917883 c -0.54803,-0.10363 -0.64874,-0.17494 -0.78685,-0.55726 -0.15816,-0.43781 0.0733,-0.74533 0.63801,-0.84756 0.96577,-0.17484 4.25667,-1.84107 4.98671,-2.52484 l 0.47337,-0.44338 0.0165,-5.012136 c 0.0172,-5.1929471 0.0692,-6.4149841 0.2899,-6.8157082 0.14657,-0.266017 1.00548,-1.034507 2.61688,-2.341415 1.18248,-0.959033 1.26049,-1.015875 2.90876,-2.119403 0.60629,-0.405911 1.36015,-0.916188 1.67527,-1.133947 0.31511,-0.21776204 0.80273,-0.45524004 1.08359,-0.52773104 0.28086,-0.0725 0.56056,-0.221773 0.62154,-0.331738 0.12101,-0.218184 -0.13627,-0.355711 -1.58185,-0.845593 -1.24196,-0.42087496 -2.89688,-1.05893296 -3.8786,-1.49541406 -1.5701,-0.698065 -2.01975,-1.185205 -1.75935,-1.906029 0.11062,-0.3062279 0.0875,-1.5825369 -0.0463,-2.555626 -0.0191,-0.139387 -0.3667,-0.178099 -2.04293,-0.227553 -1.11091,-0.03278 -2.08729,-0.100038 -2.16974,-0.14948 -0.0825,-0.04944 -0.52629,-0.129754 -0.9863,-0.178484 -0.46001,-0.04873 -0.99304,-0.143222 -1.18449,-0.209986 -0.19147,-0.06676 -0.69871,-0.210427 -1.12721,-0.319251 -0.53626,-0.136188 -0.903,-0.310657 -1.1766,-0.5597461 l -0.39749,-0.361883 -0.0857,-2.0951456 c -0.0849,-2.076031 -0.0379,-2.836714 0.33516,-5.416239 0.16984,-1.174597 0.36493,-1.993077 0.60756,-2.548943 0.27022,-0.619088 0.32933,-1.240048 0.13869,-1.456976 -0.29145,-0.33166 -0.55711,-1.183677 -0.55711,-1.786768 0,-0.524338 0.0362,-0.605125 0.38806,-0.864053 0.33291,-0.245039 0.50673,-0.285632 1.22307,-0.285632 0.67822,0 0.90492,0.0473 1.20742,0.251941 0.20482,0.138567 0.38982,0.289732 0.41108,0.335921 0.0587,0.127513 7.32139,0.09921 9.82433,-0.03828 1.24067,-0.06816 7.0373,-0.129104 13.257,-0.139392 l 11.05235,-0.01828 1e-5,0.251941 1e-5,0.251941 h -2.708 c -3.99436,0 -8.74417,0.134204 -8.45121,0.238785 0.22463,0.08018 0.2519,0.17224 0.2519,0.850162 v 0.760242 l -1.76868,-0.02099 -1.7687,-0.02099 -0.0926,-0.42772 c -0.14779,-0.682737 -0.0635,-1.075841 0.26494,-1.235324 0.24448,-0.118722 -0.018,-0.141131 -1.66973,-0.142521 l -1.95983,-0.0016 0.0864,0.643848 c 0.0476,0.354118 0.094,0.795015 0.10324,0.979772 l 0.0168,0.335921 h -1.74052 -1.74053 v -0.688767 c 0,-0.378821 -0.0392,-0.72734 -0.0871,-0.774484 -0.0479,-0.04715 -0.0871,-0.160148 -0.0871,-0.251117 0,-0.137188 0.15338,-0.154424 0.89927,-0.101062 0.49461,0.03539 1.00371,0.01904 1.13135,-0.03631 0.13984,-0.06065 -1.01302,-0.07444 -2.90088,-0.03469 -1.72313,0.03627 -3.18517,0.113137 -3.24899,0.170794 -0.0727,0.06569 0.17819,0.09579 0.67197,0.08063 0.4334,-0.01332 0.82964,0.02159 0.88052,0.07757 0.0509,0.05598 0.0618,0.404105 0.0242,0.773618 l -0.0683,0.671843 -0.69621,0.02919 c -0.38291,0.01605 -1.19226,-0.0092 -1.79855,-0.05598 l -1.10233,-0.08517 v -0.756023 -0.756022 l -0.9863,5e-6 -0.9863,7e-6 v 0.812003 0.812003 l -0.92828,0.0356 c -0.51056,0.01958 -1.25463,0.003 -1.6535,-0.0369 l -0.72522,-0.07252 v -0.697035 -0.697036 l 1.42143,0.02339 1.42144,0.02339 -1.10234,-0.08872 c -0.60628,-0.04879 -1.50772,-0.09436 -2.0032,-0.101258 l -0.90085,-0.01253 0.0183,0.979771 0.0183,0.97977 h 4.941 4.941 l 0.0265,0.839802 c 0.0678,2.153406 0.13404,2.923439 0.29954,3.483 0.23251,0.786105 0.43591,1.936461 0.55225,3.123451 0.0513,0.523479 0.0978,0.970093 0.10334,0.99248 0.005,0.02239 0.17981,0.0075 0.38722,-0.0333 0.20741,-0.04071 0.54681,-0.102327 0.75423,-0.136932 l 0.37711,-0.06293 0.022,-1.527389 c 0.0122,-0.840065 0.0274,-2.646396 0.0338,-4.014068 0.007,-1.367674 0.0383,-2.512383 0.0709,-2.543799 0.0533,-0.05142 17.3166,-0.249416 19.91517,-0.228411 0.58858,0.0047 1.10744,0.04463 1.153,0.08861 0.0456,0.04398 0.0963,1.628385 0.11277,3.52091 0.0165,1.892525 0.0661,4.842306 0.11049,6.5550676 0.0551,2.1306821 0.042,3.1513451 -0.0416,3.2320051 -0.0785,0.07572 -0.92466,0.111378 -2.36567,0.09967 -1.79358,-0.01456 -2.21446,0.0099 -2.09862,0.121608 0.0797,0.0769 0.14489,0.406881 0.14489,0.7332851 v 0.593461 l 1.82756,-0.01288 c 1.2905,-0.0091 1.69116,-0.0401 1.36341,-0.105524 -0.25527,-0.05096 -0.81659,-0.09555 -1.24738,-0.09911 -0.65185,-0.0053 -0.78323,-0.03784 -0.78323,-0.193591 0,-0.102925 -0.0847,-0.277407 -0.18813,-0.387737 -0.10345,-0.110331 -0.15732,-0.2780611 -0.11967,-0.3727321 0.0558,-0.14038 0.30317,-0.172131 1.34092,-0.172131 0.69986,0 1.41035,0.05059 1.57885,0.112401 0.27827,0.102097 0.30334,0.160131 0.27323,0.6326621 -0.029,0.454377 4.6e-4,0.532238 0.23195,0.614888 0.41367,0.147674 0.26629,0.46226 -0.2666,0.569105 -0.284,0.05694 -0.49984,0.04825 -0.57377,-0.0231 -0.12712,-0.122677 -2.96223,-0.159114 -3.40812,-0.0438 -0.1436,0.03713 -0.26108,0.144134 -0.26108,0.237778 0,0.308454 -1.00619,1.6512139 -1.4695,1.9610479 -0.37705,0.252155 -0.51279,0.286889 -0.79783,0.204157 -0.34581,-0.100372 -1.23871,-0.488889 -1.56184,-0.679581 -0.0957,-0.0565 -0.7284,-0.43152 -1.40593,-0.833393 -0.67753,-0.4018729 -1.60379,-0.8748699 -2.05835,-1.0511039 -0.45455,-0.176236 -0.91841,-0.399299 -1.0308,-0.495695 -0.11239,-0.09639 -0.78797,-0.461855 -1.50128,-0.8121331 -0.95169,-0.46733 -1.49225,-0.661557 -2.03062,-0.72961 -0.40352,-0.051 -0.89032,-0.143183 -1.08179,-0.204835 -0.19145,-0.06165 -0.72811,-0.141939 -1.19257,-0.178418 -1.19413,-0.09379 -1.23572,0.09082 -0.21827,0.968464 0.42496,0.3665651 0.77266,0.7157221 0.77266,0.7759041 0,0.192783 0.97048,1.209497 1.45043,1.5195279 0.25529,0.1649 0.56858,0.38659 0.69621,0.492645 0.12765,0.106053 0.64779,0.351637 1.15587,0.54574 0.7458,0.284916 1.09234,0.505681 1.79854,1.1457971 0.49723,0.450695 1.02197,1.05469296 1.21587,1.39951696 0.30043,0.534304 0.34193,0.722483 0.3481,1.57831604 0.008,0.981835 -0.21104,1.712362 -0.64193,2.150071 -0.0898,0.09124 -0.34848,0.400197 -0.57479,0.686555 -0.3954,0.500298 -0.40838,0.546248 -0.33216,1.175423 0.0807,0.6662 0.51104,2.3507141 0.91101,3.5660871 0.1216,0.369515 0.31145,0.974172 0.42187,1.3436871 0.11044,0.369512 0.27994,0.890504 0.37668,1.157757 0.17198,0.47516 0.18507,0.484337 0.59127,0.414597 0.22847,-0.03923 0.83686,-0.09893 1.35199,-0.132671 1.27298,-0.08339 2.41475,0.24704 3.70482,1.072159 0.25528,0.163273 0.92883,0.4882 1.49679,0.722058 0.56797,0.233856 1.40342,0.591283 1.85657,0.794282 2.26839,1.016175 2.961,1.290571 3.25759,1.290571 0.40384,0 1.01498,0.355592 1.20738,0.702502 0.10584,0.1909 0.13547,0.83615 0.10876,2.3712 -0.0366,2.10165 -0.0377,2.10965 -0.32679,2.31522 -0.31197,0.22185 -1.43109,0.43475 -2.70678,0.51494 -0.63967,0.0402 -0.83515,0.0123 -1.0153,-0.14504 -0.49762,-0.43457 -0.16592,-0.9164 1.02992,-1.49609 0.27434,-0.13299 0.52871,-0.317 0.56526,-0.40892 0.11092,-0.27891 -0.32142,-1.19726 -0.76829,-1.63194 -0.33,-0.32101 -0.54536,-0.42591 -0.99657,-0.48543 -0.31657,-0.0418 -1.17607,-0.16687 -1.90999,-0.27804 -0.73392,-0.11117 -1.80435,-0.26299 -2.37873,-0.33739 -0.57437,-0.0744 -1.3315,-0.18526 -1.68251,-0.24637 -0.65497,-0.11404 -2.63261,-0.36375 -4.17727,-0.52746 -1.45019,-0.153694 -1.91589,-0.31667 -2.38774,-0.835618 -0.41765,-0.45934 -2.25366,-2.842637 -2.25366,-2.925448 0,-0.0237 -0.46587,-0.746028 -1.03527,-1.60517 -0.56939,-0.8591391 -1.14965,-1.7819201 -1.28948,-2.0506241 -0.13982,-0.268703 -0.34631,-0.589328 -0.45886,-0.712499 -0.11255,-0.123172 -0.23956,-0.412903 -0.28225,-0.643848 -0.0427,-0.2309471 -0.14051,-0.4257051 -0.21739,-0.4327961 -0.43941,-0.04053 -1.11531,0.162537 -2.43479,0.7315221 -0.36878,0.159023 -0.76041,0.290846 -0.87027,0.292934 -0.10987,0.0021 -0.40862,0.101154 -0.66389,0.220149 -0.25528,0.118992 -0.57584,0.218059 -0.71237,0.220148 -0.13653,0.0021 -0.36559,0.09551 -0.50904,0.207602 -0.23755,0.185619 -0.24858,0.23959 -0.12362,0.604975 0.0895,0.261481 0.11826,0.882589 0.0827,1.7837311 -0.0551,1.402154 -0.10009,1.605704 -0.87403,3.957956 -0.18236,0.554269 -0.44808,1.385676 -0.5905,1.847566 -0.14243,0.46189 -0.3105,0.96577 -0.37349,1.11974 -0.15343,0.37497 -0.35632,1.54195 -0.3407,1.95954 0.007,0.18476 0.0431,0.78941 0.0804,1.34368 0.0656,0.97322 0.0575,1.01828 -0.23284,1.3144 -0.1654,0.16864 -0.41666,0.32989 -0.55836,0.35832 -0.1417,0.0284 -1.30195,0.0814 -2.57833,0.1178 -1.27639,0.0364 -2.55568,0.11227 -2.84287,0.16868 -0.59979,0.11781 -1.61142,0.12195 -2.2086,0.009 z m 2.20119,-0.64922 c 0.66758,-0.13542 1.29141,-0.16137 2.75638,-0.11468 1.81087,0.0577 1.90995,0.0497 2.27009,-0.1851 0.37641,-0.24535 0.37657,-0.24585 0.35076,-1.13622 -0.0142,-0.48992 -0.0348,-1.04193 -0.0459,-1.22669 -0.0403,-0.67197 0.33123,-2.08708 1.23477,-4.702895 0.81319,-2.354264 0.99224,-3.04229 1.00533,-3.863095 0.0144,-0.905169 -0.16414,-2.5688601 -0.29819,-2.7781691 -0.15956,-0.249129 0.14079,-0.549006 0.61078,-0.609839 0.38005,-0.0492 1.72779,-0.476065 2.74068,-0.8680661 0.28434,-0.110044 1.70803,-0.608035 2.26268,-0.791461 0.22337,-0.07386 0.54699,-0.204193 0.71915,-0.289609 0.38259,-0.189818 1.74289,-0.645232 2.76191,-0.924652 3.6055,-0.988647 3.88843,-1.123463 4.44093,-2.116133 0.53075,-0.953597 0.59976,-1.96753404 0.18957,-2.78521804 -0.26658,-0.531402 -1.48626,-1.46625596 -2.33773,-1.79180796 -0.27182,-0.1039251 -0.54644,-0.2510041 -0.61025,-0.3268291 -0.0638,-0.07582 -0.48155,-0.431725 -0.92829,-0.79089 -1.20371,-0.9677559 -1.3076,-1.0522679 -2.00904,-1.6343179 -0.3543,-0.294 -0.85693,-0.664425 -1.11694,-0.823163 -0.48537,-0.296325 -1.57498,-1.7156761 -1.57166,-2.0473131 0.003,-0.311693 0.19582,-0.4888721 0.53713,-0.4938091 1.08437,-0.01569 3.51089,0.1935921 3.80122,0.3278401 0.18531,0.0857 0.54907,0.155794 0.80837,0.155794 0.55611,0 1.3832,0.278223 1.87214,0.629769 0.19175,0.137859 0.47892,0.305127 0.6382,0.371704 0.15926,0.06657 0.45145,0.215958 0.6493,0.331958 0.19785,0.115998 0.6939,0.3860581 1.10234,0.6001331 1.12738,0.590901 2.51882,1.44554 3.39276,2.0838719 0.44101,0.322109 0.90786,0.573486 1.06507,0.573486 0.15395,0 0.45832,-0.151163 0.67638,-0.335919 0.21806,-0.184758 0.44676,-0.335922 0.50821,-0.335922 0.19892,0 0.51732,-0.4254069 0.47545,-0.6352309 -0.0313,-0.156814 -0.19378,-0.222448 -0.70247,-0.283767 -0.90409,-0.108985 -2.53903,-0.681585 -3.13637,-1.098452 -1.25268,-0.8742151 -4.28057,-2.7312372 -4.95947,-3.0416712 -2.25036,-1.028993 -2.66166,-1.211411 -2.73139,-1.211411 -0.042,0 -0.24094,-0.07214 -0.44204,-0.1603046 -2.17813,-0.954952 -2.93337,-1.130746 -3.91168,-0.910506 -1.1182,0.251725 -1.56057,0.657813 -1.27586,1.1711946 0.20807,0.375171 0.15378,0.795407 -0.1028,0.795407 -0.12387,0 -0.26747,-0.06297 -0.3191,-0.139968 -0.0517,-0.07699 -0.12845,-0.8957886 -0.17071,-1.8195726 -0.13887,-3.035664 -0.86319,-5.501816 -1.9321,-6.578457 -0.74124,-0.746603 -1.06778,-0.464036 -0.36892,0.319248 0.52052,0.583408 0.89892,1.452879 1.2621,2.899997 0.36052,1.436535 0.47949,2.075851 0.47926,2.575397 -1.2e-4,0.307928 0.079,0.706506 0.17583,0.885732 0.10204,0.188893 0.19565,0.73015 0.22262,1.2876956 0.0256,0.529011 0.0838,1.276762 0.12939,1.6616721 0.058,0.489447 0.0439,0.699836 -0.0471,0.699836 -0.0714,0 -0.16083,-0.138567 -0.19859,-0.307927 -0.0378,-0.169361 -0.15308,-0.5011131 -0.25629,-0.7372261 -0.10324,-0.236115 -0.18339,-0.689608 -0.17819,-1.007764 0.005,-0.318156 -0.0639,-0.715985 -0.15377,-0.8840616 -0.0898,-0.168078 -0.19088,-0.593907 -0.22466,-0.946286 -0.0338,-0.35238 -0.10421,-0.693548 -0.1566,-0.758154 -0.0523,-0.06461 -0.12333,-0.395507 -0.15775,-0.735335 -0.0344,-0.33983 -0.14907,-0.894099 -0.25478,-1.231712 -0.10574,-0.337613 -0.28002,-0.890976 -0.38734,-1.229698 -0.2115,-0.667553 -0.59581,-1.388067 -0.69125,-1.295974 -0.071,0.06852 0.4286,1.642 0.56971,1.794259 0.0542,0.05851 0.0986,0.275158 0.0986,0.481449 0,0.206291 0.0722,0.511139 0.16052,0.677441 0.0882,0.166302 0.1974,0.629891 0.24249,1.030197 0.0451,0.400306 0.13367,0.929382 0.19685,1.175725 0.0632,0.246341 0.16295,0.901388 0.22175,1.4556566 0.3033,2.8592291 0.48885,3.5188691 0.99174,3.5254591 0.072,8.95e-4 0.19295,0.07392 0.26885,0.162184 0.11097,0.1290341 0.0831,0.1951381 -0.1419,0.3374471 -0.24892,0.157392 -0.3248,0.15887 -0.68569,0.01335 -0.22318,-0.08999 -0.51634,-0.135721 -0.65145,-0.101625 -0.32077,0.08095 -0.82784,-0.4468871 -1.18129,-1.2296671 -0.14396,-0.31881 -0.33385,-0.713399 -0.42197,-0.876867 -0.0882,-0.1634671 -0.16025,-0.4580391 -0.16025,-0.6546091 0,-0.374711 -0.31598,-1.5628946 -0.45421,-1.7079756 -0.0442,-0.04641 -0.1718,-0.01992 -0.2835,0.05889 -0.16394,0.115681 -0.21163,0.3585066 -0.2475,1.2601226 -0.0749,1.8824561 -0.0692,5.5454111 0.009,5.6672111 0.10855,0.169513 0.80226,0.443442 4.39944,1.7372611 l 3.24899,1.16858196 1.12398,-0.07489 c 1.38132,-0.09203 1.74803,-0.02274 1.6974,0.320822 -0.0327,0.221549 -0.14167,0.261745 -1.02283,0.377083 -1.06741,0.139716 -1.63215,0.313855 -2.65063,0.81731504 -0.36101,0.17846 -0.83914,0.405183 -1.0625,0.503834 -0.84247,0.372076 -2.8755,1.701482 -4.11926,2.693597 -1.62463,1.295947 -3.22782,2.709535 -3.31026,2.9187951 -0.0551,0.139883 -0.13272,2.760043 -0.17245,5.8225811 -0.0817,6.299253 -0.0634,6.168693 -0.95839,6.828143 -0.28807,0.21226 -0.59104,0.38593 -0.67327,0.38593 -0.0822,0 -0.80242,0.32702 -1.60041,0.72673 -0.798,0.3997 -1.74043,0.83126 -2.09429,0.95902 -0.67017,0.24197 -0.82675,0.36489 -0.70566,0.55396 0.0799,0.12476 0.60091,0.0721 1.90702,-0.19288 z m 34.4352,-1.76719 c 0.77012,-0.19257 0.99652,-0.40761 0.87343,-0.82962 -0.10892,-0.37347 -0.0624,-1.87138 0.0649,-2.09094 0.13969,-0.24089 -0.0214,-1.27876 -0.21694,-1.39794 -0.0905,-0.0551 -0.45174,-0.0919 -0.80275,-0.0818 -0.56599,0.0164 -0.80886,-0.0613 -2.14665,-0.686572 -0.82966,-0.387788 -1.61289,-0.747036 -1.74053,-0.798332 -0.48027,-0.193013 -1.89871,-0.823621 -3.07493,-1.367051 -0.6701,-0.309596 -1.40113,-0.609453 -1.6245,-0.66635 -0.99333,-0.253018 -1.62886,-0.311124 -2.11496,-0.193369 -1.78773,0.433081 -1.83059,0.42216 -2.09446,-0.533754 -0.0984,-0.3563 -0.29008,-1.000537 -0.42604,-1.431635 -0.13597,-0.4310991 -0.35225,-1.1617281 -0.48062,-1.6236201 -0.12837,-0.46189 -0.31756,-1.142132 -0.42043,-1.511645 -0.10291,-0.3695141 -0.29125,-0.8419201 -0.41864,-1.0497931 -0.13553,-0.221145 -0.22452,-0.552707 -0.21451,-0.799179 0.0279,-0.686751 -0.15462,-0.746528 -1.43204,-0.469049 -0.60114,0.130577 -1.31669,0.334821 -1.59011,0.45388 -0.64197,0.279533 -1.55942,0.576442 -1.78121,0.576442 -0.30919,0 -0.31014,0.313299 -0.003,0.960827 0.1654,0.3486291 0.30072,0.6742871 0.30072,0.7236861 0,0.382555 2.65455,4.4406611 4.01627,6.1398091 0.79197,0.988212 1.19392,1.188433 2.59774,1.294018 0.54246,0.0408 1.56067,0.175505 2.26268,0.29935 0.70202,0.123843 1.85076,0.271623 2.55278,0.328398 0.70201,0.05678 1.46876,0.161569 1.70387,0.232879 0.2429,0.0737 0.63576,0.0975 0.9098,0.0552 0.29456,-0.0454 0.7379,-0.0113 1.13898,0.0877 0.36118,0.0892 0.94387,0.21835 1.29488,0.28708 0.8094,0.1585 1.59858,0.54435 1.8938,0.92592 0.23093,0.29848 0.39396,0.91542 0.50596,1.91467 0.0505,0.45069 0.0185,0.58384 -0.19311,0.80113 -0.13954,0.14333 -0.43204,0.29288 -0.65,0.33234 -0.21796,0.0395 -0.3963,0.11985 -0.3963,0.17864 0,0.16207 0.94887,0.12794 1.70586,-0.0614 z m -6.1057,-26.0336062 c 0.37729,0 0.45465,-0.0381 0.45465,-0.223948 0,-0.209729 -0.0774,-0.223947 -1.21837,-0.223947 -0.98878,0 -1.21838,0.03069 -1.21838,0.162888 0,0.101396 0.16427,0.188752 0.43515,0.231403 0.23931,0.03769 0.51345,0.08438 0.60918,0.103742 0.0957,0.01937 0.24359,0.01602 0.32858,-0.0075 0.085,-0.02347 0.35913,-0.04268 0.60919,-0.04268 z m -1.86606,-1.0175051 c 0.4299,-0.04429 0.12883,-0.07169 -0.92248,-0.08398 -1.06144,-0.01241 -1.52278,0.0183 -1.44225,0.09604 0.0651,0.06286 0.45414,0.277002 0.86447,0.475888 l 0.74604,0.3616081 0.058,-0.3919071 c 0.0568,-0.383518 0.0716,-0.393316 0.69621,-0.457637 z m 5.94681,0.7125561 c -0.20741,-0.02484 -0.54682,-0.02484 -0.75423,0 -0.20742,0.02484 -0.0377,0.04516 0.37711,0.04516 0.41483,0 0.58453,-0.02032 0.37712,-0.04516 z m -23.19791,-0.3847361 c 0.0826,-0.126309 0.0459,-0.23692 -0.13675,-0.413238 -0.16619,-0.160375 -0.24974,-0.380958 -0.25022,-0.660662 -3.5e-4,-0.230946 -0.0826,-0.571066 -0.18262,-0.7558241 -0.10009,-0.184757 -0.20686,-0.587862 -0.23734,-0.89579 -0.0525,-0.530887 -0.13809,-0.879713 -0.55911,-2.2803256 -0.0993,-0.330397 -0.1804,-0.78389 -0.18019,-1.007764 6.9e-4,-0.752927 -0.61809,-2.613795 -1.04756,-3.150402 l -0.22404,-0.279934 -0.002,0.30132 c -10e-4,0.165725 0.0456,0.330043 0.10443,0.36515 0.14925,0.08901 0.47267,1.516931 0.47543,2.098992 0.001,0.264978 0.0847,0.884884 0.18534,1.377569 0.10063,0.492683 0.2251,1.298895 0.2765,1.7915786 0.20939,2.0070691 0.44846,2.7207371 1.15233,3.4398591 0.31996,0.3269011 0.44876,0.3411851 0.62637,0.06946 z m 23.90809,-1.213867 c -0.009,-0.21555 -0.0433,-2.8609297 -0.0779,-5.8786227 -0.0346,-3.017693 -0.0986,-5.645278 -0.14212,-5.839078 l -0.0791,-0.352366 -1.9895,-0.07733 c -1.17151,-0.04553 -2.65741,-0.02745 -3.61399,0.04399 -0.89347,0.06672 -4.51764,0.121509 -8.0537,0.12176 l -6.4292,4.55e-4 0.0716,1.993276 c 0.0403,1.121305 0.0201,2.456108 -0.0462,3.051284 -0.0648,0.581905 -0.0844,1.423323 -0.0434,1.869818 l 0.0744,0.81181 h 0.37446 c 0.47779,0 1.99118,0.501853 3.55094,1.177521 0.67011,0.290281 1.67266,0.7213686 2.22789,0.9579776 0.55524,0.236608 1.31238,0.617517 1.68251,0.846463 0.37015,0.228948 0.88186,0.545045 1.13713,0.702439 0.25529,0.1573931 0.67704,0.4383481 0.93725,0.6243411 l 0.47311,0.338169 h 4.98055 4.98054 l -0.0151,-0.391908 z m -28.12813,-0.291213 0.49356,-0.190574 -0.0466,-0.7065861 c -0.0256,-0.388623 -0.0878,-0.746311 -0.13809,-0.794865 -0.0503,-0.04855 -0.59623,-0.09459 -1.21315,-0.102304 -0.78848,-0.0099 -1.25956,-0.07231 -1.58583,-0.210241 -0.394,-0.166567 -0.6694,-0.185166 -1.82238,-0.123077 -0.87071,0.04689 -1.54332,0.02816 -1.87386,-0.05215 l -0.51563,-0.1252876 -0.0798,-1.697152 c -0.14237,-3.027529 -0.13034,-6.029498 0.0258,-6.456037 0.0789,-0.215549 0.19186,-0.845402 0.25092,-1.399672 0.0591,-0.554269 0.21749,-1.298834 0.35205,-1.654587 0.36193,-0.956879 0.2427,-1.108073 -0.84026,-1.06555 l -0.83453,0.03276 0.0277,0.699513 c 0.0152,0.384732 0.13561,1.008724 0.26754,1.386651 0.29297,0.8392 0.32274,1.387167 0.12699,2.336799 -0.2775,1.346275 -0.52691,2.81549 -0.72618,4.277764 -0.0647,0.474411 -0.10107,1.716378 -0.0809,2.759924 0.0441,2.2786666 0.0241,2.2427346 1.47847,2.6554506 0.54724,0.155291 1.30828,0.3820461 1.69119,0.5038991 0.61467,0.195598 0.92187,0.215359 2.62278,0.168715 1.44194,-0.03955 2.05072,-0.100763 2.42013,-0.243407 z m -0.73342,-2.6760917 c 0.0188,-0.06158 -0.19113,-0.275697 -0.46642,-0.475801 -0.33774,-0.245504 -0.64468,-0.627876 -0.94381,-1.175725 -0.2438,-0.446543 -0.51256,-0.937868 -0.59723,-1.091832 -0.0847,-0.153963 -0.15426,-0.410981 -0.15466,-0.571152 -8.4e-4,-0.343705 -0.21623,-1.005346 -0.37906,-1.16444 -0.24893,-0.243205 0.15448,2.462781 0.49532,3.322501 0.30339,0.765258 0.60516,1.107397 1.07413,1.217813 0.47597,0.112056 0.92763,0.08355 0.97173,-0.06136 z m -2.74301,-0.443881 c 0,-0.374471 -0.15942,-0.843817 -0.28661,-0.843817 -0.20646,0 -0.46656,-0.313472 -0.81219,-0.97886 -0.61471,-1.183398 -0.6646,-2.770393 -0.11181,-3.55645 0.15528,-0.220815 0.28233,-0.517404 0.28233,-0.659087 0,-0.376242 0.32056,-0.597581 1.16534,-0.804629 0.41208,-0.100993 0.80145,-0.223623 0.86527,-0.272499 0.0638,-0.04888 0.42934,-0.141461 0.81225,-0.205742 1.18257,-0.19852 1.37817,-0.250133 1.83415,-0.483989 0.28942,-0.14843 0.68951,-0.232268 1.16035,-0.243145 1.14785,-0.02652 1.49403,0.09099 2.20204,0.747465 l 0.63828,0.591811 -0.0611,-0.902539 c -0.0336,-0.496396 -0.0846,-0.927732 -0.11327,-0.958525 -0.0287,-0.0308 -2.14946,-0.04347 -4.71284,-0.02816 -5.20195,0.03106 -4.9508,-0.01047 -4.9508,0.819144 0,0.226742 -0.10671,0.645058 -0.23713,0.92959 -0.26334,0.574475 -0.34065,1.533671 -0.33814,4.194954 0.002,1.811627 0.14041,2.674718 0.43836,2.727744 0.10726,0.01908 0.65182,0.0428 1.21024,0.05271 0.75967,0.01347 1.01531,-0.01824 1.01531,-0.12597 z m 4.52548,-0.284044 c 0.23842,-0.214918 0.34735,-0.3999 0.30226,-0.513279 -0.0388,-0.0975 -0.10487,-0.538347 -0.14693,-0.979674 -0.0482,-0.505767 -0.21975,-1.146249 -0.46405,-1.732475 -0.21318,-0.511533 -0.38931,-0.990223 -0.39141,-1.063752 -0.002,-0.07353 -0.24322,-0.331332 -0.53585,-0.572896 -0.42275,-0.348993 -0.6295,-0.440991 -1.00655,-0.447894 -0.43016,-0.0078 -0.48413,0.02271 -0.57734,0.327234 -0.0566,0.184754 -0.20239,0.52226 -0.32405,0.750012 -0.36589,0.684932 -0.29921,1.518406 0.20189,2.523779 0.89833,1.802349 2.07815,2.487676 2.94203,1.708945 z m -4.98962,-1.959446 c 0,-0.153964 -0.0522,-0.279933 -0.11604,-0.279933 -0.12963,0 -0.15905,0.369061 -0.0386,0.485218 0.12791,0.123434 0.15471,0.08787 0.15471,-0.205285 z m 6.19183,-3.583159 c -0.0367,-0.09238 -0.0873,-0.167961 -0.1124,-0.167961 -0.0251,0 -0.0456,0.07558 -0.0456,0.167961 0,0.09238 0.0506,0.16796 0.11239,0.16796 0.0618,0 0.0824,-0.07558 0.0456,-0.16796 z m 8.26697,-4.040213 c -0.0387,-0.09742 -0.0704,-0.372315 -0.0704,-0.610889 v -0.43377 l -0.47874,0.162994 c -0.26329,0.08964 -0.78546,0.162993 -1.16035,0.162993 h -0.68162 v 0.447895 0.447895 h 1.23078 c 1.07464,0 1.22186,-0.02247 1.16036,-0.177118 z m -11.74165,-0.118842 c 0.0403,-0.101189 0.0588,-0.194987 0.0415,-0.208432 -0.0175,-0.01344 -0.5704,-0.05472 -1.22876,-0.09171 -1.07729,-0.06054 -1.1933,-0.04859 -1.15975,0.119541 0.049,0.245537 0.43451,0.339821 1.44509,0.35343 0.66882,0.009 0.84296,-0.02436 0.902,-0.172827 z m 5.58252,-0.123712 c -0.044,-0.169234 -0.0888,-0.313748 -0.0997,-0.321142 -0.0109,-0.0074 -0.58089,-0.03986 -1.26695,-0.07215 -1.23868,-0.05829 -1.24738,-0.05692 -1.24738,0.196458 0,0.223194 0.0836,0.268983 0.66721,0.365474 0.36695,0.06067 0.97309,0.116779 1.34698,0.124684 l 0.67978,0.01438 -0.08,-0.307699 z m 12.9609,-0.131115 c -0.0502,-0.329707 -0.0769,-0.345003 -0.60245,-0.345003 -0.30249,0 -0.87094,-0.03237 -1.26321,-0.07193 l -0.71324,-0.07194 v 0.33321 c 0,0.183267 0.0224,0.354206 0.0497,0.379867 0.0274,0.02566 0.61941,0.06334 1.3157,0.08373 l 1.26595,0.03708 -0.0524,-0.345003 z m 3.40297,0.270853 c -0.051,-0.328695 -0.13633,-0.503882 -0.24524,-0.503882 -0.28198,0 -0.18486,-0.33489 0.13071,-0.450666 0.1637,-0.06006 0.94041,-0.109204 1.72601,-0.109204 h 1.42839 l 0.0725,0.349917 c 0.11129,0.536989 0.0867,0.935232 -0.0668,1.083346 -0.093,0.0898 -0.6082,0.134369 -1.5533,0.134369 h -1.41406 l -0.0783,-0.503882 z m 2.60474,-0.335922 c 0,-0.269322 -0.028,-0.279934 -0.73973,-0.279934 -1.09717,0 -1.44952,0.08869 -1.37946,0.34723 0.0511,0.188739 0.17348,0.21264 1.08841,0.21264 1.02214,0 1.03078,-0.0023 1.03078,-0.279936 z m 2.98329,0.758872 c -0.96694,-0.03782 -1.02572,-0.05458 -1.13134,-0.322691 -0.0612,-0.155539 -0.11143,-0.482494 -0.11143,-0.726564 v -0.443765 l 1.59549,0.03115 1.59548,0.03115 v 0.727829 0.727829 l -0.46413,0.0075 c -0.25529,0.0041 -0.92311,-0.01047 -1.48407,-0.03242 z m 1.42604,-0.758872 c 0,-0.278756 -0.004,-0.279934 -1.09147,-0.279934 -1.02375,0 -1.08781,0.0135 -1.0325,0.217611 0.0659,0.243053 0.31206,0.300341 1.39875,0.325481 0.70085,0.01621 0.72522,0.0074 0.72522,-0.263158 z"
+ id="path3954"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer86"
+ inkscape:label="Layer 3"
+ style="display:inline">
+ <rect
+ style="fill:#252525;fill-opacity:1;stroke:none"
+ id="rect3594-5"
+ width="256"
+ height="26"
+ x="0"
+ y="0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ y="24.999996"
+ x="0"
+ height="1"
+ width="256"
+ id="rect3592-7"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none"
+ id="rect2818-1"
+ width="256"
+ height="1"
+ x="0"
+ y="0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#4d4d4d;fill-opacity:1;stroke:none"
+ x="-102.62055"
+ y="-12.398429"
+ id="text1493"><tspan
+ sodipodi:role="line"
+ id="tspan1491"
+ x="-102.62055"
+ y="-12.398429">menubar_bg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-96.080376"
+ y="17.702562"
+ id="text1497"><tspan
+ sodipodi:role="line"
+ id="tspan1495"
+ x="-96.080376"
+ y="17.702562">mbutton_bg</tspan></text>
+ <g
+ id="g1571"
+ transform="translate(103.25126,63.176933)">
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2825-5"
+ width="256"
+ height="26"
+ x="-103.25127"
+ y="-89.176933" />
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ style="fill:#3b3b3b;fill-opacity:1;stroke:none"
+ id="rect2827-7"
+ width="256"
+ height="1"
+ x="-103.25127"
+ y="-89.176933" />
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ y="-64.176933"
+ x="-103.25127"
+ height="1"
+ width="256"
+ id="rect2829-0"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ y="-89.176933"
+ x="151.42249"
+ height="26"
+ width="1.3262551"
+ id="rect1501-8"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98017859;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#4d4d4d;fill-opacity:1;stroke:none"
+ x="-93.082443"
+ y="107.33093"
+ id="text1537"><tspan
+ sodipodi:role="line"
+ id="tspan1535"
+ x="-93.082443"
+ y="107.33093">statusbar</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="160"
+ height="25"
+ sodipodi:docname="mclock_flat.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mclock_flat.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient175234"
+ id="linearGradient38897"
+ x1="-5e-07"
+ y1="12.5"
+ x2="320"
+ y2="12.5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.078125,0,0,4.3878934,-24.999998,50.302633)" />
+ <linearGradient
+ id="linearGradient175234">
+ <stop
+ id="stop175230"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop175232"
+ offset="1"
+ style="stop-color:#474747;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.6255407"
+ inkscape:cx="76.422732"
+ inkscape:cy="16.051604"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer88"
+ showborder="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer87"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="160"
+ height="25"
+ x="0"
+ y="0"
+ ry="0.6919921" />
+ <path
+ id="path2932"
+ d="m 148.75451,0 c 0.37791,1.505956 0.59375,3.0420442 0.59375,4.59375 0,7.455359 -4.50167,14.420164 -12.3125,20.40625 h 21.09375 c 0.38336,0 0.6875,-0.304136 0.6875,-0.6875 V 0.6875 C 158.81701,0.30413637 158.51287,0 158.12951,0 Z"
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="m 149.9375,0 c 0.37791,1.505956 0.59375,3.0420442 0.59375,4.59375 0,7.455359 -4.50167,14.420164 -12.3125,20.40625 H 159.3125 C 159.69586,25 160,24.695864 160,24.3125 V 0.6875 C 160,0.30413637 159.69586,0 159.3125,0 Z"
+ id="rect2926"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="160"
+ height="1"
+ x="0"
+ y="24" />
+ <rect
+ y="24"
+ x="138"
+ height="1"
+ width="22"
+ id="rect2934"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect3645"
+ width="10.0779"
+ height="1"
+ x="149.92209"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer88"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#linearGradient38897);fill-opacity:1;fill-rule:evenodd;stroke:#232629;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect38889"
+ width="25"
+ height="109.69734"
+ x="-25"
+ y="50.302658"
+ transform="rotate(-90)" />
+ <rect
+ style="fill:#121212;fill-opacity:1;stroke:none;stroke-width:0.97455245"
+ id="rect3594-8"
+ width="151.96037"
+ height="25"
+ x="0.028389869"
+ y="4.9999997e-08"
+ ry="0.6919921" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path2932-2"
+ d="m 121.90199,69.175417 c 0.36344,-1.505956 0.57103,-3.042044 0.57103,-4.59375 0,-7.455359 -4.32958,-14.420164 -11.84185,-20.40625 h 20.28744 c 0.36869,0 0.66122,0.304136 0.66122,0.6875 v 23.625 c 0,0.383364 -0.29253,0.6875 -0.66122,0.6875 z"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.98070103" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.98070103"
+ d="m 121.90199,69.175417 c 0.36345,-1.505956 0.57105,-3.042044 0.57105,-4.59375 0,-7.455359 -4.32959,-14.420164 -11.84185,-20.40625 h 20.28743 c 0.36872,0 0.66122,0.304136 0.66122,0.6875 v 23.625 c 0,0.383364 -0.2925,0.6875 -0.66122,0.6875 z"
+ id="rect2926-4" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.97455245"
+ id="rect2818-0"
+ width="151.96037"
+ height="1"
+ x="0.028389869"
+ y="24" />
+ <rect
+ y="24"
+ x="130.82974"
+ height="1"
+ width="21.159039"
+ id="rect2934-4"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.98070103" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.98070103"
+ id="rect3645-6"
+ width="9.692667"
+ height="1"
+ x="118.44997"
+ y="44.024517" />
+ <path
+ style="fill:#666666;stroke:#454545;stroke-width:1.15620375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 151.42181,-5.0000002e-8 V 25"
+ id="path834-2"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="151.20445"
+ y="-22.041384"
+ id="text867"><tspan
+ sodipodi:role="line"
+ id="tspan865"
+ x="151.20445"
+ y="-22.041384">Fix mit timebar_bg_flat</tspan></text>
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.97073561"
+ id="rect2818-0-9"
+ width="150.7724"
+ height="1"
+ x="0"
+ y="1" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.97073561"
+ id="rect2818-0-9-4"
+ width="150.7724"
+ height="1"
+ x="0"
+ y="0" />
+ <path
+ style="fill:#666666;stroke:#262626;stroke-width:2.94210315;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 1.4710516,4.9999997e-8 V 25"
+ id="path834"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 3.4662075,1.7080195 V 23.930127"
+ id="path899"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="256"
+ sodipodi:docname="menu_popup_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menu_popup_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3594">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3596" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3598" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3600"
+ x1="266"
+ y1="137.82355"
+ x2="241"
+ y2="137.7524"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.6,0,0,1,96.4,0)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="2.3632813"
+ inkscape:cx="128"
+ inkscape:cy="128"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer69"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer68"
+ inkscape:label="Layer 1" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer69"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-4-2"
+ width="256"
+ height="256"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.99413866"
+ id="rect2818-4"
+ width="254"
+ height="255"
+ x="1"
+ y="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.5438"
+ y="-53.315701"
+ id="text885"><tspan
+ sodipodi:role="line"
+ id="tspan883"
+ x="-35.5438"
+ y="-53.315701">Schatten 1px l,r,u</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="26"
+ sodipodi:docname="menubar_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#ff3ff6"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.1621094"
+ inkscape:cx="8.6709459"
+ inkscape:cy="-9.1135182"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer83"
+ showborder="true"
+ inkscape:showpageshadow="false"
+ borderlayer="true"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid129659" />
+ <sodipodi:guide
+ position="-21.504632,-100.24954"
+ orientation="0,1"
+ id="guide1553"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer82"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="256"
+ height="26"
+ x="0"
+ y="26" />
+ <rect
+ y="51"
+ x="0"
+ height="1"
+ width="256"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ y="0"
+ x="0"
+ height="26"
+ width="256"
+ id="rect2825"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="256"
+ height="1"
+ x="0"
+ y="26" />
+ <rect
+ y="0"
+ x="0"
+ height="1"
+ width="256"
+ id="rect2827"
+ style="fill:#666666;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2829"
+ width="256"
+ height="1"
+ x="0"
+ y="25" />
+ <path
+ style="opacity:0.39175259;fill:#80ffb3"
+ d="m 215.94898,48.917883 c -0.54803,-0.10363 -0.64874,-0.17494 -0.78685,-0.55726 -0.15816,-0.43781 0.0733,-0.74533 0.63801,-0.84756 0.96577,-0.17484 4.25667,-1.84107 4.98671,-2.52484 l 0.47337,-0.44338 0.0165,-5.012136 c 0.0172,-5.192947 0.0692,-6.414984 0.2899,-6.815708 0.14657,-0.266017 1.00548,-1.034507 2.61688,-2.341415 1.18248,-0.959033 1.26049,-1.015875 2.90876,-2.119403 0.60629,-0.405911 1.36015,-0.916188 1.67527,-1.133947 0.31511,-0.217762 0.80273,-0.45524 1.08359,-0.527731 0.28086,-0.0725 0.56056,-0.221773 0.62154,-0.331738 0.12101,-0.218184 -0.13627,-0.355711 -1.58185,-0.845593 -1.24196,-0.420875 -2.89688,-1.058933 -3.8786,-1.495414 -1.5701,-0.698065 -2.01975,-1.185205 -1.75935,-1.906029 0.11062,-0.306228 0.0875,-1.582537 -0.0463,-2.555626 -0.0191,-0.139387 -0.3667,-0.178099 -2.04293,-0.227553 -1.11091,-0.03278 -2.08729,-0.100038 -2.16974,-0.14948 -0.0825,-0.04944 -0.52629,-0.129754 -0.9863,-0.178484 -0.46001,-0.04873 -0.99304,-0.143222 -1.18449,-0.209986 -0.19147,-0.06676 -0.69871,-0.210427 -1.12721,-0.319251 -0.53626,-0.136188 -0.903,-0.310657 -1.1766,-0.559746 l -0.39749,-0.361883 -0.0857,-2.095146 c -0.0849,-2.076031 -0.0379,-2.836714 0.33516,-5.4162394 0.16984,-1.174597 0.36493,-1.993077 0.60756,-2.548943 0.27022,-0.6190879 0.32933,-1.2400479 0.13869,-1.4569759 -0.29145,-0.33166 -0.55711,-1.183677 -0.55711,-1.786768 0,-0.524338 0.0362,-0.605125 0.38806,-0.864053 0.33291,-0.245039 0.50673,-0.2856319 1.22307,-0.2856319 0.67822,0 0.90492,0.0473 1.20742,0.2519409 0.20482,0.138567 0.38982,0.289732 0.41108,0.335921 0.0587,0.127513 7.32139,0.09921 9.82433,-0.03828 1.24067,-0.06816 7.0373,-0.129104 13.257,-0.139392 l 11.05235,-0.01828 1e-5,0.251941 1e-5,0.251941 h -2.708 c -3.99436,0 -8.74417,0.134204 -8.45121,0.238785 0.22463,0.08018 0.2519,0.17224 0.2519,0.850162 v 0.760242 l -1.76868,-0.02099 -1.7687,-0.02099 -0.0926,-0.42772 c -0.14779,-0.682737 -0.0635,-1.075841 0.26494,-1.235324 0.24448,-0.118722 -0.018,-0.141131 -1.66973,-0.142521 l -1.95983,-0.0016 0.0864,0.643848 c 0.0476,0.354118 0.094,0.795015 0.10324,0.979772 l 0.0168,0.335921 h -1.74052 -1.74053 v -0.688767 c 0,-0.378821 -0.0392,-0.72734 -0.0871,-0.774484 -0.0479,-0.04715 -0.0871,-0.160148 -0.0871,-0.251117 0,-0.137188 0.15338,-0.154424 0.89927,-0.101062 0.49461,0.03539 1.00371,0.01904 1.13135,-0.03631 0.13984,-0.06065 -1.01302,-0.07444 -2.90088,-0.03469 -1.72313,0.03627 -3.18517,0.113137 -3.24899,0.170794 -0.0727,0.06569 0.17819,0.09579 0.67197,0.08063 0.4334,-0.01332 0.82964,0.02159 0.88052,0.07757 0.0509,0.05598 0.0618,0.404105 0.0242,0.773618 l -0.0683,0.671843 -0.69621,0.02919 c -0.38291,0.01605 -1.19226,-0.0092 -1.79855,-0.05598 l -1.10233,-0.08517 v -0.756023 -0.756022 l -0.9863,5e-6 -0.9863,7e-6 v 0.812003 0.812003 l -0.92828,0.0356 c -0.51056,0.01958 -1.25463,0.003 -1.6535,-0.0369 l -0.72522,-0.07252 v -0.697035 -0.697036 l 1.42143,0.02339 1.42144,0.02339 -1.10234,-0.08872 c -0.60628,-0.04879 -1.50772,-0.09436 -2.0032,-0.101258 l -0.90085,-0.01253 0.0183,0.979771 0.0183,0.97977 h 4.941 4.941 l 0.0265,0.839802 c 0.0678,2.1534059 0.13404,2.9234389 0.29954,3.4830003 0.23251,0.786105 0.43591,1.936461 0.55225,3.123451 0.0513,0.523479 0.0978,0.970093 0.10334,0.99248 0.005,0.02239 0.17981,0.0075 0.38722,-0.0333 0.20741,-0.04071 0.54681,-0.102327 0.75423,-0.136932 l 0.37711,-0.06293 0.022,-1.527389 c 0.0122,-0.840065 0.0274,-2.646396 0.0338,-4.0140684 0.007,-1.367674 0.0383,-2.5123829 0.0709,-2.5437989 0.0533,-0.05142 17.3166,-0.249416 19.91517,-0.228411 0.58858,0.0047 1.10744,0.04463 1.153,0.08861 0.0456,0.04398 0.0963,1.6283849 0.11277,3.5209099 0.0165,1.8925254 0.0661,4.8423064 0.11049,6.5550684 0.0551,2.130682 0.042,3.151345 -0.0416,3.232005 -0.0785,0.07572 -0.92466,0.111378 -2.36567,0.09967 -1.79358,-0.01456 -2.21446,0.0099 -2.09862,0.121608 0.0797,0.0769 0.14489,0.406881 0.14489,0.733285 v 0.593461 l 1.82756,-0.01288 c 1.2905,-0.0091 1.69116,-0.0401 1.36341,-0.105524 -0.25527,-0.05096 -0.81659,-0.09555 -1.24738,-0.09911 -0.65185,-0.0053 -0.78323,-0.03784 -0.78323,-0.193591 0,-0.102925 -0.0847,-0.277407 -0.18813,-0.387737 -0.10345,-0.110331 -0.15732,-0.278061 -0.11967,-0.372732 0.0558,-0.14038 0.30317,-0.172131 1.34092,-0.172131 0.69986,0 1.41035,0.05059 1.57885,0.112401 0.27827,0.102097 0.30334,0.160131 0.27323,0.632662 -0.029,0.454377 4.6e-4,0.532238 0.23195,0.614888 0.41367,0.147674 0.26629,0.46226 -0.2666,0.569105 -0.284,0.05694 -0.49984,0.04825 -0.57377,-0.0231 -0.12712,-0.122677 -2.96223,-0.159114 -3.40812,-0.0438 -0.1436,0.03713 -0.26108,0.144134 -0.26108,0.237778 0,0.308454 -1.00619,1.651214 -1.4695,1.961048 -0.37705,0.252155 -0.51279,0.286889 -0.79783,0.204157 -0.34581,-0.100372 -1.23871,-0.488889 -1.56184,-0.679581 -0.0957,-0.0565 -0.7284,-0.43152 -1.40593,-0.833393 -0.67753,-0.401873 -1.60379,-0.87487 -2.05835,-1.051104 -0.45455,-0.176236 -0.91841,-0.399299 -1.0308,-0.495695 -0.11239,-0.09639 -0.78797,-0.461855 -1.50128,-0.812133 -0.95169,-0.46733 -1.49225,-0.661557 -2.03062,-0.72961 -0.40352,-0.051 -0.89032,-0.143183 -1.08179,-0.204835 -0.19145,-0.06165 -0.72811,-0.141939 -1.19257,-0.178418 -1.19413,-0.09379 -1.23572,0.09082 -0.21827,0.968464 0.42496,0.366565 0.77266,0.715722 0.77266,0.775904 0,0.192783 0.97048,1.209497 1.45043,1.519528 0.25529,0.1649 0.56858,0.38659 0.69621,0.492645 0.12765,0.106053 0.64779,0.351637 1.15587,0.54574 0.7458,0.284916 1.09234,0.505681 1.79854,1.145797 0.49723,0.450695 1.02197,1.054693 1.21587,1.399517 0.30043,0.534304 0.34193,0.722483 0.3481,1.578316 0.008,0.981835 -0.21104,1.712362 -0.64193,2.150071 -0.0898,0.09124 -0.34848,0.400197 -0.57479,0.686555 -0.3954,0.500298 -0.40838,0.546248 -0.33216,1.175423 0.0807,0.6662 0.51104,2.350714 0.91101,3.566087 0.1216,0.369515 0.31145,0.974172 0.42187,1.343687 0.11044,0.369512 0.27994,0.890504 0.37668,1.157757 0.17198,0.47516 0.18507,0.484337 0.59127,0.414597 0.22847,-0.03923 0.83686,-0.09893 1.35199,-0.132671 1.27298,-0.08339 2.41475,0.24704 3.70482,1.072159 0.25528,0.163273 0.92883,0.4882 1.49679,0.722058 0.56797,0.233856 1.40342,0.591283 1.85657,0.794282 2.26839,1.016175 2.961,1.290571 3.25759,1.290571 0.40384,0 1.01498,0.355592 1.20738,0.702502 0.10584,0.1909 0.13547,0.83615 0.10876,2.3712 -0.0366,2.10165 -0.0377,2.10965 -0.32679,2.31522 -0.31197,0.22185 -1.43109,0.43475 -2.70678,0.51494 -0.63967,0.0402 -0.83515,0.0123 -1.0153,-0.14504 -0.49762,-0.43457 -0.16592,-0.9164 1.02992,-1.49609 0.27434,-0.13299 0.52871,-0.317 0.56526,-0.40892 0.11092,-0.27891 -0.32142,-1.19726 -0.76829,-1.63194 -0.33,-0.32101 -0.54536,-0.42591 -0.99657,-0.48543 -0.31657,-0.0418 -1.17607,-0.16687 -1.90999,-0.27804 -0.73392,-0.11117 -1.80435,-0.26299 -2.37873,-0.33739 -0.57437,-0.0744 -1.3315,-0.18526 -1.68251,-0.24637 -0.65497,-0.11404 -2.63261,-0.36375 -4.17727,-0.52746 -1.45019,-0.153694 -1.91589,-0.31667 -2.38774,-0.835618 -0.41765,-0.45934 -2.25366,-2.842637 -2.25366,-2.925448 0,-0.0237 -0.46587,-0.746028 -1.03527,-1.60517 -0.56939,-0.859139 -1.14965,-1.78192 -1.28948,-2.050624 -0.13982,-0.268703 -0.34631,-0.589328 -0.45886,-0.712499 -0.11255,-0.123172 -0.23956,-0.412903 -0.28225,-0.643848 -0.0427,-0.230947 -0.14051,-0.425705 -0.21739,-0.432796 -0.43941,-0.04053 -1.11531,0.162537 -2.43479,0.731522 -0.36878,0.159023 -0.76041,0.290846 -0.87027,0.292934 -0.10987,0.0021 -0.40862,0.101154 -0.66389,0.220149 -0.25528,0.118992 -0.57584,0.218059 -0.71237,0.220148 -0.13653,0.0021 -0.36559,0.09551 -0.50904,0.207602 -0.23755,0.185619 -0.24858,0.23959 -0.12362,0.604975 0.0895,0.261481 0.11826,0.882589 0.0827,1.783731 -0.0551,1.402154 -0.10009,1.605704 -0.87403,3.957956 -0.18236,0.554269 -0.44808,1.385676 -0.5905,1.847566 -0.14243,0.46189 -0.3105,0.96577 -0.37349,1.11974 -0.15343,0.37497 -0.35632,1.54195 -0.3407,1.95954 0.007,0.18476 0.0431,0.78941 0.0804,1.34368 0.0656,0.97322 0.0575,1.01828 -0.23284,1.3144 -0.1654,0.16864 -0.41666,0.32989 -0.55836,0.35832 -0.1417,0.0284 -1.30195,0.0814 -2.57833,0.1178 -1.27639,0.0364 -2.55568,0.11227 -2.84287,0.16868 -0.59979,0.11781 -1.61142,0.12195 -2.2086,0.009 z m 2.20119,-0.64922 c 0.66758,-0.13542 1.29141,-0.16137 2.75638,-0.11468 1.81087,0.0577 1.90995,0.0497 2.27009,-0.1851 0.37641,-0.24535 0.37657,-0.24585 0.35076,-1.13622 -0.0142,-0.48992 -0.0348,-1.04193 -0.0459,-1.22669 -0.0403,-0.67197 0.33123,-2.08708 1.23477,-4.702895 0.81319,-2.354264 0.99224,-3.04229 1.00533,-3.863095 0.0144,-0.905169 -0.16414,-2.56886 -0.29819,-2.778169 -0.15956,-0.249129 0.14079,-0.549006 0.61078,-0.609839 0.38005,-0.0492 1.72779,-0.476065 2.74068,-0.868066 0.28434,-0.110044 1.70803,-0.608035 2.26268,-0.791461 0.22337,-0.07386 0.54699,-0.204193 0.71915,-0.289609 0.38259,-0.189818 1.74289,-0.645232 2.76191,-0.924652 3.6055,-0.988647 3.88843,-1.123463 4.44093,-2.116133 0.53075,-0.953597 0.59976,-1.967534 0.18957,-2.785218 -0.26658,-0.531402 -1.48626,-1.466256 -2.33773,-1.791808 -0.27182,-0.103925 -0.54644,-0.251004 -0.61025,-0.326829 -0.0638,-0.07582 -0.48155,-0.431725 -0.92829,-0.79089 -1.20371,-0.967756 -1.3076,-1.052268 -2.00904,-1.634318 -0.3543,-0.294 -0.85693,-0.664425 -1.11694,-0.823163 -0.48537,-0.296325 -1.57498,-1.715676 -1.57166,-2.047313 0.003,-0.311693 0.19582,-0.488872 0.53713,-0.493809 1.08437,-0.01569 3.51089,0.193592 3.80122,0.32784 0.18531,0.0857 0.54907,0.155794 0.80837,0.155794 0.55611,0 1.3832,0.278223 1.87214,0.629769 0.19175,0.137859 0.47892,0.305127 0.6382,0.371704 0.15926,0.06657 0.45145,0.215958 0.6493,0.331958 0.19785,0.115998 0.6939,0.386058 1.10234,0.600133 1.12738,0.590901 2.51882,1.44554 3.39276,2.083872 0.44101,0.322109 0.90786,0.573486 1.06507,0.573486 0.15395,0 0.45832,-0.151163 0.67638,-0.335919 0.21806,-0.184758 0.44676,-0.335922 0.50821,-0.335922 0.19892,0 0.51732,-0.425407 0.47545,-0.635231 -0.0313,-0.156814 -0.19378,-0.222448 -0.70247,-0.283767 -0.90409,-0.108985 -2.53903,-0.681585 -3.13637,-1.098452 -1.25268,-0.874215 -4.28057,-2.731237 -4.95947,-3.041671 -2.25036,-1.028993 -2.66166,-1.211411 -2.73139,-1.211411 -0.042,0 -0.24094,-0.07214 -0.44204,-0.160305 -2.17813,-0.954952 -2.93337,-1.130746 -3.91168,-0.910506 -1.1182,0.251725 -1.56057,0.657813 -1.27586,1.171195 0.20807,0.375171 0.15378,0.795407 -0.1028,0.795407 -0.12387,0 -0.26747,-0.06297 -0.3191,-0.139968 -0.0517,-0.07699 -0.12845,-0.895789 -0.17071,-1.819573 -0.13887,-3.035664 -0.86319,-5.5018164 -1.9321,-6.5784574 -0.74124,-0.746603 -1.06778,-0.464036 -0.36892,0.319248 0.52052,0.583408 0.89892,1.4528794 1.2621,2.8999974 0.36052,1.436535 0.47949,2.075851 0.47926,2.575397 -1.2e-4,0.307928 0.079,0.706506 0.17583,0.885732 0.10204,0.188893 0.19565,0.73015 0.22262,1.287696 0.0256,0.529011 0.0838,1.276762 0.12939,1.661672 0.058,0.489447 0.0439,0.699836 -0.0471,0.699836 -0.0714,0 -0.16083,-0.138567 -0.19859,-0.307927 -0.0378,-0.169361 -0.15308,-0.501113 -0.25629,-0.737226 -0.10324,-0.236115 -0.18339,-0.689608 -0.17819,-1.007764 0.005,-0.318156 -0.0639,-0.715985 -0.15377,-0.884062 -0.0898,-0.168078 -0.19088,-0.593907 -0.22466,-0.946286 -0.0338,-0.35238 -0.10421,-0.693548 -0.1566,-0.758154 -0.0523,-0.06461 -0.12333,-0.395507 -0.15775,-0.735335 -0.0344,-0.33983 -0.14907,-0.894099 -0.25478,-1.231712 -0.10574,-0.337613 -0.28002,-0.890976 -0.38734,-1.229698 -0.2115,-0.667553 -0.59581,-1.3880674 -0.69125,-1.2959744 -0.071,0.06852 0.4286,1.6420004 0.56971,1.7942594 0.0542,0.05851 0.0986,0.275158 0.0986,0.481449 0,0.206291 0.0722,0.511139 0.16052,0.677441 0.0882,0.166302 0.1974,0.629891 0.24249,1.030197 0.0451,0.400306 0.13367,0.929382 0.19685,1.175725 0.0632,0.246341 0.16295,0.901388 0.22175,1.455657 0.3033,2.859229 0.48885,3.518869 0.99174,3.525459 0.072,8.95e-4 0.19295,0.07392 0.26885,0.162184 0.11097,0.129034 0.0831,0.195138 -0.1419,0.337447 -0.24892,0.157392 -0.3248,0.15887 -0.68569,0.01335 -0.22318,-0.08999 -0.51634,-0.135721 -0.65145,-0.101625 -0.32077,0.08095 -0.82784,-0.446887 -1.18129,-1.229667 -0.14396,-0.31881 -0.33385,-0.713399 -0.42197,-0.876867 -0.0882,-0.163467 -0.16025,-0.458039 -0.16025,-0.654609 0,-0.374711 -0.31598,-1.562895 -0.45421,-1.707976 -0.0442,-0.04641 -0.1718,-0.01992 -0.2835,0.05889 -0.16394,0.115681 -0.21163,0.358507 -0.2475,1.260123 -0.0749,1.882456 -0.0692,5.545411 0.009,5.667211 0.10855,0.169513 0.80226,0.443442 4.39944,1.737261 l 3.24899,1.168582 1.12398,-0.07489 c 1.38132,-0.09203 1.74803,-0.02274 1.6974,0.320822 -0.0327,0.221549 -0.14167,0.261745 -1.02283,0.377083 -1.06741,0.139716 -1.63215,0.313855 -2.65063,0.817315 -0.36101,0.17846 -0.83914,0.405183 -1.0625,0.503834 -0.84247,0.372076 -2.8755,1.701482 -4.11926,2.693597 -1.62463,1.295947 -3.22782,2.709535 -3.31026,2.918795 -0.0551,0.139883 -0.13272,2.760043 -0.17245,5.822581 -0.0817,6.299253 -0.0634,6.168693 -0.95839,6.828143 -0.28807,0.21226 -0.59104,0.38593 -0.67327,0.38593 -0.0822,0 -0.80242,0.32702 -1.60041,0.72673 -0.798,0.3997 -1.74043,0.83126 -2.09429,0.95902 -0.67017,0.24197 -0.82675,0.36489 -0.70566,0.55396 0.0799,0.12476 0.60091,0.0721 1.90702,-0.19288 z m 34.4352,-1.76719 c 0.77012,-0.19257 0.99652,-0.40761 0.87343,-0.82962 -0.10892,-0.37347 -0.0624,-1.87138 0.0649,-2.09094 0.13969,-0.24089 -0.0214,-1.27876 -0.21694,-1.39794 -0.0905,-0.0551 -0.45174,-0.0919 -0.80275,-0.0818 -0.56599,0.0164 -0.80886,-0.0613 -2.14665,-0.686572 -0.82966,-0.387788 -1.61289,-0.747036 -1.74053,-0.798332 -0.48027,-0.193013 -1.89871,-0.823621 -3.07493,-1.367051 -0.6701,-0.309596 -1.40113,-0.609453 -1.6245,-0.66635 -0.99333,-0.253018 -1.62886,-0.311124 -2.11496,-0.193369 -1.78773,0.433081 -1.83059,0.42216 -2.09446,-0.533754 -0.0984,-0.3563 -0.29008,-1.000537 -0.42604,-1.431635 -0.13597,-0.431099 -0.35225,-1.161728 -0.48062,-1.62362 -0.12837,-0.46189 -0.31756,-1.142132 -0.42043,-1.511645 -0.10291,-0.369514 -0.29125,-0.84192 -0.41864,-1.049793 -0.13553,-0.221145 -0.22452,-0.552707 -0.21451,-0.799179 0.0279,-0.686751 -0.15462,-0.746528 -1.43204,-0.469049 -0.60114,0.130577 -1.31669,0.334821 -1.59011,0.45388 -0.64197,0.279533 -1.55942,0.576442 -1.78121,0.576442 -0.30919,0 -0.31014,0.313299 -0.003,0.960827 0.1654,0.348629 0.30072,0.674287 0.30072,0.723686 0,0.382555 2.65455,4.440661 4.01627,6.139809 0.79197,0.988212 1.19392,1.188433 2.59774,1.294018 0.54246,0.0408 1.56067,0.175505 2.26268,0.29935 0.70202,0.123843 1.85076,0.271623 2.55278,0.328398 0.70201,0.05678 1.46876,0.161569 1.70387,0.232879 0.2429,0.0737 0.63576,0.0975 0.9098,0.0552 0.29456,-0.0454 0.7379,-0.0113 1.13898,0.0877 0.36118,0.0892 0.94387,0.21835 1.29488,0.28708 0.8094,0.1585 1.59858,0.54435 1.8938,0.92592 0.23093,0.29848 0.39396,0.91542 0.50596,1.91467 0.0505,0.45069 0.0185,0.58384 -0.19311,0.80113 -0.13954,0.14333 -0.43204,0.29288 -0.65,0.33234 -0.21796,0.0395 -0.3963,0.11985 -0.3963,0.17864 0,0.16207 0.94887,0.12794 1.70586,-0.0614 z m -6.1057,-26.033606 c 0.37729,0 0.45465,-0.0381 0.45465,-0.223948 0,-0.209729 -0.0774,-0.223947 -1.21837,-0.223947 -0.98878,0 -1.21838,0.03069 -1.21838,0.162888 0,0.101396 0.16427,0.188752 0.43515,0.231403 0.23931,0.03769 0.51345,0.08438 0.60918,0.103742 0.0957,0.01937 0.24359,0.01602 0.32858,-0.0075 0.085,-0.02347 0.35913,-0.04268 0.60919,-0.04268 z m -1.86606,-1.017505 c 0.4299,-0.04429 0.12883,-0.07169 -0.92248,-0.08398 -1.06144,-0.01241 -1.52278,0.0183 -1.44225,0.09604 0.0651,0.06286 0.45414,0.277002 0.86447,0.475888 l 0.74604,0.361608 0.058,-0.391907 c 0.0568,-0.383518 0.0716,-0.393316 0.69621,-0.457637 z m 5.94681,0.712556 c -0.20741,-0.02484 -0.54682,-0.02484 -0.75423,0 -0.20742,0.02484 -0.0377,0.04516 0.37711,0.04516 0.41483,0 0.58453,-0.02032 0.37712,-0.04516 z m -23.19791,-0.384736 c 0.0826,-0.126309 0.0459,-0.23692 -0.13675,-0.413238 -0.16619,-0.160375 -0.24974,-0.380958 -0.25022,-0.660662 -3.5e-4,-0.230946 -0.0826,-0.571066 -0.18262,-0.755824 -0.10009,-0.184757 -0.20686,-0.587862 -0.23734,-0.89579 -0.0525,-0.530887 -0.13809,-0.879713 -0.55911,-2.280326 -0.0993,-0.330397 -0.1804,-0.78389 -0.18019,-1.007764 6.9e-4,-0.752927 -0.61809,-2.613795 -1.04756,-3.150402 l -0.22404,-0.279934 -0.002,0.30132 c -10e-4,0.165725 0.0456,0.330043 0.10443,0.36515 0.14925,0.08901 0.47267,1.516931 0.47543,2.098992 0.001,0.264978 0.0847,0.884884 0.18534,1.377569 0.10063,0.492683 0.2251,1.298895 0.2765,1.791579 0.20939,2.007069 0.44846,2.720737 1.15233,3.439859 0.31996,0.326901 0.44876,0.341185 0.62637,0.06946 z m 23.90809,-1.213867 c -0.009,-0.21555 -0.0433,-2.86093 -0.0779,-5.878623 -0.0346,-3.0176934 -0.0986,-5.6452784 -0.14212,-5.8390783 l -0.0791,-0.352366 -1.9895,-0.07733 c -1.17151,-0.04553 -2.65741,-0.02745 -3.61399,0.04399 -0.89347,0.06672 -4.51764,0.121509 -8.0537,0.12176 l -6.4292,4.55e-4 0.0716,1.9932759 c 0.0403,1.121305 0.0201,2.4561084 -0.0462,3.0512844 -0.0648,0.581905 -0.0844,1.423323 -0.0434,1.869818 l 0.0744,0.81181 h 0.37446 c 0.47779,0 1.99118,0.501853 3.55094,1.177521 0.67011,0.290281 1.67266,0.721369 2.22789,0.957978 0.55524,0.236608 1.31238,0.617517 1.68251,0.846463 0.37015,0.228948 0.88186,0.545045 1.13713,0.702439 0.25529,0.157393 0.67704,0.438348 0.93725,0.624341 l 0.47311,0.338169 h 4.98055 4.98054 l -0.0151,-0.391908 z m -28.12813,-0.291213 0.49356,-0.190574 -0.0466,-0.706586 c -0.0256,-0.388623 -0.0878,-0.746311 -0.13809,-0.794865 -0.0503,-0.04855 -0.59623,-0.09459 -1.21315,-0.102304 -0.78848,-0.0099 -1.25956,-0.07231 -1.58583,-0.210241 -0.394,-0.166567 -0.6694,-0.185166 -1.82238,-0.123077 -0.87071,0.04689 -1.54332,0.02816 -1.87386,-0.05215 l -0.51563,-0.125288 -0.0798,-1.697152 c -0.14237,-3.027529 -0.13034,-6.0294984 0.0258,-6.4560374 0.0789,-0.215549 0.19186,-0.8454019 0.25092,-1.3996719 0.0591,-0.554269 0.21749,-1.298834 0.35205,-1.654587 0.36193,-0.956879 0.2427,-1.108073 -0.84026,-1.06555 l -0.83453,0.03276 0.0277,0.699513 c 0.0152,0.384732 0.13561,1.008724 0.26754,1.386651 0.29297,0.8392 0.32274,1.3871669 0.12699,2.3367989 -0.2775,1.346275 -0.52691,2.8154904 -0.72618,4.2777644 -0.0647,0.474411 -0.10107,1.716378 -0.0809,2.759924 0.0441,2.278667 0.0241,2.242735 1.47847,2.655451 0.54724,0.155291 1.30828,0.382046 1.69119,0.503899 0.61467,0.195598 0.92187,0.215359 2.62278,0.168715 1.44194,-0.03955 2.05072,-0.100763 2.42013,-0.243407 z m -0.73342,-2.676092 c 0.0188,-0.06158 -0.19113,-0.275697 -0.46642,-0.475801 -0.33774,-0.245504 -0.64468,-0.627876 -0.94381,-1.175725 -0.2438,-0.446543 -0.51256,-0.937868 -0.59723,-1.091832 -0.0847,-0.153963 -0.15426,-0.410981 -0.15466,-0.571152 -8.4e-4,-0.343705 -0.21623,-1.005346 -0.37906,-1.16444 -0.24893,-0.243205 0.15448,2.462781 0.49532,3.322501 0.30339,0.765258 0.60516,1.107397 1.07413,1.217813 0.47597,0.112056 0.92763,0.08355 0.97173,-0.06136 z m -2.74301,-0.443881 c 0,-0.374471 -0.15942,-0.843817 -0.28661,-0.843817 -0.20646,0 -0.46656,-0.313472 -0.81219,-0.97886 -0.61471,-1.183398 -0.6646,-2.770393 -0.11181,-3.5564504 0.15528,-0.220815 0.28233,-0.517404 0.28233,-0.659087 0,-0.376242 0.32056,-0.597581 1.16534,-0.804629 0.41208,-0.100993 0.80145,-0.223623 0.86527,-0.272499 0.0638,-0.04888 0.42934,-0.141461 0.81225,-0.205742 1.18257,-0.19852 1.37817,-0.250133 1.83415,-0.483989 0.28942,-0.14843 0.68951,-0.232268 1.16035,-0.243145 1.14785,-0.02652 1.49403,0.09099 2.20204,0.747465 l 0.63828,0.591811 -0.0611,-0.902539 c -0.0336,-0.496396 -0.0846,-0.9277319 -0.11327,-0.9585249 -0.0287,-0.0308 -2.14946,-0.04347 -4.71284,-0.02816 -5.20195,0.03106 -4.9508,-0.01047 -4.9508,0.8191439 0,0.226742 -0.10671,0.645058 -0.23713,0.92959 -0.26334,0.574475 -0.34065,1.533671 -0.33814,4.1949544 0.002,1.811627 0.14041,2.674718 0.43836,2.727744 0.10726,0.01908 0.65182,0.0428 1.21024,0.05271 0.75967,0.01347 1.01531,-0.01824 1.01531,-0.12597 z m 4.52548,-0.284044 c 0.23842,-0.214918 0.34735,-0.3999 0.30226,-0.513279 -0.0388,-0.0975 -0.10487,-0.538347 -0.14693,-0.979674 -0.0482,-0.505767 -0.21975,-1.146249 -0.46405,-1.732475 -0.21318,-0.511533 -0.38931,-0.990223 -0.39141,-1.063752 -0.002,-0.07353 -0.24322,-0.331332 -0.53585,-0.572896 -0.42275,-0.3489934 -0.6295,-0.4409914 -1.00655,-0.4478944 -0.43016,-0.0078 -0.48413,0.02271 -0.57734,0.327234 -0.0566,0.1847544 -0.20239,0.5222604 -0.32405,0.7500124 -0.36589,0.684932 -0.29921,1.518406 0.20189,2.523779 0.89833,1.802349 2.07815,2.487676 2.94203,1.708945 z m -4.98962,-1.959446 c 0,-0.153964 -0.0522,-0.279933 -0.11604,-0.279933 -0.12963,0 -0.15905,0.369061 -0.0386,0.485218 0.12791,0.123434 0.15471,0.08787 0.15471,-0.205285 z m 6.19183,-3.5831594 c -0.0367,-0.09238 -0.0873,-0.167961 -0.1124,-0.167961 -0.0251,0 -0.0456,0.07558 -0.0456,0.167961 0,0.09238 0.0506,0.16796 0.11239,0.16796 0.0618,0 0.0824,-0.07558 0.0456,-0.16796 z m 8.26697,-4.0402129 c -0.0387,-0.09742 -0.0704,-0.372315 -0.0704,-0.610889 v -0.43377 l -0.47874,0.162994 c -0.26329,0.08964 -0.78546,0.162993 -1.16035,0.162993 h -0.68162 v 0.447895 0.447895 h 1.23078 c 1.07464,0 1.22186,-0.02247 1.16036,-0.177118 z m -11.74165,-0.118842 c 0.0403,-0.101189 0.0588,-0.194987 0.0415,-0.208432 -0.0175,-0.01344 -0.5704,-0.05472 -1.22876,-0.09171 -1.07729,-0.06054 -1.1933,-0.04859 -1.15975,0.119541 0.049,0.245537 0.43451,0.339821 1.44509,0.35343 0.66882,0.009 0.84296,-0.02436 0.902,-0.172827 z m 5.58252,-0.123712 c -0.044,-0.169234 -0.0888,-0.313748 -0.0997,-0.321142 -0.0109,-0.0074 -0.58089,-0.03986 -1.26695,-0.07215 -1.23868,-0.05829 -1.24738,-0.05692 -1.24738,0.196458 0,0.223194 0.0836,0.268983 0.66721,0.365474 0.36695,0.06067 0.97309,0.116779 1.34698,0.124684 l 0.67978,0.01438 -0.08,-0.307699 z m 12.9609,-0.131115 c -0.0502,-0.329707 -0.0769,-0.345003 -0.60245,-0.345003 -0.30249,0 -0.87094,-0.03237 -1.26321,-0.07193 l -0.71324,-0.07194 v 0.33321 c 0,0.183267 0.0224,0.354206 0.0497,0.379867 0.0274,0.02566 0.61941,0.06334 1.3157,0.08373 l 1.26595,0.03708 -0.0524,-0.345003 z m 3.40297,0.270853 c -0.051,-0.328695 -0.13633,-0.503882 -0.24524,-0.503882 -0.28198,0 -0.18486,-0.33489 0.13071,-0.450666 0.1637,-0.06006 0.94041,-0.109204 1.72601,-0.109204 h 1.42839 l 0.0725,0.349917 c 0.11129,0.536989 0.0867,0.935232 -0.0668,1.083346 -0.093,0.0898 -0.6082,0.134369 -1.5533,0.134369 h -1.41406 l -0.0783,-0.503882 z m 2.60474,-0.335922 c 0,-0.269322 -0.028,-0.279934 -0.73973,-0.279934 -1.09717,0 -1.44952,0.08869 -1.37946,0.34723 0.0511,0.188739 0.17348,0.21264 1.08841,0.21264 1.02214,0 1.03078,-0.0023 1.03078,-0.279936 z m 2.98329,0.758872 c -0.96694,-0.03782 -1.02572,-0.05458 -1.13134,-0.322691 -0.0612,-0.155539 -0.11143,-0.482494 -0.11143,-0.726564 v -0.443765 l 1.59549,0.03115 1.59548,0.03115 v 0.727829 0.727829 l -0.46413,0.0075 c -0.25529,0.0041 -0.92311,-0.01047 -1.48407,-0.03242 z m 1.42604,-0.758872 c 0,-0.278756 -0.004,-0.279934 -1.09147,-0.279934 -1.02375,0 -1.08781,0.0135 -1.0325,0.217611 0.0659,0.243053 0.31206,0.300341 1.39875,0.325481 0.70085,0.01621 0.72522,0.0074 0.72522,-0.263158 z"
+ id="path3954"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer83"
+ inkscape:label="Layer 2">
+ <rect
+ y="0"
+ x="0"
+ height="26"
+ width="256"
+ id="rect2825-5"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ y="0"
+ x="0"
+ height="1"
+ width="256"
+ id="rect2827-7"
+ style="fill:#3b3b3b;fill-opacity:1;stroke:none"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect2829-0"
+ width="256"
+ height="1"
+ x="0"
+ y="25"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98017859;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1501"
+ width="1.3262551"
+ height="26"
+ x="254.67375"
+ y="0"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-131.24152"
+ y="17.461403"
+ id="text1493"><tspan
+ sodipodi:role="line"
+ id="tspan1491"
+ x="-131.24152"
+ y="17.461403">menubar_bg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-129.0278"
+ y="55.410744"
+ id="text1497"><tspan
+ sodipodi:role="line"
+ id="tspan1495"
+ x="-129.0278"
+ y="55.410744">mbutton_bg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-124.28412"
+ y="143.64299"
+ id="text1537"><tspan
+ sodipodi:role="line"
+ id="tspan1535"
+ x="-124.28412"
+ y="143.64299">statusbar</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="80"
+ height="26"
+ sodipodi:docname="menubar_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="75-85">
+ <stop
+ id="stop1098"
+ offset="0"
+ style="stop-color:#414141;stop-opacity:1" />
+ <stop
+ id="stop1100"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-5"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-6"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708-8"
+ id="linearGradient3061"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.4798818,0,0,0.93442736,-1.758585,2.7868707)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#75-85"
+ id="linearGradient1008"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99927673,0,0,0.99888397,28.172093,1.1470904)"
+ x1="51.615471"
+ y1="-0.89832002"
+ x2="51.615471"
+ y2="24.88068" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#85-75"
+ id="linearGradient1006"
+ gradientUnits="userSpaceOnUse"
+ x1="80"
+ y1="0"
+ x2="80"
+ y2="26"
+ gradientTransform="translate(-80.000001,-26.000001)" />
+ <linearGradient
+ id="85-75">
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="0"
+ id="stop946" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop948" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="14.398462"
+ inkscape:cx="20.7215"
+ inkscape:cy="11.524835"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ borderlayer="false"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="80"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="80"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="80"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.474236"
+ y="3.721298"
+ x="1.7212985"
+ height="20.557404"
+ width="76.557404"
+ id="rect3685"
+ style="fill:url(#linearGradient3061);fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:1.49490047;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="76.505096"
+ height="22.090197"
+ x="1.7474502"
+ y="2.1623523"
+ ry="1.5841575" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-1.3879399"
+ y="-14.848043"
+ id="text1817-2"><tspan
+ sodipodi:role="line"
+ id="tspan1815-7"
+ x="-1.3879399"
+ y="-14.848043">see: menubar_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1006);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1"
+ id="rect3594-7-3"
+ width="80"
+ height="26"
+ x="-80"
+ y="-26.000002"
+ transform="scale(-1)" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:url(#linearGradient1008);stroke-width:0.49954018;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.750229,26.000002 V 0.2497724 H 0.24977135 V 26.000002"
+ id="rect3611-3-6-8-5-5-2-8-6-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-3-8"
+ width="80"
+ height="1"
+ x="7.5334788e-07"
+ y="-3.6250316e-07" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="80"
+ height="26"
+ sodipodi:docname="menubar_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3708-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3710-5"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712-6"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708-8"
+ id="linearGradient3061"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.4798818,0,0,0.93442736,-1.758585,2.7868707)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#92-100"
+ id="linearGradient1052"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99927673,0,0,0.99888397,28.17209,1.1470867)"
+ x1="51.615471"
+ y1="-0.89832002"
+ x2="51.615471"
+ y2="24.88068" />
+ <linearGradient
+ inkscape:collect="always"
+ id="92-100">
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="0"
+ id="stop958" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1"
+ id="stop960" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.62015504,0,0,1.1818182,0.16722499,-130.98836)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1304"
+ id="linearGradient1306"
+ x1="60.780979"
+ y1="110.97555"
+ x2="60.780979"
+ y2="132.5325"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1304">
+ <stop
+ style="stop-color:#5f8dd3;stop-opacity:0.53117651"
+ offset="0"
+ id="stop1300" />
+ <stop
+ style="stop-color:#3771c8;stop-opacity:0.31999999"
+ offset="1"
+ id="stop1302" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#85-92"
+ id="linearGradient1050"
+ gradientUnits="userSpaceOnUse"
+ x1="80"
+ y1="0"
+ x2="80"
+ y2="26"
+ gradientTransform="translate(-1.008841e-6,-1.2683716e-6)" />
+ <linearGradient
+ id="85-92">
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="0"
+ id="stop946" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop948" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.864887"
+ inkscape:cx="-14.711615"
+ inkscape:cy="8.043537"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="80"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="80"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="80"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.474236"
+ y="3.721298"
+ x="1.7212985"
+ height="20.557404"
+ width="76.557404"
+ id="rect3685"
+ style="fill:url(#linearGradient3061);fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:1.49490047;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="76.505096"
+ height="22.090197"
+ x="1.7474502"
+ y="2.1623523"
+ ry="1.5841575" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-2.116478"
+ y="-11.925632"
+ id="text1817-2"><tspan
+ sodipodi:role="line"
+ id="tspan1815-7"
+ x="-2.116478"
+ y="-11.925632">see: menubar_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1050);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1"
+ id="rect3594-7-8"
+ width="80"
+ height="26"
+ x="9.8824977e-08"
+ y="-3.7316283e-06" />
+ <rect
+ style="fill:url(#linearGradient1306);fill-opacity:1;stroke:none;stroke-width:0.85610193"
+ id="rect3611-3-64-8-0"
+ width="80"
+ height="26"
+ x="9.8824977e-08"
+ y="-3.7316283e-06" />
+ <rect
+ y="24.999998"
+ x="9.8824977e-08"
+ height="1"
+ width="80"
+ id="rect3592-7-4-7-75-9"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:url(#linearGradient1052);stroke-width:0.49954018;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.750225,26.000004 V 0.24976873 H 0.24976999 V 26.000004"
+ id="rect3611-3-6-8-5-5-2-8-6-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-3-6"
+ width="80"
+ height="1"
+ x="9.8824977e-08"
+ y="-3.7316283e-06" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="80"
+ height="26"
+ sodipodi:docname="menubar_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="92-100">
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="0"
+ id="stop958" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1"
+ id="stop960" />
+ </linearGradient>
+ <linearGradient
+ id="85-92">
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="0"
+ id="stop946" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop948" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4102">
+ <stop
+ id="stop4100"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop4098"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4102"
+ id="linearGradient4096-9-3"
+ x1="117.38696"
+ y1="46.936497"
+ x2="117.38696"
+ y2="72.430145"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(315.10117,-2.7395154)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#85-92"
+ id="linearGradient944"
+ x1="80"
+ y1="0"
+ x2="80"
+ y2="26"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#92-100"
+ id="linearGradient964"
+ x1="51.615471"
+ y1="-0.89832002"
+ x2="51.615471"
+ y2="24.88068"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99927673,0,0,0.99888397,28.172092,1.1470876)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#92-100"
+ id="linearGradient1052"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99927673,0,0,0.99888397,29.876152,89.773695)"
+ x1="51.615471"
+ y1="-0.89832002"
+ x2="51.615471"
+ y2="24.88068" />
+ <linearGradient
+ gradientTransform="matrix(0.62015504,0,0,1.1818182,1.8712879,-42.361747)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1304"
+ id="linearGradient1306"
+ x1="60.780979"
+ y1="110.97555"
+ x2="60.780979"
+ y2="132.5325"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1304">
+ <stop
+ style="stop-color:#5f8dd3;stop-opacity:0.53117651"
+ offset="0"
+ id="stop1300" />
+ <stop
+ style="stop-color:#3771c8;stop-opacity:0.31999999"
+ offset="1"
+ id="stop1302" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#85-92"
+ id="linearGradient1050"
+ gradientUnits="userSpaceOnUse"
+ x1="80"
+ y1="0"
+ x2="80"
+ y2="26"
+ gradientTransform="translate(1.7040609,88.626605)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#75-85"
+ id="linearGradient1008-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99927673,0,0,0.99888397,29.541555,46.012754)"
+ x1="51.615471"
+ y1="-0.89832002"
+ x2="51.615471"
+ y2="24.88068" />
+ <linearGradient
+ id="75-85">
+ <stop
+ id="stop1098"
+ offset="0"
+ style="stop-color:#414141;stop-opacity:1" />
+ <stop
+ id="stop1100"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#85-92"
+ id="linearGradient1006-0"
+ gradientUnits="userSpaceOnUse"
+ x1="80"
+ y1="0"
+ x2="80"
+ y2="26"
+ gradientTransform="translate(-81.369455,-70.865664)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.5775184"
+ inkscape:cx="-5.4517326"
+ inkscape:cy="-28.655799"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer71"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="70.998937,61.495142"
+ orientation="0,1"
+ id="guide1223"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer70"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="80"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="80"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="80"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer71"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient944);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1"
+ id="rect3594-7"
+ width="80"
+ height="26"
+ x="0"
+ y="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-68.726463"
+ y="70.00161"
+ id="text1817"><tspan
+ sodipodi:role="line"
+ id="tspan1815"
+ x="-68.726463"
+ y="70.00161">menubar_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-66.549965"
+ y="111.48126"
+ id="text1823"
+ inkscape:transform-center-x="-12.944962"
+ inkscape:transform-center-y="0.79254869"><tspan
+ sodipodi:role="line"
+ id="tspan1821"
+ x="-66.549965"
+ y="111.48126">menubar_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="6.569819"
+ y="-12.143379"
+ id="text1817-2"><tspan
+ sodipodi:role="line"
+ id="tspan1815-7"
+ x="6.569819"
+ y="-12.143379">menubar_up</tspan></text>
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="80"
+ id="rect3592-7-4-7-75"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:url(#linearGradient964);stroke-width:0.49954018;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 79.750229,26 V 0.24977009 H 0.249771 V 26"
+ id="rect3611-3-6-8-5-5-2-8-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-3"
+ width="80"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:url(#linearGradient1050);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1"
+ id="rect3594-7-8"
+ width="80"
+ height="26"
+ x="1.7040625"
+ y="88.626595" />
+ <rect
+ style="fill:url(#linearGradient1306);fill-opacity:1;stroke:none;stroke-width:0.85610193"
+ id="rect3611-3-64-8-0"
+ width="80"
+ height="26"
+ x="1.7040625"
+ y="88.626595" />
+ <rect
+ y="113.62661"
+ x="1.7040625"
+ height="1"
+ width="80"
+ id="rect3592-7-4-7-75-9"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:url(#linearGradient1052);stroke-width:0.49954018;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 81.454284,114.62661 V 88.876375 H 1.9538319 v 25.750235"
+ id="rect3611-3-6-8-5-5-2-8-6-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-3-6"
+ width="80"
+ height="1"
+ x="1.7040625"
+ y="88.626595" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-53.717514"
+ y="-38.577812"
+ id="text1181-1"><tspan
+ sodipodi:role="line"
+ id="tspan1179-5"
+ x="-53.717514"
+ y="-38.577812">s.a.: preferencesbutton_up</tspan><tspan
+ sodipodi:role="line"
+ x="-53.717514"
+ y="-13.577811"
+ id="tspan1437" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-69.304123"
+ y="79.011581"
+ id="text1167"><tspan
+ sodipodi:role="line"
+ x="-69.304123"
+ y="79.011581"
+ id="tspan1169">(untere Kante wird von Menü überlagert)</tspan></text>
+ <g
+ id="g1198">
+ <rect
+ y="-1.379878"
+ x="401.83447"
+ height="26"
+ width="80"
+ id="rect3594-7-5"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1" />
+ <rect
+ y="89.025703"
+ x="402.12238"
+ height="26"
+ width="80"
+ id="rect3594-7-6-9"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" />
+ <rect
+ y="89.025703"
+ x="402.12238"
+ height="26"
+ width="80"
+ id="rect3594-7-7-5-9"
+ style="fill:#5f8dd3;fill-opacity:0.50196078;stroke:none;stroke-width:0.99999994;stroke-opacity:1" />
+ <rect
+ y="89.025703"
+ x="402.12238"
+ height="1"
+ width="80"
+ id="rect2818-5-3-6-1"
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1055-7-4"
+ d="m 402.37137,90.029745 0.14105,24.994555"
+ style="fill:none;stroke:#000000;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1072-9"
+ d="M 481.87238,90.025715 V 115.02571"
+ style="fill:none;stroke:#141414;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3592-7-4-7-1"
+ width="80"
+ height="1"
+ x="402.12238"
+ y="114.0257" />
+ <rect
+ y="-1.3798895"
+ x="401.83447"
+ height="1"
+ width="80"
+ id="rect2818-5-3-6-3-0"
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1055-7-2-7"
+ d="M 402.08348,-0.37584041 402.22452,24.618721"
+ style="fill:none;stroke:#000000;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1072-1-5"
+ d="M 481.58449,-0.37987041 V 24.620131"
+ style="fill:none;stroke:#141414;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3592-7-4-7-75-8"
+ width="80"
+ height="1"
+ x="401.83447"
+ y="23.620119" />
+ <rect
+ y="44.141937"
+ x="402.10709"
+ height="26"
+ width="80"
+ id="rect3594-7-0-5-1-7"
+ style="fill:url(#linearGradient4096-9-3);fill-opacity:1;stroke:none;stroke-width:0.99992591;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="translate(401.72795,-2.1859244)"
+ id="g4110-1-0">
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-0-4-4"
+ width="80"
+ height="1"
+ x="0.379154"
+ y="46.327866" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.498;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 0.628143,47.331914 0.14104,24.99456"
+ id="path1055-7-1-3-8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 80.12914,47.327884 v 25"
+ id="path1072-3-7-0"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="71.327873"
+ x="0.379154"
+ height="1"
+ width="80"
+ id="rect3592-7-4-7-7-2-4"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4154-2"
+ d="m 402.1071,44.891955 h 80"
+ style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4154-7-9"
+ d="m 402.12924,89.792205 h 80"
+ style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text1175"
+ y="-9.4994678"
+ x="418.30673"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="-9.4994678"
+ x="418.30673"
+ id="tspan1173"
+ sodipodi:role="line">obsolet</tspan></text>
+ </g>
+ <rect
+ style="fill:url(#linearGradient1006-0);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-opacity:1"
+ id="rect3594-7-3-0"
+ width="80"
+ height="26"
+ x="-81.369453"
+ y="-70.865669"
+ transform="scale(-1)" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:url(#linearGradient1008-5);stroke-width:0.49954018;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 81.119685,70.865665 V 45.115436 H 1.6192299 v 25.750229"
+ id="rect3611-3-6-8-5-5-2-8-6-3-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1"
+ id="rect2818-5-3-6-3-8-1"
+ width="80"
+ height="1"
+ x="1.3694613"
+ y="44.865665" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="20"
+ sodipodi:docname="menuitem_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(0.6,0,0,1,96.4,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="137.7524"
+ x2="241"
+ y1="137.82355"
+ x1="266"
+ id="linearGradient3600-3"
+ xlink:href="#linearGradient3594-4"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-6"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-4"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-4"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-7"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.1816406"
+ inkscape:cx="166.96404"
+ inkscape:cy="82.712199"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer94"
+ showborder="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer93"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="256"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.97684276;stroke-opacity:1"
+ id="rect3343"
+ width="249.02316"
+ height="17.023157"
+ x="4.4884214"
+ y="1.4884213"
+ ry="4.801403" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer94"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ id="rect2818-9"
+ width="256"
+ height="20"
+ x="0"
+ y="0" />
+ <g
+ id="g1795"
+ transform="translate(-26.218563,67.206357)">
+ <g
+ id="g1785">
+ <path
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 26.225024,-47.745688 H 282.22502"
+ id="path1764"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1764"
+ id="use1781"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ width="100%"
+ height="100%"
+ inkscape:transform-center-x="24.669302"
+ inkscape:transform-center-y="110.90074" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1789"
+ d="m 26.72226,-67.206357 v 20"
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="2.0439255"
+ y="-39.968224"
+ id="text2554-1"><tspan
+ sodipodi:role="line"
+ id="tspan2552-1"
+ x="2.0439255"
+ y="-39.968224">see: menuitem_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="20"
+ sodipodi:docname="menuitem_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(0.6,0,0,1,96.4,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="137.7524"
+ x2="241"
+ y1="137.82355"
+ x1="266"
+ id="linearGradient3600-3"
+ xlink:href="#linearGradient3594-4"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-6"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-4"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-4"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-7"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601-59">
+ <stop
+ id="stop3603-3"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605-88"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.5439453"
+ inkscape:cx="33.146802"
+ inkscape:cy="11.295383"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="256"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:none;stroke:#e6e6e6;stroke-width:0.97684276;stroke-opacity:1"
+ id="rect3343"
+ width="249.02316"
+ height="17.023157"
+ x="4.4884214"
+ y="1.4884213"
+ ry="4.801403" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.04294097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3594-7-7-54"
+ width="256"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.50196078;stroke:none;stroke-width:1.56278872;stroke-opacity:1"
+ id="rect3594-7-7-5"
+ width="254"
+ height="20"
+ x="1"
+ y="0" />
+ <g
+ style="display:inline"
+ id="g1795"
+ transform="translate(-26.218563,67.206357)">
+ <g
+ id="g1785">
+ <path
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 26.225024,-47.745688 H 282.22502"
+ id="path1764"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1764"
+ id="use1781"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ width="100%"
+ height="100%"
+ inkscape:transform-center-x="24.669302"
+ inkscape:transform-center-y="110.90074" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1789"
+ d="m 26.72226,-67.206357 v 20"
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="23.81901"
+ y="-35.066399"
+ id="text2554-1"><tspan
+ sodipodi:role="line"
+ id="tspan2552-1"
+ x="23.81901"
+ y="-35.066399">see: menuitem_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="20"
+ sodipodi:docname="menuitem_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menuitem_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ gradientTransform="matrix(0.6,0,0,1,96.4,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="137.7524"
+ x2="241"
+ y1="137.82355"
+ x1="266"
+ id="linearGradient3600-3"
+ xlink:href="#linearGradient3594-4"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-6"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-4"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-4"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-7"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.5908203"
+ inkscape:cx="133.54412"
+ inkscape:cy="11.843392"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.04294097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3594-7-7-54"
+ width="256"
+ height="20"
+ x="0"
+ y="0" />
+ <g
+ style="display:inline"
+ id="g1795"
+ transform="translate(-26.218563,67.206357)">
+ <g
+ id="g1785">
+ <path
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 26.225024,-47.745688 H 282.22502"
+ id="path1764"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1764"
+ id="use1781"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ width="100%"
+ height="100%"
+ inkscape:transform-center-x="24.669302"
+ inkscape:transform-center-y="110.90074" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1789"
+ d="m 26.72226,-67.206357 v 20"
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <rect
+ style="display:inline;fill:#ffcc00;fill-opacity:1;stroke:none"
+ id="rect2818-9"
+ width="256"
+ height="20"
+ x="-1.0214899"
+ y="50.230824" />
+ <g
+ style="display:inline"
+ id="g1795-9"
+ transform="translate(-27.240052,117.43717)">
+ <g
+ id="g1785-1">
+ <path
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 26.225024,-47.745688 H 282.22502"
+ id="path1764-0"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1764-0"
+ id="use1781-9"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ width="100%"
+ height="100%"
+ inkscape:transform-center-x="24.669302"
+ inkscape:transform-center-y="110.90074" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1789-4"
+ d="m 26.72226,-67.206357 v 20"
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.04294097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3594-7-7-54-5"
+ width="256"
+ height="20"
+ x="-1.6500938"
+ y="99.16378" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.50196078;stroke:none;stroke-width:1.56278872;stroke-opacity:1"
+ id="rect3594-7-7-5"
+ width="254"
+ height="20"
+ x="-0.65009397"
+ y="99.16378" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="2.6952934"
+ y="-41.914551"
+ id="text833"><tspan
+ sodipodi:role="line"
+ id="tspan831"
+ x="2.6952934"
+ y="-41.914551">Rahmen oben überlagert Text. </tspan></text>
+ <g
+ style="display:inline"
+ id="g1795-6"
+ transform="translate(-27.868656,166.37014)">
+ <g
+ id="g1785-2">
+ <path
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 26.225024,-47.745688 H 282.22502"
+ id="path1764-5"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1764-5"
+ id="use1781-91"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ width="100%"
+ height="100%"
+ inkscape:transform-center-x="24.669302"
+ inkscape:transform-center-y="110.90074" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path1789-7"
+ d="m 26.72226,-67.206357 v 20"
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-116.92081"
+ y="65.888275"
+ id="text2554"><tspan
+ sodipodi:role="line"
+ id="tspan2552"
+ x="-116.92081"
+ y="65.888275">menuitem_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-112.97786"
+ y="111.33825"
+ id="text2554-7"><tspan
+ sodipodi:role="line"
+ x="-112.97786"
+ y="111.33825"
+ id="tspan2576">menuitem_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="3.314343"
+ y="-18.783302"
+ id="text2554-1"><tspan
+ sodipodi:role="line"
+ id="tspan2552-1"
+ x="3.314343"
+ y="-18.783302">menuitem_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="middle_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/middle_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8250206"
+ inkscape:cx="-33.756065"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11.5"
+ height="4"
+ x="6.25"
+ y="10"
+ ry="0" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-67.438202"
+ y="6.832252" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="mixpatch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mixpatch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>mixpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.1941137"
+ inkscape:cx="-198.5936"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,3)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0625 V 17 H 20.033787 V -0.0625 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.0306093,15.023835 V 2.2738346 l 6.8432197,6.4830512 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,3)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.90926313;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-3"
+ cx="-7"
+ cy="10"
+ r="8.5453682"
+ transform="rotate(-90)" />
+ <g
+ id="g868-0-0"
+ transform="matrix(0,-0.93567255,0.93567255,0,3.4502944,2.0782414)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-3"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-2"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="mixpatch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mixpatch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>mixpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ id="stop911"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop913"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3687"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3614">
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1;"
+ offset="0"
+ id="stop3616" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:0;"
+ offset="1"
+ id="stop3618" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ id="stop3610"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3612"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:1" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-0" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2896"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#202020;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-8" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)" />
+ <inkscape:perspective
+ id="perspective2895"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-2"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3614"
+ id="radialGradient3622"
+ cx="11.289229"
+ cy="8.6998415"
+ fx="11.289229"
+ fy="8.6998415"
+ r="8.094326"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ gradientUnits="userSpaceOnUse" />
+ <inkscape:perspective
+ id="perspective10-5"
+ 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" />
+ <linearGradient
+ id="linearGradient1817-9-6">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614-91">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3616-62" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3618-1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.1941137"
+ inkscape:cx="-20.963699"
+ inkscape:cy="18.275605"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,3)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0625 V 17 H 20.033787 V -0.0625 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.0306093,15.023835 V 2.2738346 l 6.8432197,6.4830512 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,3)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.90926313;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-3-1"
+ cx="-7"
+ cy="10"
+ r="8.5453682"
+ transform="rotate(-90)" />
+ <g
+ id="g868-0-0-7"
+ transform="matrix(0,-0.93567255,0.93567255,0,3.4503008,2.0782661)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-3-5"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-2-6"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="mixpatch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mixpatch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>mixpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.1941137"
+ inkscape:cx="-198.5936"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,3)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0625 V 17 H 20.033787 V -0.0625 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.0306093,15.023835 V 2.2738346 l 6.8432197,6.4830512 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,3)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.90926313;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4-7"
+ cx="2.1213212"
+ cy="12.020816"
+ r="8.5453682"
+ transform="rotate(-45)" />
+ <g
+ id="g868-0-4"
+ transform="matrix(0.66162041,-0.66162041,0.66162041,0.66162041,8.8488705,-1.1115565)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1-1"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3-1"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="mixpatch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mixpatch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>mixpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.1941137"
+ inkscape:cx="-198.5936"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,3)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0625 V 17 H 20.033787 V -0.0625 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.0306093,15.023835 V 2.2738346 l 6.8432197,6.4830512 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,3)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.90926313;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6-9-4"
+ cx="10"
+ cy="7"
+ r="8.5453682" />
+ <g
+ id="g868-0"
+ transform="matrix(0.93567255,0,0,0.93567255,14.921743,0.4502968)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-0-1"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2-3"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="mixpatch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mixpatch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>mixpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.862745"
+ inkscape:cx="-9.3311062"
+ inkscape:cy="10.560113"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="10,-4.7542373"
+ orientation="1,0"
+ id="guide967"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ transform="translate(0,3)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,-0.0625 V 17 H 20.033787 V -0.0625 Z"
+ id="rect3597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none"
+ d="M 7.0306093,15.023835 V 2.2738346 l 6.8432197,6.4830512 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,3)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.664021"
+ y="-14.325477"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.664021"
+ y="-14.325477">see: recordpatch_up</tspan></text>
+ <circle
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.90926313;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path950-9-6"
+ cx="10"
+ cy="7"
+ r="8.5453682" />
+ <g
+ id="g868"
+ transform="matrix(0.93567255,0,0,0.93567255,14.921754,0.4502922)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7"
+ d="M -5.260124,15.55 V -1.5500001 l 8.55,8.6949179 z"
+ style="fill:#efede3;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910-5-2-6-7-2"
+ d="M -5.260124,15.55 V -1.5500001 l -8.55,8.694917 z"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.29447997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_add.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_add.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="31.415744"
+ inkscape:cx="7"
+ inkscape:cy="7.4501608"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 6 1 L 6 6 L 1 6 L 1 8 L 6 8 L 6 13 L 8 13 L 8 8 L 13 8 L 13 6 L 8 6 L 8 1 L 6 1 z "
+ id="rect2818" />
+</svg>
--- /dev/null
+<?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="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg820"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_all.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_overlay.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1761">mode (all)</title>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#e5e5e5"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="30.582368"
+ inkscape:cx="7"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer3"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ guidecolor="#ff00ff"
+ guideopacity="0.49803922"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:measure-start="8.69794,-548.129"
+ inkscape:measure-end="1.82696,-553.957"
+ showborder="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5161" />
+ <sodipodi:guide
+ position="32.596253,-41.695561"
+ orientation="1,0"
+ id="guide5538"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="153.01065,-11.724501"
+ orientation="0,1"
+ id="guide1751"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="63.951819,-72.478732"
+ orientation="1,0"
+ id="guide1753"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="95.217152,-71.176009"
+ orientation="1,0"
+ id="guide1755"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="139.62814,-88.821975"
+ orientation="1,0"
+ id="guide1757"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="182.38111,-79.939777"
+ orientation="1,0"
+ id="guide1759"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <defs
+ id="defs814">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4506-8">
+ <stop
+ style="stop-color:#ffcc00;stop-opacity:1;"
+ offset="0"
+ id="stop4502" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop4504" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1481"
+ inkscape:collect="always">
+ <stop
+ id="stop1477"
+ offset="0"
+ style="stop-color:#ffcc00;stop-opacity:1" />
+ <stop
+ id="stop1479"
+ offset="1"
+ style="stop-color:#ffcc00;stop-opacity:0.50372553" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1472"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1474"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="ffcc00">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1852" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1854" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(1.7995118,-300.52847)"
+ gradientUnits="userSpaceOnUse"
+ y2="300.52847"
+ x2="1.9046549"
+ y1="304.23264"
+ x1="1.9046549"
+ id="linearGradient1483"
+ xlink:href="#linearGradient1481"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,157.40727,350.15881)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,157.21151,340.27518)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-4"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,114.00686,310.93984)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-5"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,114.00686,319.02301)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-6"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,114.00686,326.76207)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-50"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,114.00686,335.49332)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-1"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,114.00686,343.43082)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-10"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,157.21151,331.16197)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-0"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,156.81999,312.18539)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-34"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,157.21151,358.307)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-2"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,157.11363,367.11435)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-22-6"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <filter
+ inkscape:label="Thin Membrane"
+ inkscape:menu="Ridges"
+ inkscape:menu-tooltip="Thin like a soap membrane"
+ x="-0.05"
+ y="-0.05"
+ width="1.1"
+ height="1.1"
+ style="color-interpolation-filters:sRGB;"
+ id="filter4488">
+ <feGaussianBlur
+ stdDeviation="5"
+ result="result1"
+ id="feGaussianBlur4462" />
+ <feComposite
+ in="result1"
+ in2="result1"
+ result="result4"
+ operator="xor"
+ id="feComposite4464" />
+ <feGaussianBlur
+ stdDeviation="8"
+ result="result6"
+ id="feGaussianBlur4466" />
+ <feComposite
+ operator="atop"
+ in="result6"
+ in2="SourceGraphic"
+ result="result8"
+ id="feComposite4468" />
+ <feComposite
+ operator="in"
+ result="fbSourceGraphic"
+ in="result6"
+ in2="result8"
+ id="feComposite4470" />
+ <feColorMatrix
+ result="fbSourceGraphicAlpha"
+ in="fbSourceGraphic"
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 2 0 "
+ id="feColorMatrix4472" />
+ <feGaussianBlur
+ result="result0"
+ in="fbSourceGraphicAlpha"
+ stdDeviation="2"
+ id="feGaussianBlur4474" />
+ <feSpecularLighting
+ specularExponent="25"
+ specularConstant="2"
+ surfaceScale="-5"
+ lighting-color="rgb(255,255,255)"
+ result="result1"
+ in="result0"
+ id="feSpecularLighting4478">
+ <fePointLight
+ z="20000"
+ y="-10000"
+ x="-5000"
+ id="fePointLight4476" />
+ </feSpecularLighting>
+ <feComposite
+ operator="in"
+ result="result2"
+ in="result1"
+ in2="fbSourceGraphicAlpha"
+ id="feComposite4480" />
+ <feComposite
+ k3="2"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic"
+ in2="result2"
+ id="feComposite4482" />
+ <feComposite
+ operator="in"
+ in="result4"
+ result="result9"
+ in2="result4"
+ id="feComposite4484" />
+ <feBlend
+ mode="multiply"
+ in="result9"
+ in2="result4"
+ id="feBlend4486" />
+ </filter>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4506-8"
+ id="radialGradient4508-2"
+ cx="21.691233"
+ cy="90.587601"
+ fx="21.691233"
+ fy="90.587601"
+ r="1.7119157"
+ gradientTransform="matrix(1.3480425,-0.1233695,0.1144476,1.40398,-17.917002,-33.919546)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,82.593179,312.38604)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-67"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,82.593183,322.83479)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-87"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,82.593178,333.28355)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-9"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,82.593178,343.73228)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-7"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,82.593177,354.18103)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-15"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,156.70613,322.23692)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-87-4"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,48.599578,311.94199)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-87-7"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <filter
+ inkscape:label="Thin Membrane"
+ inkscape:menu="Ridges"
+ inkscape:menu-tooltip="Thin like a soap membrane"
+ x="-0.050000001"
+ y="-0.050000001"
+ width="1.1"
+ height="1.1"
+ style="color-interpolation-filters:sRGB"
+ id="filter4488-0">
+ <feGaussianBlur
+ stdDeviation="5"
+ result="result1"
+ id="feGaussianBlur4462-2" />
+ <feComposite
+ in="result1"
+ in2="result1"
+ result="result4"
+ operator="xor"
+ id="feComposite4464-9" />
+ <feGaussianBlur
+ stdDeviation="8"
+ result="result6"
+ id="feGaussianBlur4466-4" />
+ <feComposite
+ operator="atop"
+ in="result6"
+ in2="SourceGraphic"
+ result="result8"
+ id="feComposite4468-3" />
+ <feComposite
+ operator="in"
+ result="fbSourceGraphic"
+ in="result6"
+ in2="result8"
+ id="feComposite4470-5" />
+ <feColorMatrix
+ result="fbSourceGraphicAlpha"
+ in="fbSourceGraphic"
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 2 0 "
+ id="feColorMatrix4472-1" />
+ <feGaussianBlur
+ result="result0"
+ in="fbSourceGraphicAlpha"
+ stdDeviation="2"
+ id="feGaussianBlur4474-7" />
+ <feSpecularLighting
+ specularExponent="25"
+ specularConstant="2"
+ surfaceScale="-5"
+ lighting-color="#ffffff"
+ result="result1"
+ in="result0"
+ id="feSpecularLighting4478-4">
+ <fePointLight
+ z="20000"
+ y="-10000"
+ x="-5000"
+ id="fePointLight4476-3" />
+ </feSpecularLighting>
+ <feComposite
+ operator="in"
+ result="result2"
+ in="result1"
+ in2="fbSourceGraphicAlpha"
+ id="feComposite4480-1" />
+ <feComposite
+ k4="0"
+ k1="0"
+ k3="2"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic"
+ in2="result2"
+ id="feComposite4482-4" />
+ <feComposite
+ operator="in"
+ in="result4"
+ result="result9"
+ in2="result4"
+ id="feComposite4484-6" />
+ <feBlend
+ mode="multiply"
+ in="result9"
+ in2="result4"
+ id="feBlend4486-9" />
+ </filter>
+ <filter
+ height="1.0236208"
+ y="-0.011810425"
+ width="1.0243915"
+ x="-0.01219576"
+ id="filter3272-1"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3274-3"
+ stdDeviation="0.22144173"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ height="1.0984887"
+ y="-0.04924437"
+ width="1.0936339"
+ x="-0.046816967"
+ id="filter3247-4"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3249-3"
+ stdDeviation="0.73040019"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ height="1.0984887"
+ y="-0.04924437"
+ width="1.0936339"
+ x="-0.046816967"
+ id="filter3247-7-7"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3249-7-7"
+ stdDeviation="0.73040019"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ gradientTransform="matrix(1.514876,-0.01520184,0.01542061,1.536676,205.93943,-130.65694)"
+ gradientUnits="userSpaceOnUse"
+ r="1.7197917"
+ fy="131.80392"
+ fx="1.8764442"
+ cy="131.80392"
+ cx="1.8764442"
+ id="radialGradient2299"
+ xlink:href="#linearGradient2295"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2295"
+ inkscape:collect="always">
+ <stop
+ id="stop2291"
+ offset="0"
+ style="stop-color:#ffbfd7;stop-opacity:1" />
+ <stop
+ id="stop2293"
+ offset="1"
+ style="stop-color:#ffbbd2;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.10295,49.796315)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-22-6-6"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.29394,69.811626)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-22"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.43237,26.697353)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-43"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.15552,58.399845)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-40"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.01709,42.853026)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-8"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.01709,34.491914)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1-0-3"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.14246793,0,0,0.21789211,204.01709,19.542933)"
+ gradientUnits="userSpaceOnUse"
+ y2="18.728813"
+ x2="44.737286"
+ y1="1.0084742"
+ x1="44.737286"
+ id="linearGradient1811-8-5-0-7-3-2-1"
+ xlink:href="#linearGradient1817"
+ inkscape:collect="always" />
+ </defs>
+ <metadata
+ id="metadata817">
+ <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>mode (all)</dc:title>
+ <dc:date>2018-08-12</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-12, 13, 14: new.
+Optical height compensation makes no sense, max. dimensions sing just so to recognize.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ <rdf:li>Neophyte</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5980-9-4"
+ width="3.7041667"
+ height="3.7041667"
+ x="118.64816"
+ y="76.020317" />
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5980-9"
+ width="3.7041667"
+ height="3.7041667"
+ x="118.64816"
+ y="67.023384" />
+ <g
+ inkscape:label="bestand"
+ id="layer4"
+ inkscape:groupmode="layer"
+ style="display:inline">
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkdFDEMoTccJAAAAt5JREFUOMudlM9vW0UQxz8zu+89/3h1ndiFmJiEglRRVKkSOYCo RC+cOEYcOOR/QOIP4F/hhjhxa4UEantAQhVCFaE9gWIQaao2cVS7tuP3/HaHg5sSxKViTjPa/eg7 Ozszsr29zf+ynZ0dXxQFWC0JIi+LVUHKSkMI3oyrm8dffHrfeb88S5gtnW8f9O/vrVzZPLp+9Vnd V8RqEVLg4ZPk8y/fBbzBK+1Jzc/BMADEHcv6Vzfkt8O3Hh3ng8PuYH/3k+uLCy1JbAx0Wz5Lg4AK gCAO8ahHPfDNrYXW+8eTBjCdp/VW/+aPgCEecajDDFAASVCHetQBe7P+Rq/2615rNnfRmBXuzu6a aXs05fRaE17AONQTFoQKs5PSHo/y4TgRMTOJJqrWbTN8asSAOrS2LIoCRHdSeTSx5BwiayuulY7e 3pgsn6TCe5eGk8looyeoN3NIdibtoDU7Md8wTcF1+MvLfH11FE1EcGp5Nmo3K+d8SFqV5pFsWVoF qsqHc+umiamr8nXOb378YX08KzDDLAR78Gdr63IjpKuol8RHS4hmS9hMYhRTb6oAxsMnIZSVOgwR pZkdTU8K1Jl6E6ea2gvlWEkZSnPP/6mKdvunottZiRHATH3Su/OzIop6UQV/Bg6SZ07EgQMGB9Xr vebuoIUJYNi9QaekO360D+IlRvQfOERQr6fNXVb2+Gl+OEpFTcBMRWw1j6OpeYWlxhllUC/Oe594 n/S7rionF1qFAGKpC5deG48nozd6smxBO1X2gEUQBUEAzuf6ant27Z39X/7oHRzV8vpi681BU+cC iEMANeJzOMxni8mWzz1xQYjC3Y/ez364N5xOjy92EolFpzG5dkWJweJlRMvhWJgDHmH0rDj87uvO RWcFiznFCeWcfsFaCeBTsiFHd8lqktZv4DnYlYV9AHiB36u1z75vOFkOJP9dCvbvcE66SBLAZ1kG xEYzvvQCcmYOnHN/A8eMTAVNbkrcAAAAAElFTkSuQmCC "
+ id="image1578"
+ x="172.24721"
+ y="56.800369" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAADGklEQVQ4jZ2UXWgcVRTHf/djZnY3X5M0CYpVYxCNSCh+ILaI YFtfRBONaAMGDFhIqehKBV/8KFZiY1WKIKWK2jyIVdIQyYsP1uqjKFqopVgt0iY21jYpTbPdzOzM nePDbuyqCOJ5u5fzO/d/z/2fqwYGBvhfMTQ0ZOM4Bsl5Tqn/iqVOVVLtnLMirLn2/EuDR4219Rlx wq79vDgM2d/h02e9bftuBaxAZ1jK2QgRUSipZVQSJj5zO4YNUtsSqIprb7aB7xRoBaBQ5lzJrhvJ fj5j0BZtcwX70Q4PasuFJbOxKEdPaZRB1ypaAOWhTUeohvs4+I10P2gmv0zfn07nL0jYpDZtNJv7 7KHD7r67bE+XRYNugD/hanlhpN9UHEMvl5dKPP9ErrfbHJ/J9hyoTH1V2T+aDxsVAkrQuepFNEBm amK0eWcqFdETu5ruviVobbF39vrj2xuuv8a+9mFSy1EWFdTJdhpjQC1H8u5UPPlmy7HZlb4hwJZN hf7i4itbm6wGQAUINThzpvjGpeOn3HvbQ6PVUkXfPjhf/zYHdodhizk5x9h4SSm18ymPTKQKu0xv ebS5VCbwTZxQyNu+e/L1nmlr8aJY2kLvmceaAc/6cvnkVN3UnQOVCTd2+cd+cp++1Vnvt0PfRmGj aWv12kIPuFiydbBTaIMorRjb1t735G/NjXbD2oKGTOT7H+OnXz3/9gsdKIsCIUNfhl0G2iJqYdHl 8/aD0SuLO39v3Xehp8s/MZv8eiZ9/bnOG7qD0wtyVbtFAaa+YaDtpbI8sHXm8YfCkUdav5ts/PrI 8szZdHCVuaM37xsmv1ga3TM/vffq1R1W6k+WDJRWRp7d3Nm/vqlq2TU9hb2fzI2PrSYT4OF7Qz8w gW/QBrSQrciOyknptnyjHdiQ4DKXZpJllXJy+IfZNLpZnFOgNPevBY1kurJwUREBFsXiUnzu849X XWckJomIl6lERBG711dOTkxbjyCHlyPI4efBMndEJbIOsApOpFcUDxbMyjT+5VP4ZcVldRHhJ54H 2CAIgKzQ8I+Z/9cwIgaMMX8AI54+8qF4WZMAAAAASUVORK5CYII= "
+ id="image1608"
+ x="172.05145"
+ y="46.965591" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH3wMGEBQagp2sCQAAAg5JREFUOMudlDtrVUEQx38zO+eekygxURBFRVOm8tX5EeyMIApp rQUbOz9CwE9gq4VtQBTsrGyUYJqIIMYiAePjYs7j7o7FyT333AQhuN0O83/sf3ZXlpeX+a+1srJi VVWBF1kUOSpsFKUeaYzR3Ll88fvju+vB7GBToqqnKqbkA7a2s4dPrwHmcHp+WFgJvnQvdn0bLxYy mCkAlm7vtsUQWH8+d+lclQ+igAmAIAGAuHheD/tsizu7/m7D90vugAFIhgYQqIC11QKHNAKHhLO2 mgNLd/Z6hB2YgBpjUiRDBZFRdFOHdMDIsJrbjwAgBSTQpa37zoNKclFV8Ak1IHnPdlRE8TTlyRFB BAcRpT9JyVsuBVIMyFROwqS5rvHkjKV/NFdgQHJvwTEpwf51JcyQkI3H0frKfKI8EnTQ01UmARAs wwpC0QNbDxwFDRQnx1oFIXfEARGsQI2QdeCEtmADYgI1fKyWzeKIF3gEQ60LsXNDB06R/pxv3v8E rD050fXeetQA8wsFX0rA+8qeJuf8/DUdzuzt+72W+sLZ1oU6aWy7/NMMr9tx+/jyKjGllDylxt2l HZhvvUEUVRDHdXvzl1AChvDzd7Xz6tmpxeAVTUm1R11SV4xqABuQF2QFecFgBoxvH6TxG7SvanN0 5sHr2SDe3ZADy6e3JYMmywDL8xxIs8fSkT+g4B4ghPAXKq/Mpsm4nC4AAAAASUVORK5CYII= "
+ id="image1638"
+ x="128.84706"
+ y="17.731943" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACxklEQVQ4jZ2TS2idVRDHfzPnfI97b25JbNMWK5EuuvLRqqWR KJJ05UIRsnKRRXGhUG1rCtVm4QMiBNMai4+CYAmitSq6lGIrRBcRikggVegiXRpq0xibxJvvfo9z uvgSY69ZFGdzOMP8HzPMSH9/P/8rBgYGbLPZBB8HhcidwvJC0lyLorDes/veP19/9ldj7R2Cf78e HB1/GLAetrYvxzYBj/9v5QapLZtsFBYCVgAEMeXbgkwznCcO/03iUYP3gAWQADUgq+KyXjr6efrX MidfCm7j1VpZoQAY1CIGsaj9YYrx8w41U1fl0/Pu20n347SgFrWIRQ0alyQWwBnElNwrKUfG/r52 w+29Lzx0MnlnsNpel0OjjYmP2tprsqovUWlbAQpFDWoddujD5MnHorFj9f0vLO3qCp56In58T9S3 L3zrTBNj1/Sjsi8FXFHatpOX3cTP2WvP1/NCKpEMv7ip9Dn0XP3CpfyXKx41iIEQ530JLpyippHr yycWx451/LEgx08tvTfUcc+2ELGI7ewITr3SfnBk8WZDUesJ/LpyLqh9e3x53wNxb3f11XcXH90T P9PXhhhUUYua/d3V+3dFH3zZQI3HlmALuEJ+ms6+ubAyeXbHV981Ll1OJz/bIWpbNmRkcHPvgdmn ++pd23Rd2XuOjs5fu5H3Hpg9ODw3fHhL191ROcLSNmIRs/WucGSw8/DIfCMR/lHOcyY+2ZllfPz1 whvvz01dzaZOzG+4mAi/zaSnzy1437kK9o5KxVZi6d5dO/1m2Aq7/bf3eLUWVq7MrikXSSNbfsS2 2Z6Hsp4HnXPOO+e9Lw9F8AKiqIKC6PWZxXMXE8Ai3Fxqzl38YvNO45tkCc0V0oS0SZ4C2JAoJoiJ YsIKWGanJfM9lFc1k28/8n3ViF/rqzVauk8IsyAAbBRFgKvW3Abz2TiM9waMMbcAQNYOtAX9g84A AAAASUVORK5CYII= "
+ id="image1653"
+ x="128.84706"
+ y="25.125357" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACXUlEQVQ4jZ2TPWhUURCFv5l7374XTUANhigmYmWhKCiKWFmI iFWIjUUstBCslCDYqIUYCxUsLQRjYSEIllpoF1DENEZRxLQRSYjR/O7b3XfH4u66LxFBHN7vcM+c c2fOlcHBQf4rhoaGfJ7nYFlSiPwrrFFIraFFUXgz9m7/fu3UB+f92kWBvLYq45W0wtR0Mjy6D/AG PRsWM18Fw1Yhz90s3n6kLMg5ntyQvt4krRQCXgAEcfHdXifs7Gd2vl1vZs7GP9nnKde31WEGeABJ UAfSJBcwRLhy1sXveD9/VZwYriGKro8ZjTSoRxziUR+f1YYbew+4Zl58S52iWdSiAMEhDl11FeYu 3smfjgXUo7GEAohD0pLsQlH3fYE3E3WaGq1aY3rOTl9ZWr6qQ8dTDCQAqCJpbK0HQuFQ/+jZ8oVb 839O9fzI4rFDWc9GbTNTIZhFcBEUdWcGuvq3VVoQy3Mu3f4xtxAeXN+4ubuCgTTino3E2swNQXxX pwwcSaJojKWVcP3e/N3Lm04e7ZA4RW0yG74ELgR1WGnKgktsdKTnwO60nW122wW0DS4CqG+Bm67I Mg7u8SXPWWvPCq7csAimbM9g3Lw/Mz6x8pv522wjdtvKzBZiPSnb04J9/FJ7/W7lt+eAvi1+544O UCO0ZFeX64v7facn1ClCCMFCMLOHI7tEABNBFFUQw3R6cl6oAh7h50I+8+Jx9w5nOfUq+Qq1KrWc Rg3AV0gzkow0o9IBnq8TUrfDxFM12ei98HKdE2t1em3Y6t8qlXqSAD5NUyCsWx/+wPwtnJkD59wv zan1S/2osRoAAAAASUVORK5CYII= "
+ id="image1668"
+ x="128.84706"
+ y="33.31049" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACPElEQVQ4jZ2TPWhUURCFv5l7375NIiFqEEmh2AuCgoVgEYSA pYGAkYiNaLCJCEIsVNDCJo3YRBQEK7uArbHUQsQiBAIhVSQJKPEHN3H/7h2L+za7GxGCw1Tz5sw5 c95cGR0d5b9iYmLC12o1sHIWRPYKawapNzWE4M04cfTbvYuLzvs9gte+ZLdenAS8waGBStlXwbCu po/L9mmlqyQwPsxgf5aXgoCXVBRXfOxonJ6tv/3QPQ9M3aVzDjPAA0iGOpCCXEgSXt4vb3xvg5c+ x8t36qBoX+pIezrUF5qFEGkEK2cMDTI02KklQB1RtJwKChAd4tAin79uvl8A9a10aKsBEIfkSbYC BEUd6gP+6Vxj8tF2LSjetzIrphS+KJInmR6IIcmWZ3NbN2cqwNRM5e5s273Tx7Mnt/tRK8CUiGYJ HKKiDhNLswv/tb2sONQjBdjIrM3cFMQjcm2sX51OPth8PH3g/NmetlURzJCYdjZ8BzhIYnaO62MD oHnmMc/O0QgIaAJrRNvgEEk7pyu4Ora/0TRUgI6bs7ZhuE7DKP6zATiHcwDrm82NzSatGUurobVz B7PFNE+6zlO5Mr06/65Cd4gqqBFbsqvbjcopv88TG4QYY7QYzezhjaELwz8SmQiiiGN85MjW2pZQ BTzCz1+1r29eHTzmrEajSu039Sr1GoN1RsCXyMtkZfIypR5YXlxfkIadIb2qlebhqfleJ7Zj7a7Y 9bKqlBpZBvg8z4HY2xf/wvwrnJkD59wfTzPegkjIWH4AAAAASUVORK5CYII= "
+ id="image1683"
+ x="128.84706"
+ y="42.103657" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACS0lEQVQ4jZ2TO2hUQRSGvzMzd+/mYRI0hkQLsZBYRdFObGy0 UBFWC4VYiJVpBAvBwlelWFhYiNgIK4jYWYlobWehSCrBymd0g+7FvXf3zhyLu4+bRCF4ONXM/I/5 Z47UajX+q+bn512WZaDVyIusF5Z7aefGe+9U2bWtceXkO+vcOsEfv0UXHuwBnMLURFJ1KSgKQNmC 6lrw5JiLK17ASXFcbB/2paE3H3pFL5120xv7LAM+jC1IHYBEGAtSiE9PkrYDyMS467nQFXbMSEFm ALAYh1jEYdznhpmbdXOz7saTHUvNGGMxrtviMBZT7ZIABItYTLdnNkcLx4cWTgxh46v1rc3MYSzS OyMOiUu2venZLt1QWF5efv7K56m9exFnSrYlLiIwQPC2a0lKCsYmzSRJkkfPWrfqqfZ8IRYqBNVC 2QeDsejKXyKk7Vaj8TPP82v3mJmKzhwdLtaVSAfKuRRRYdyAXmyr1crzHNi9s3K7nrx5H4pdxRVg BwQvq5WlSEBOHR79+t2fOzl24uAIStEBM1D2gcFjlO525MCG+9enz9TG60+ToBZ6cWDLgdGFFU/d 67O1jaPD0fFDE68Xs8UPvi+gPWUHaAAxIKweLAWGqty5vGVqU6X0hY0SumCf/u4ke92oI3TwIYSg IahqMSiCHtuPGDQHA2LaP34JKeAQfjazpRePN223mtFJyVq0U9oZeRvAVYirRFXiKpUhcHx6Kx3d RzFV7/Pp8y+HrWg/6b+4L1VKpRNFgIvjGAjDI2EN5l9lVS1Ya/8AqXPjLdbC3SsAAAAASUVORK5C YII= "
+ id="image1698"
+ x="128.84706"
+ y="49.867836" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAADFUlEQVQ4jZ2Tb2iVdRTHv+f8znOf5967u013lZU12TUKpRAt TMTeGM3AotpkiG29CIOMmnP4JgId0oJeDIOECv9E9CJLstEf7guHQYmRvlDEN0oNMrddWyp33W33 uc/z+51ePPuThhCdV79zOB/O93sOP2pvb8f/iq6uLgnDENDAs0T/FYst1WK21ooqVi+/uXfbJSNy WwvhkyJeeAL12Tvh0T+8vo/XAhAFljZWAqkCCgLcAvxZ0W5ew02ZhQoUAPL14qcsAUxJmQxYXh7Q 735msIAFJO++7i1pkiS9OWW27NGRkgEZsIEqAAEA8sAGoL4X+eDxaMtG8+N5+97n8W8llw3o2Y2m p1N+uGCf3iDL7xEwwNlEQ+LTgAWKh1eYD9/0Bo5Wiz/Zva/461eZ0Ql3+Otoc2/t2ED6+UUEBUjB QeKDAcDNiWFz7jK+OW2HBnNtj/v1OVlZSA32Zp5cl9p/tDbbQwLyE9kMAJaVjZIoy5GhWl93Nt/o gQQkIAOS1zozp87aSEVZlBN4brKz5stT0WPdt746HY+Mu0ceSCUqwAYsYLN4kTQ08JWr+kzvZPe+ CkwKTjXxbB13tNV1PJUDYWg4HBnHyhVzN1cAWpnRypQWWvxv3w8AVKY9XZgcE5EQC5F0tNUdOjFV swaULILBUjwTFe730mkhNsRGIf+ALYFnu5/blGvMyY7+G7+OaTXmiTJ/Wpx++6Py4J48aPb+DpzA iWyABUq3Ju2RE+UP+psPHS9v3X09jtUq1q4Khg4uuzoe/X493LQuAwJgMA87m8B4453S+tWZdOD1 dOV7XsqP/RkvXWxk1rvp3H3tiwPpwn2ezk1mAOoAYpA58Na9O7c3zd98Z3+pNOGSd6ElKB5ubVnm gw3AinnZ1emo8qjUSb4hgnU2duqcAg82z3D8UDTjE0CMfB0AqOPajUlCFYCAUP4rnDh5rKnVaIio inAGtSpqIV5txfT3Y6Mp+AG8AH6AVBoQjF2kSDcAEAJ+iZt3DWcM6fzPuyP09rSKVOR5AMT3fQAu k3X/Yu4WRtUAxpi/AeDsLgykTwSqAAAAAElFTkSuQmCC "
+ id="image1728"
+ x="172.05145"
+ y="37.360794" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACbUlEQVQ4jZWTPWhUQRDH/zO7+97dkfOSM58akgiJSpRgcwSx sVBBhQgxlWirINaCkoDRxggigghirCwkIiLYpAz2IgjBBEQLCz8SIYZc7t3bezsW7+XdE4ToMLCz O/z+Mzvs0tjYGDPj/21iYkJba5mpJWf/XSG0VAs1M2sBRvpWr44vGUNp+utPvF1O4o5WjA5nWfny 3Z96dgiAhqCztVrKVYkAkTj/fknOTSbx8Qrm7zIgKd3dFvimAUADAAis4jURh3PS2IoJrBKWAAE4 pmKYNNhsaUtWJSFINU8I4Dw1YWGQyjYGysaUlto6yUkTdgzWAvm14WKFar05etvAWjXZ5n3yDUBe LK4BiFMg7cTdnA1mXwWRk0bULPPmXbT79DqAff1q7nZxqJdBXjxZBiCOhbXSeupi8eQRfzNAaJtw 5LAZoJCjR5OlwT4PrAEPKewiBmmQaiuZxzfKJw77+NO6yjx3p1w5kCPSIC0wkoEJrMAarHe0mCfT 7aMjXkoWcvRwsny0UgCr2AVaXAo7AmmwBimQ6u32X97rOTjoAWgp0IPr7ePHiqx0rA7WDhxPmwFE EWIsTe/q8p/OdO8dMNNXdl440wrWoNQVhJFO2znULM/MrnxbjbJX3b/H//DJXr61kn0CpSJfOtsp CUwQB9tQz+c3lj/XsZ31dOjzp0jSylEtNI3hF/eHgloozrnIiYi49LUKEYjACsQwRpWiCIgSeG29 /mPh9UC/EoswQFiDrSOso2EBgjbwfHg+vDyMD1hZXGQbVQBoAj7armsLec0u6Uz+1i6av6UmXqB9 ANoYw8wB8tveNms+4Jz7DSBq4QrZYaiyAAAAAElFTkSuQmCC "
+ id="image1743"
+ x="171.65993"
+ y="18.511703" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH3wMGDx4InLHRhgAAAqNJREFUOMudVLluFEEQfVVdc3h3WRvvgA1emUPisIRkLgkJQ0QG AcIRICd8ARIfwC/wCaQECBGRcDpASCABNo44vDgwYMyCZ73YM7PTXQRjgxGXRSd9qF6916+rmkZH R/FfY2xsTNI0BTT0LNF6YbmlLGdrrahieNvny2enjMg6wbMfvUtXDwIQBTb3tENJAIX+Gvmbo6gq gW8JEAIAApli/iNS16zYQBUAAwB5YAMWsImXzfR7zmFABiQgAcvnRdOYY2WzGlYukhX3NGCZX9Bb j6DcE/Xg8cu4p5wfGiq1l9Lxp5wh6q24+xPxts3JicMMDgsNAgDOLOdyfTzoqtYfTPYz65HdTZvE V25Wy8En8bY8a9SIdPfWVhQ1Hk41h/cEhWwBAMvjExumPuz9+tZfSo1TujvRb7jPWiXuU2WFqppX s9Xm4tD++vPhoaCwQADkuUzNRPNxCYBTqJJVOCWoqi08JAIyy+1lTzmw1oNTLQxTpX07v2zpbQe+ UyUiNbxirjFKpAQQKxO2RonhDhtfvzO7nI4fzF/PvOHB+ovparPl7R1sD/TGraXUZnlU2zjZqM7H /qZqOrz9/UBNVWUN2FI5lPOn9Ma96TMj4VxcqfqxUHLydNfsR3v/SXN0pDy3UMmzdq2SHDsQLrT4 B9g6gKW3my6c9mY+5ANZ3L/R1Lo3AKj3ybmTfuNdvqkW1yPTXSmtPO0aZoAFCkPYOfBzhZMKY9eg /Fx3a5jVAcQA/a08v+8IACvcquxkqdM+JBWB68A655w6p6pFoxAKt8EMMECcNVuEBICAEC+m87ev 1XYYTdFJkC4jS5ClyDMAEB9BCC9EEMLvAgTvJqmjR1F01eu8/+KdkqEVkfSvtkzgdzwPgARBAMCV ym7dH5BRNYAx5hsrAC7oKRKbHQAAAABJRU5ErkJggg== "
+ id="image1758"
+ x="172.05145"
+ y="64.975876" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAAC+UlEQVQ4jZ1UTWhUVxT+7rnnvTeZScwYo+PE6NDW2tIKgahY a6gLFVFbSgJCF7GlNIFSDAE3QSqiJP7hotK6aFAQsQthwL+NDjGgtpTS0hREdNMumrRKHcdqk8y8 9+bdd1y8N1aNgng4i8vlfPd8nO87V3V1deGloru7mz3PAyRhGaVeFBYY5QdkjGERtOXu7froumZ+ QfDfd6ztx9sBsADz0lMJdgGBzKx8xlXzLHZsowBSAKCgNBSDGMQ3Jig6gHTtwDfGNYihGEqDNEQA EAAoq1anT47I0PEQpOPnotS67ytT+AXQUVkqYkQAgBg5fD7sHfJTSaq1raVix6YtO/wzVwWkQYmI PwFAqEH6ZMH0H3LblvDBvhRUTLgS6B+v44drcnh7MttMn+x2Cz8LyHmMtqHhs9XewelVbdaFI+mm tBWxLVf11l3ljp7J73+TxYvs0W/Tr7XyloHpc1dCFc1x06bNG9e86dhYudQqXc7I2Pwop3/KbH0/ oRR29tSbXzMylpGxzMTFuW/kdKpOr36nPZ/PM4D6hGOz+ndSyj41kQZQ9uTjnfdOj7p7tzUOfFpP FEs2WQmmKsKabeaY9vLXm04caL5dNB/03f2riGmfPh+6f3q08mVP48BnjaRjeW6Ohx/2lyoevtv/ 9tzZyRhsDDrXNuQPZ/+YCNb2/HOriN1fNI+P5Pb0zSEdq33zT1nfe6f0ICwMZzvakyK1aZsQULxh dcOJgy23i2Zw+P6rOac165B+pDNv21eqeHLm65blS5OAxiNwaBAJ27muMf/NQkX0vz1iqdm2qXAs 996KBhALKOrMACQEFAEKwIaOWW8troPSUE8Y++jggtZ5VmRlgARhDDZuuTq1jOsZYRVB2DI7DNxQ RKJFURAFZNOQACBAkV/6T8EFwFB4MOkVR07NeUWLh6oLrwLfhe8h8AGAbTgJWAk4Cdh1AOPWNVWV dwGwAn4P5vdfSurYNZj5KTy1li7sqmUBYMdxAITJVDhzcZ8TWkQDWuuHTxMYMCAuIt4AAAAASUVO RK5CYII= "
+ id="image1803"
+ x="128.91209"
+ y="57.512821" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAAClklEQVQ4jZ2TTWhUVxiGn++c7947MzFjdGoauqgtXVhU8K+b BrRCCSW4qAaVIlN0k24qKAFXahAVRbCUKsEUBW2zaCmUWlpFVAqF7LpoKVkUagmKPxipYDTx3jtz 7+fiOhjpwrFndw7vc3jf77xHBgYG+F+rXq9rkiRgpSATaRdrZpI2XZZlasaKxfeHP5rwqm3Ct6aC obOrATXo7npU0hgMA0CYekB3tVAa8O80teoz+JWqRmEm4KSQi0cUpzj98if5/DtwivPFycGz/DDu cIoo4nEeM8ABSNDS+bErtvdUc91KfXqdVwJ9Z7kOHm1e/o2WrKNwVOT0OAVGz6f7RhpjByv97ypm MykfDz++PWUXvihn5rYNJ6f3uk3vKa5U+FeA3CP+19+bu4/HJ/dU+nsjYCa1T47MXL9j3x+fV5sv Ozbo9TtsPxAvOdf5+mvRHNuZw/l1q0tb+0rHvo5v3JVHia/vn/1r0i6NdL3REyA6McmZ8+ng5vLS tyIkKkbrgDzzOBWno/vm966INuye/ucWQ/XOiyMLFy0IcH5i0jYOPdz6QfnIp53gISQ3K+AsdziP 85Vy8NXh2qq3w7FLydo15VdrIaKInvgm/vD9ymdDXVEY4NQIzFqZ86YQKCKAwOihRX/8nRIqQvH4 O7ZU1ywLaZXIkrlwJht33vvxl9k2G7ZrW4dZNy3bSPvNBkHmDgxeBjZ4Ztty+tZXu3uiFxBSVJ9V Sys3x1twFs8O9vfpFiVvkOV5nluem1nxUQQTEIdz4EDc1LXpn8djQBEePEzuXfm29qa3hEZM8pg0 Jk1opgAaEpUISkQlwjIot/+UhvUCKnCt2bPrasW3XP03vT2/jQkbQQBoFEVAXunI2x6YN/PgvX8C omvy7Os8fRMAAAAASUVORK5CYII= "
+ id="image1818"
+ x="128.91209"
+ y="67.334976" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAADS0lEQVQ4jZ2UW2icVRDH/zPnfJds3Ny62RhrLF5IfahWU22h ghUxkCpi2GqrNMUH0RYCbTWltAql+CKmDwkkwWgfLFJtKzbYgkIaFUEs4g3aCnkRi0pra5rsbnb7 7X6Xc8aHTTTig+IwL4fDn99/zswZyuVy+F/R19enwzAExHcM0X+VJYaihI0xWgSrV8wdePoHpXXt rhhg6mtc+An5+YQJLQ363pV4uAv1/oL40u/OS293AdACZJvKvq4CAuDbaXnjlOQ20MAmammAiFwr 4otzGBiye7fSyg4CkGnQnmsI0AQABFIAPvvefnzWHt7nQMAMQAjItqB3Ax57QHYPm+ef4DWdBFYQ AcAAQA5YlUL13hl5dbs3/SufOguQAulajk1IZPVr/d7oSTHQ4PqaTQYAKLAeO2l2b/UvXuGNu6ql CoPVn/nNNJ56OVKO2rbRO3pGwAvVMwBYZaB+vgJi7t0TbHrE29LtgzVYn/jUvjIeHdxRVw7o2YNh 1yrny/MW7C2xbThf4mqInv7yow96QwNpz9VG9PhE3P968NBa//bl7kcjjb/NypZ9ge9xHLuQRbI1 ykAFEV2vSFuLAimwOvxhuH/0+rHB5u51PljV+Trl02xBmNmICytSExvLTY1OR5tzeqx19Fhl8J3K hYvy+XfJxHCme20KpPNl7n2xYAxNvtlaicjzXBEA0ABsQp6nrdCqO/z3h7K5nVdv63CPH2qFABCA 9g7PzhRkcjybL9lb2h2BliW2CaR2PNM0eKS0fnVqYqQ9NgzSYAXWYNXR7ky+dVND2hk+Wt6+udEK /0U2FmDducLJLqt+MBVs7klHdy02UQBg/wsZR9P4icK6e1KZZrdQVEsfDDXCzr7ML1ftoSPFuXmA 9QJcqcvX5MDYnOPpbY83g7VgCVksQAwQK+x5LvvVuWDk3fxMPrk56xiDSzPx8jbnyZ6muzt9CEAA WGAXbVeDuLxG36BhYyT2/jvtfZ3WkhSLiWJKp5msEENigAHiaHaeUAWgQSiWwpmp48tuVRIiriKs IKoiCpFEADDvwvPh+PB8uHWAxuXzFMt61H7Vj8mNuz5JKZLaxP5zKcjfj1W4seMA0J7nAbCpevuv G2QxlIgClFJ/AEbbWrTohQv4AAAAAElFTkSuQmCC "
+ id="image1833"
+ x="128.91209"
+ y="76.315231" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAACr0lEQVQ4jZ2TXYhVVRTHf2vvdc65944OSjNTd8LSF8FIhHzS yHqpmB6ihh4ixqfALIgxE8GHehDUCgUji3qQHg0hkCCIPhCCKKggmqIISZAcp4aJLK9zPu7eq4dz 752rFYSLDYez9/qt/3+ftY5MT09zQzEzM6NFUYA1kiDyf7FukLLrQghqxpbbf3/x8e+86nVJVSDx /wJf/C3Z+/ZdgBpMrLnS0BwMW8nIK/a9Frfdyc4Hrrc0NqpZGgRUAATx9bNP2q5Xup/PcfoT65Ru 98N+qK7hPGaAAkiC8yC1eN5lz/Hyyx/s/eONuXPxqSPFSNPvfHCIdyMwgPE4rc8CHHgj/+L7+OHr I+vGZOM6Wk3/zMvLzYZ/7D7FQAzX6BUBiB7xOI/ziJ99onn2rdH3Po2dyuN0anv62cnRu7ekvRxR JKttO4DgcB6nOPWq6yfTtauTs1+HmReudkqH6OR40h5L6gRcDfeVY/A4RRTxveX80edHLyzEXYc6 ncr1TPWtQUo0q+EQB8c6WOvb2Qdvjv94Ppw8U/ZLK6I4NRJbUe5KvYvTKvqf5+2PjiB+fE367qsT Gzekl5b4ZZGBuKFDcJCeH/FJqidOdzZPz8+djzh/283ZwqJteuTSNz+F/oU14mpYgRDBKVaPiB15 bkJEHn124cyJya/m8tmXlk4dbU/d0+o1WYBezxWIgV6fDSBLOLa/jfx6/5MXl4t46titD+1YNTye NqxsEcSBMDTFh/e2E3U7tram7l09gPrKzoh92/nV6spWXaXEihBjjBajMzv49B1Ad9kExOEcOBBX Lv0p5IAiXP6rWPzonZs2eCuocoplypyyoFsCaErWIGmQNUiboMx/K5Vtp/6rznVvmf245cVWvsi1 Yde+5qRVkgCaZRkQWyPxH8x/hTfz4L3/G/deAyR1GLpRAAAAAElFTkSuQmCC "
+ id="image1848"
+ x="128.91209"
+ y="83.798767" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH3wMGDwkHCY1IgQAAArhJREFUOMudlFuIlVUUx39r7/Vd5pwZG5njFCpGCUEgBBYGJgYJ STVPh+gCEyFR6MsY9SgTQopIIYjgwzyolNDlQYgQBrvQW70MQQQRNNiLgzXNpMejnXO+b+/Vw3fO 0QkfpMWGvRas/7r819pbms0m/0ump6e12+2C5UkQuVdYGaRXuhCCmvHYg6vvvfKzVwWWVmi+3bsr 5oeP00q58mfyztntgBpMjrdz7YBhjGdAdldwYq1KaazTLA0CKgCC+Oq+b4yF8yEas3PliU/C1FPu zCEdq4EBCoDhPGaAA5AE53GK84iP+GMfxfPzcf5k/vtV9h0NwTxueBRXr4I5ADxOEY9oEJ2dK+e+ KL85XX96ezJ/srZ8jZdni9Y/lY/iPC6v6ncA0SP9wGX0z+zIGrWRxSVwOrE+ufDB6IEX814Y+Igi 2R1lBzeoR7NM9zyZL1yov3nk1uffljg/MZ7s2ZE31ieVA64C0+cgBo9TTKpOACIfvrtu5nirNqJT u9I1pBuQEs0qcIgO57E1W/LSs6O1mr51ePW7c5OPbPbDsAhGYjboOZaC9Esqor/WljJ6xE/trp86 NPHqTOvvtnQKNyTc0DvAQaohIR6nbxxe3fna1ZUbgvjndo1u2+b27l9ebbtBwxpxt8EhMiQjSfy5 Yxu3bEqbB/9Yacn+9//68Zfiy9ObNk6mg+ge+l1UmRluCKJj9eSzE5s3NJKtey//erm8dGbL/Y3s NtVObZBZAYsgDgTB4InnFytqtk7m5U1eeP1KZS5cfLgiDJwR++DQuVW0H9dRJRY4xC9imA0GJ4hg ESsfxYG43kpL6ACKcP1Gd/mrTyce8tal6HBpRoouvS5lD0BT0pwkpf39xXQElKWfpLCdVK/qt/KB g1/XvNhgkP8VW2t2SIskATTLMiDW6vGePyBv5sF7/y9QYPjURmwR6AAAAABJRU5ErkJggg== "
+ id="image1863"
+ x="128.91209"
+ y="92.96611" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAHnRFWHREYXRlAFdlZCBNYXIgIDQg MTI6MDA6MDcgMjAxNQqdw8IkAAAChUlEQVQ4jZ2Tb4tVVRTGf2vtdc4+ztxxHMfUspJsjCa0pImg ICKR6M+7ESFhvkPQB+ir9KYX0ruCXpRBQVERESRTFEhOqDcdJ9EZnXvPvWfv1Ytzx+5girRYsPde 7Gc/z15/ZHFxkf9lS0tLVtc1eFUkkQeFNUkGjaaUzJ3nDl5//53lYPaA4MurxXsfPA+Yw95dtyrr g+N33/yP0J6dFsskYAIgSGjXeyJ9bKcBd0ABpEADami42Qt//KUNAQmIIYba9Y1w4aq6hq1rk+1j 7T8Dams3/PMfmr0zum+3fvxN7lR+/AXrrvm359Ije2RmSj/6Mj+0i+MLAa1aDQaQQ53C2R8Hp05U RQA4Osf5y/nrn9Ola3769VgEcJ49zPJK+u4XP/pUHJOd9PeLLMzHojDUUENs7tHy+2U/eWJHYSPx qB05FC+tCRrbFBiQU7jdk4dnC+7UWgB2T4fJjtFsS3gVQ0oF2b1lTlmnpoq1DRnRbvn6pmzc1hGt jLw3VA2lOyPZuZG5g/Gn3xqC0aZUwsoVP/J0/OSrgashbZ7Dryv5sf2lu/mYbKmivfXq1Iefbs4/ WcRKrq6muvY3X+l0V9OZz3rPzJVmcrE7jIW89uLEjXX9F5wyqM3slNNvF39eaXoDPzYfZ6cVOLDP Tr1RXug2g8ZfOlZOd3RU2jFmUMMJwqED2ztc3JTDj28LOmPMnkEU5H7teeckgDp5S3Z/c3hrwTpG HpJyztlzdvd2UAQXEEUVFEQHf68LfcAQbm7U186emX0ieM2wT91j0GdQ0wwArCRWFBWxotwBRvec DP1l2qk63+x/94uJID7WIPdRT59yWBSAxRiBPDGZ78Lcy4J7gBDCP7Bb/H3XDEi9AAAAAElFTkSu QmCC "
+ id="image1878"
+ x="171.95357"
+ y="73.756836" />
+ </g>
+ <g
+ style="display:inline"
+ transform="translate(0,-293.29582)"
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="hg">
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="350.44128"
+ x="161.98447"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="340.55765"
+ x="161.78871"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-0"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-4);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="311.22232"
+ x="118.58418"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-07"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-5);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="319.30548"
+ x="118.58418"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-61"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-6);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="327.04456"
+ x="118.58418"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-08"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-50);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="335.77579"
+ x="118.58418"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-69"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-1);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="343.71329"
+ x="118.58418"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-7"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-10);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="331.44443"
+ x="161.78871"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-00"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-0);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="312.46786"
+ x="161.39719"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-74"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-34);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="358.58945"
+ x="161.78871"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-4"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-2);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="367.39679"
+ x="161.69083"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-83-48"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-22-6);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="312.66852"
+ x="87.170265"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-9"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-67);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="323.11725"
+ x="87.170265"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-2"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-87);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="333.56601"
+ x="87.170265"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-02"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-9);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="344.01474"
+ x="87.170265"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-32"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-7);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="354.4635"
+ x="87.170265"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-1"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-15);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="322.51932"
+ x="161.28333"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-2-0"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-87-4);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="312.22437"
+ x="53.176659"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-2-7"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-87-7);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ style="display:none"
+ inkscape:label="verlauf"
+ id="layer2"
+ inkscape:groupmode="layer"
+ sodipodi:insensitive="true">
+ <rect
+ y="2.461395e-08"
+ x="2.4613952e-08"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect1462"
+ style="opacity:1;fill:url(#linearGradient1483);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10248649;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:label="mode"
+ id="layer3"
+ inkscape:groupmode="layer">
+ <text
+ id="text1583"
+ y="60.181213"
+ x="143.04724"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="60.181213"
+ x="143.04724"
+ id="tspan1581"
+ sodipodi:role="line">mode_and</tspan></text>
+ <text
+ id="text1613"
+ y="49.223892"
+ x="142.85149"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="49.223892"
+ x="142.85149"
+ id="tspan1611"
+ sodipodi:role="line">mode_darken</tspan></text>
+ <text
+ id="text1643"
+ y="20.738607"
+ x="99.646843"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="20.738607"
+ x="99.646843"
+ id="tspan1641"
+ sodipodi:role="line">mode_dst</tspan></text>
+ <text
+ id="text1658"
+ y="28.225565"
+ x="99.646843"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="28.225565"
+ x="99.646843"
+ id="tspan1656"
+ sodipodi:role="line">mode_dstatop</tspan></text>
+ <text
+ id="text1673"
+ y="36.597782"
+ x="99.646843"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="36.597782"
+ x="99.646843"
+ id="tspan1671"
+ sodipodi:role="line">mode_dstin</tspan></text>
+ <text
+ id="text1688"
+ y="45.344177"
+ x="99.646843"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="45.344177"
+ x="99.646843"
+ id="tspan1686"
+ sodipodi:role="line">mode_dstout</tspan></text>
+ <text
+ id="text1703"
+ y="52.687408"
+ x="99.646843"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="52.687408"
+ x="99.646843"
+ id="tspan1701"
+ sodipodi:role="line">mode_dstover</tspan></text>
+ <text
+ id="text1733"
+ y="40.086823"
+ x="142.85149"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="40.086823"
+ x="142.85149"
+ id="tspan1731"
+ sodipodi:role="line">mode_lighten</tspan></text>
+ <text
+ id="text1748"
+ y="20.676453"
+ x="142.45996"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="20.676453"
+ x="142.45996"
+ id="tspan1746"
+ sodipodi:role="line">mode_min</tspan></text>
+ <text
+ id="text1763"
+ y="67.982529"
+ x="142.85149"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="67.982529"
+ x="142.85149"
+ id="tspan1761"
+ sodipodi:role="line">mode_or</tspan></text>
+ <text
+ id="text1808"
+ y="60.379169"
+ x="99.711906"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="60.379169"
+ x="99.711906"
+ id="tspan1806"
+ sodipodi:role="line">mode_src</tspan></text>
+ <text
+ id="text1823"
+ y="70.435181"
+ x="99.711906"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="70.435181"
+ x="99.711906"
+ id="tspan1821"
+ sodipodi:role="line">mode_srcatop</tspan></text>
+ <text
+ id="text1838"
+ y="78.339676"
+ x="99.711906"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="78.339676"
+ x="99.711906"
+ id="tspan1836"
+ sodipodi:role="line">mode_srcin</tspan></text>
+ <text
+ id="text1853"
+ y="86.758667"
+ x="99.711906"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="86.758667"
+ x="99.711906"
+ id="tspan1851"
+ sodipodi:role="line">mode_srcout</tspan></text>
+ <text
+ id="text1868"
+ y="94.756699"
+ x="99.711906"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="94.756699"
+ x="99.711906"
+ id="tspan1866"
+ sodipodi:role="line">mode_srcover</tspan></text>
+ <text
+ id="text1883"
+ y="76.436096"
+ x="142.7536"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="76.436096"
+ x="142.7536"
+ id="tspan1881"
+ sodipodi:role="line">mode_xor</tspan></text>
+ <text
+ id="text2324"
+ y="27.852257"
+ x="-0.92593241"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="31.70475"
+ x="-0.92593241"
+ id="tspan2322"
+ sodipodi:role="line" /></text>
+ <g
+ transform="matrix(0.76514981,-0.76514981,0.76514981,0.76514981,20.728761,-65.405566)"
+ id="g2472">
+ <ellipse
+ cx="0.75251567"
+ cy="185.71321"
+ id="circle1312"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.06206879;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2427284"
+ ry="1.2400248" />
+ <ellipse
+ cx="1.9952441"
+ cy="185.71321"
+ id="circle1316"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.06206879;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2427284"
+ ry="1.2400248" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.3738801,184.63932 c 0.3845017,0.22151 0.6213642,0.63088 0.6213642,1.0739 0,0.44302 -0.2368625,0.85238 -0.6213642,1.07389 -0.38450149,-0.22151 -0.62136429,-0.63087 -0.62136429,-1.07389 0,-0.44302 0.2368628,-0.85239 0.62136429,-1.0739"
+ id="path1320"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.06206883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ transform="matrix(0.03554479,-0.03554479,0.03554479,0.03554479,152.45292,54.459481)"
+ id="g2546">
+ <ellipse
+ cx="82.013954"
+ cy="223.49741"
+ id="circle1312-4"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.33611465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="26.751408"
+ ry="26.693211" />
+ <ellipse
+ cx="108.76537"
+ cy="223.49741"
+ id="circle1316-6"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.33611465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="26.751408"
+ ry="26.693211" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95.389652,200.38041 c 8.276918,4.76829 13.375698,13.58044 13.375698,23.11702 0,9.53657 -5.09878,18.34873 -13.375698,23.11701 -8.276913,-4.76828 -13.375704,-13.58044 -13.375704,-23.11701 0,-9.53658 5.098791,-18.34873 13.375704,-23.11702"
+ id="path1320-2"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.33611512;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g2632"
+ transform="matrix(0.84320162,-0.84320162,0.84320162,0.84320162,66.686789,-26.703007)">
+ <ellipse
+ cx="1.2722983"
+ cy="113.13418"
+ id="circle1312-1"
+ style="fill:#ff0000;fill-opacity:1;stroke:#111111;stroke-width:0.05632625;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.1277523"
+ ry="1.125299" />
+ <ellipse
+ cx="2.4000525"
+ cy="113.13418"
+ id="circle1316-4"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.056;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.1277523"
+ ry="1.125299" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.836175,112.15964 c 0.348927,0.20101 0.563876,0.57251 0.563876,0.97454 0,0.40203 -0.214949,0.77352 -0.563876,0.97453 -0.348928,-0.20101 -0.563876,-0.5725 -0.563876,-0.97453 0,-0.40203 0.214948,-0.77353 0.563876,-0.97454"
+ id="path1320-20"
+ style="fill:#ff0000;fill-opacity:1;stroke:#131313;stroke-width:0.05632627;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ transform="matrix(0.99754438,0,0,1.3477257,118.56494,-38.978107)"
+ id="g2668">
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#111111;stroke-width:0.07367971;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2634-0"
+ sodipodi:sides="3"
+ sodipodi:cx="2.1141753"
+ sodipodi:cy="49.957256"
+ sodipodi:r1="1.6418802"
+ sodipodi:r2="0.82796711"
+ sodipodi:arg1="0.51173885"
+ sodipodi:arg2="1.5645129"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 3.5457213,50.761275 -1.4263435,0.02393 -1.41727634,0.0098 0.69244624,-1.247216 0.7001555,-1.232294 0.7338973,1.223283 z"
+ inkscape:transform-center-x="-0.015687632"
+ inkscape:transform-center-y="-0.3457254"
+ transform="matrix(0.87092496,0.01050567,-0.01050567,0.87092496,-0.02306479,6.3294581)" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#111111;stroke-width:0.07367971;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2634"
+ sodipodi:sides="3"
+ sodipodi:cx="2.1141753"
+ sodipodi:cy="49.957256"
+ sodipodi:r1="1.6418802"
+ sodipodi:r2="0.82796711"
+ sodipodi:arg1="0.51173885"
+ sodipodi:arg2="1.5645129"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 3.5457213,50.761275 -1.4263435,0.02393 -1.41727634,0.0098 0.69244624,-1.247216 0.7001555,-1.232294 0.7338973,1.223283 z"
+ inkscape:transform-center-x="-0.019252065"
+ inkscape:transform-center-y="-0.42428168"
+ transform="matrix(1.0688173,0.01289278,-0.01289278,1.0688173,0.49992127,-3.3880995)" />
+ </g>
+ <g
+ transform="matrix(0.26458334,0,0,0.26458334,19.177821,84.905359)"
+ style="display:none"
+ inkscape:label="Layer 1"
+ id="layer1-3">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccc"
+ id="path2818"
+ d="M 8.0753894,16.339994 7.7291001,4.7291 16.2709,12.845454 12.34629,12.732728 15.462892,17.918176 13.385156,19.2709 10.153125,13.747272 8.0753894,16.339996 Z"
+ style="fill:none;stroke:#cccccc;stroke-width:1.45820022;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g5433"
+ transform="translate(118.58395,-21.549189)">
+ <circle
+ r="0.92604166"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.4920814;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2701"
+ cx="0.92661911"
+ cy="72.893448" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path2818-0"
+ d="m 1.4737935,72.471314 2.034191,1.457639 -0.7958544,0.148129 0.8273747,1.034817 -0.3631424,0.397835 -0.8637437,-1.10619 -0.260633,0.873114 C 1.8590114,74.317249 1.6664854,73.430796 1.4737935,72.471314 Z"
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.31622466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.29957203,0,0,0.46345071,3.6739835,52.183838)"
+ id="g5044" />
+ <g
+ id="g3791"
+ transform="matrix(1.0769231,0,0,1.0769231,118.58319,-26.077421)">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 2.0303352,58.172273 0.59837,-0.994693 -0.59837,-0.994692 H 1.6650964 l 0.4662623,0.777104 H 0.00986509 V 57.39517 H 2.1313587 l -0.4740334,0.777103 z"
+ id="rect5024"
+ sodipodi:nodetypes="cccccccccc" />
+ <g
+ id="g2810"
+ transform="matrix(0.93986729,0,0,0.93986729,-0.03197671,3.4128807)"
+ style="fill:#ffcc00">
+ <rect
+ y="58.652393"
+ x="1.8520832"
+ height="0.34969932"
+ width="1.8520833"
+ id="rect5063"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.18708868" />
+ <rect
+ transform="rotate(90)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26075476"
+ id="rect5026-9"
+ width="3.5977426"
+ height="0.34969932"
+ x="55.40435"
+ y="-3.7041667" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3841858e-7,-3.2480431)"
+ id="use2805"
+ xlink:href="#rect5063"
+ y="0"
+ x="0"
+ style="fill:#ffcc00" />
+ </g>
+ </g>
+ <g
+ id="g3784"
+ transform="matrix(1.0769231,0,0,1.0769231,118.5694,-26.752294)">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 0.78756307,64.956237 -0.5983699,0.994693 0.5983699,0.994692 H 1.152802 L 0.68653957,66.168518 H 2.8080332 V 65.73334 H 0.68653957 L 1.160573,64.956237 Z"
+ id="rect5024-9"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.17583853"
+ id="rect5063-4"
+ width="1.7407125"
+ height="0.32867095"
+ x="1.8880638"
+ y="67.311699" />
+ <rect
+ y="-3.6287766"
+ x="64.258965"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-9"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="rotate(90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect5063-4"
+ id="use2805-0"
+ transform="translate(2.262973e-7,-3.0527294)"
+ width="100%"
+ height="100%"
+ style="fill:#ffcc00" />
+ </g>
+ <g
+ transform="matrix(1.0954534,0,0,1.0769234,157.1241,-91.281786)"
+ id="g3360">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 4.5953859,104.58471 0.9946926,0.59837 0.9946926,-0.59837 v -0.36524 l -0.7771039,0.46627 v -2.1215 H 5.3724889 v 2.1215 l -0.777103,-0.47404 z"
+ id="rect5024-8"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ y="-106.00382"
+ x="-7.2820415"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-8"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="scale(-1)" />
+ </g>
+ <g
+ style="fill:#ffffff"
+ id="g3409"
+ transform="matrix(1.0336835,0,0,1.0336835,129.28321,-84.707192)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.82116723px;line-height:7.77089214px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.31083572"
+ x="-0.24331611"
+ y="108.46983"
+ id="text3396"
+ transform="scale(0.76832539,1.3015319)"><tspan
+ sodipodi:role="line"
+ id="tspan3394"
+ x="-0.24331611"
+ y="108.46983"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.82116723px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.31083572"><</tspan></text>
+ <use
+ style="fill:#ffffff"
+ x="0"
+ y="0"
+ xlink:href="#text3396"
+ id="use3398"
+ transform="matrix(-1,0,0,1,3.5971101,-3.2154056e-7)"
+ width="100%"
+ height="100%" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.2874639px;line-height:7.14832497px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28593299"
+ x="1.4039675"
+ y="140.59174"
+ id="text3402"><tspan
+ sodipodi:role="line"
+ id="tspan3400"
+ x="1.4039675"
+ y="140.59174"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.2874639px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.28593299">/</tspan></text>
+ </g>
+ <g
+ style="fill:#ffcc00"
+ transform="matrix(1.0954531,0,0,1.0954531,115.37538,-22.818731)"
+ id="g3546">
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12825248"
+ id="rect5063-5"
+ width="0.92604166"
+ height="0.32867095"
+ x="5.4030371"
+ y="40.07523" />
+ <rect
+ y="-6.3290787"
+ x="37.022499"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-3"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="rotate(90)" />
+ <use
+ style="fill:#ffcc00"
+ x="0"
+ y="0"
+ xlink:href="#rect5063-5"
+ id="use2805-2"
+ transform="translate(2.2910767e-7,-3.0527295)"
+ width="100%"
+ height="100%" />
+ </g>
+ <use
+ height="100%"
+ width="100%"
+ transform="matrix(-1,0,0,1,241.18019,3.1857142e-7)"
+ id="use3548"
+ xlink:href="#g3546"
+ y="0"
+ x="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.60889387px;line-height:8.15279293px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.32611173"
+ x="36.163624"
+ y="4.3679895"
+ id="text4948"><tspan
+ sodipodi:role="line"
+ id="tspan4946"
+ x="36.163624"
+ y="4.3679895"
+ style="stroke-width:0.32611173">Features5: 21. Overlay Modes – Alpha Blending with PorterDuff and Operators</tspan></text>
+ <g
+ transform="translate(177.63344,-54.807739)"
+ id="g4518-0">
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:url(#radialGradient4508-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03331434;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2270-8-4"
+ sodipodi:sides="14"
+ sodipodi:cx="21.691233"
+ sodipodi:cy="90.587601"
+ sodipodi:r1="1.7238894"
+ sodipodi:r2="0.71439058"
+ sodipodi:arg1="0.56672922"
+ sodipodi:arg2="0.7911287"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 23.145612,91.513115 -0.952132,-0.417477 0.406537,0.956853 -0.676704,-0.789248 -0.04889,1.038486 -0.267247,-1.0047 -0.494627,0.914433 0.195141,-1.021157 -0.8424,0.609264 0.618879,-0.835362 -1.023327,0.183425 0.920041,-0.484114 -1.00157,-0.278745 1.038977,-0.03698 -0.78144,-0.685705 0.952131,0.417477 -0.406537,-0.956854 0.676704,0.789248 0.04889,-1.038485 0.267248,1.004699 0.494626,-0.914432 -0.195141,1.021157 0.842401,-0.609265 -0.618879,0.835363 1.023326,-0.183425 -0.920041,0.484114 1.00157,0.278745 -1.038977,0.03698 z"
+ inkscape:transform-center-x="-0.04035562"
+ inkscape:transform-center-y="0.12449891"
+ transform="matrix(-0.62507979,0.90817784,-0.87652981,-0.60951466,94.820828,129.29972)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.27836347px;line-height:10.24488544px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40979543"
+ x="0.89888632"
+ y="94.957306"
+ id="text2332-4"><tspan
+ sodipodi:role="line"
+ id="tspan2330-2"
+ x="0.89888632"
+ y="94.957306"
+ style="stroke-width:0.40979543">+</tspan></text>
+ </g>
+ <path
+ transform="matrix(-0.62507977,0.90817783,-0.8765298,-0.60951468,272.43612,84.481221)"
+ inkscape:transform-center-y="0.12450069"
+ inkscape:transform-center-x="-0.040354841"
+ d="m 23.145612,91.513115 -0.952132,-0.417477 0.406537,0.956853 -0.676704,-0.789248 -0.04889,1.038486 -0.267247,-1.0047 -0.494627,0.914433 0.195141,-1.021157 -0.8424,0.609264 0.618879,-0.835362 -1.023327,0.183425 0.920041,-0.484114 -1.00157,-0.278745 1.038977,-0.03698 -0.78144,-0.685705 0.952131,0.417477 -0.406537,-0.956854 0.676704,0.789248 0.04889,-1.038485 0.267248,1.004699 0.494626,-0.914432 -0.195141,1.021157 0.842401,-0.609265 -0.618879,0.835363 1.023326,-0.183425 -0.920041,0.484114 1.00157,0.278745 -1.038977,0.03698 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.7911287"
+ sodipodi:arg1="0.56672922"
+ sodipodi:r2="0.71439058"
+ sodipodi:r1="1.7238894"
+ sodipodi:cy="90.587601"
+ sodipodi:cx="21.691233"
+ sodipodi:sides="14"
+ id="path2270-8-1-8"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03331434;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <text
+ id="text1748-7"
+ y="31.31386"
+ x="143.21733"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="31.31386"
+ x="143.21733"
+ id="tspan1746-2"
+ sodipodi:role="line">mode_max</tspan></text>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="text3594-0"
+ transform="matrix(0,-0.11883041,0.10888145,0,19.603197,103.15055)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m -10.859772,10.5 -11.132812,-29.160156 h 4.121094 L -8.6332092,5.890625 0.62460327,-18.660156 H 4.7261658 L -6.3871155,10.5 h -4.4726565"
+ id="path3599-3"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+ <g
+ id="g5071"
+ transform="translate(177.6745,-52.476969)">
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03331434;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2270-8"
+ sodipodi:sides="14"
+ sodipodi:cx="21.691233"
+ sodipodi:cy="90.587601"
+ sodipodi:r1="1.7238894"
+ sodipodi:r2="0.71439058"
+ sodipodi:arg1="0.56672922"
+ sodipodi:arg2="0.7911287"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 23.145612,91.513115 -0.952132,-0.417477 0.406537,0.956853 -0.676704,-0.789248 -0.04889,1.038486 -0.267247,-1.0047 -0.494627,0.914433 0.195141,-1.021157 -0.8424,0.609264 0.618879,-0.835362 -1.023327,0.183425 0.920041,-0.484114 -1.00157,-0.278745 1.038977,-0.03698 -0.78144,-0.685705 0.952131,0.417477 -0.406537,-0.956854 0.676704,0.789248 0.04889,-1.038485 0.267248,1.004699 0.494626,-0.914432 -0.195141,1.021157 0.842401,-0.609265 -0.618879,0.835363 1.023326,-0.183425 -0.920041,0.484114 1.00157,0.278745 -1.038977,0.03698 z"
+ inkscape:transform-center-x="-0.04035562"
+ inkscape:transform-center-y="0.12449891"
+ transform="matrix(-0.62507979,0.90817784,-0.87652981,-0.60951466,94.820828,129.29972)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.27836347px;line-height:10.24488544px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40979543"
+ x="0.89888632"
+ y="94.957306"
+ id="text2332"><tspan
+ sodipodi:role="line"
+ id="tspan2330"
+ x="0.89888632"
+ y="94.957306"
+ style="stroke-width:0.40979543">+</tspan></text>
+ </g>
+ <g
+ id="g5452"
+ transform="translate(161.7886,-53.794078)">
+ <circle
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-0-8-4"
+ cx="1.8678147"
+ cy="93.817657"
+ r="1.8520833" />
+ <text
+ transform="scale(1.0028051,0.99720275)"
+ id="text5191"
+ y="96.686646"
+ x="-0.27187222"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.2856307px;line-height:22.7675972px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91070384"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.91070384"
+ y="96.686646"
+ x="-0.27187222"
+ id="tspan5189"
+ sodipodi:role="line">+</tspan></text>
+ </g>
+ <g
+ id="g5103"
+ transform="translate(177.64543,26.024901)">
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.03331434;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2270-8-1"
+ sodipodi:sides="14"
+ sodipodi:cx="21.691233"
+ sodipodi:cy="90.587601"
+ sodipodi:r1="1.7238894"
+ sodipodi:r2="0.71439058"
+ sodipodi:arg1="0.56672922"
+ sodipodi:arg2="0.7911287"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 23.145612,91.513115 -0.952132,-0.417477 0.406537,0.956853 -0.676704,-0.789248 -0.04889,1.038486 -0.267247,-1.0047 -0.494627,0.914433 0.195141,-1.021157 -0.8424,0.609264 0.618879,-0.835362 -1.023327,0.183425 0.920041,-0.484114 -1.00157,-0.278745 1.038977,-0.03698 -0.78144,-0.685705 0.952131,0.417477 -0.406537,-0.956854 0.676704,0.789248 0.04889,-1.038485 0.267248,1.004699 0.494626,-0.914432 -0.195141,1.021157 0.842401,-0.609265 -0.618879,0.835363 1.023326,-0.183425 -0.920041,0.484114 1.00157,0.278745 -1.038977,0.03698 z"
+ inkscape:transform-center-x="-0.040354841"
+ inkscape:transform-center-y="0.12450069"
+ transform="matrix(-0.62507978,0.90817784,-0.87652981,-0.60951467,94.893287,59.81337)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.16820526px;line-height:13.02563953px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#010101;fill-opacity:1;stroke:none;stroke-width:0.52102566"
+ x="1.0627097"
+ y="25.580606"
+ id="text2328"><tspan
+ sodipodi:role="line"
+ id="tspan2326"
+ x="1.0627097"
+ y="25.580606"
+ style="fill:#010101;fill-opacity:1;stroke-width:0.52102566">-</tspan></text>
+ </g>
+ <g
+ id="g5403"
+ transform="translate(161.7886,24.706111)">
+ <circle
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-0-8-0"
+ cx="1.8213621"
+ cy="24.467766"
+ r="1.8520833" />
+ <text
+ transform="scale(1.1338934,0.88191711)"
+ id="text5224"
+ y="30.263916"
+ x="-0.11376289"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.19225407px;line-height:25.60079384px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02403176"
+ xml:space="preserve"><tspan
+ style="stroke-width:1.02403176"
+ y="30.263916"
+ x="-0.11376289"
+ id="tspan5222"
+ sodipodi:role="line">-</tspan></text>
+ </g>
+ <g
+ style="fill:#ffffff"
+ id="g3409-8"
+ transform="matrix(0.89225049,0,0,0.89225049,129.11389,-45.159442)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.82116723px;line-height:7.77089214px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.31083572"
+ x="-0.24331611"
+ y="108.46983"
+ id="text3396-6"
+ transform="scale(0.76832539,1.3015319)"><tspan
+ sodipodi:role="line"
+ id="tspan3394-0"
+ x="-0.24331611"
+ y="108.46983"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.82116723px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.31083572"><</tspan></text>
+ <use
+ style="fill:#ffffff"
+ x="0"
+ y="0"
+ xlink:href="#text3396-6"
+ id="use3398-4"
+ transform="matrix(-1,0,0,1,3.5971101,-3.2154056e-7)"
+ width="100%"
+ height="100%" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.2874639px;line-height:7.14832497px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28593299"
+ x="1.4039675"
+ y="140.59174"
+ id="text3402-6"><tspan
+ sodipodi:role="line"
+ id="tspan3400-6"
+ x="1.4039675"
+ y="140.59174"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.2874639px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.28593299">/</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.14099371px;line-height:3.56560516px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14262421"
+ x="-80.174614"
+ y="169.56729"
+ id="text5361"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan5359"
+ x="-80.174614"
+ y="169.56729"
+ style="stroke-width:0.14262421">https://en.wikipedia.org/wiki/Venn_diagram</tspan></text>
+ <g
+ transform="matrix(1.0954534,0,0,-1.0769234,157.01024,143.02755)"
+ id="g3360-0">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 4.5953859,104.58471 0.9946926,0.59837 0.9946926,-0.59837 v -0.36524 l -0.7771039,0.46627 v -2.1215 H 5.3724889 v 2.1215 l -0.777103,-0.47404 z"
+ id="rect5024-8-7"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ y="-106.00382"
+ x="-7.2820415"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-8-4"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="scale(-1)" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ d="m 88.493184,50.983501 v 0.66146 h 0.529167 v -0.66146 z m -1.322916,1.32292 v 0.52916 h 1.322916 0.529167 1.322917 v -0.52916 h -1.322917 -0.529167 z m 1.322916,1.19062 v 0.66146 h 0.529167 v -0.66146 z"
+ id="rect2818-3" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="71.028664"
+ y="54.053581"
+ id="text5780"><tspan
+ sodipodi:role="line"
+ id="tspan5778"
+ x="71.028664"
+ y="54.053581"
+ style="stroke-width:0.26458335">mode_divide</tspan></text>
+ <g
+ transform="translate(23.733952,-278.57985)"
+ style="display:inline"
+ id="g5845">
+ <rect
+ y="297.7851"
+ x="30.003227"
+ height="2.3500066"
+ width="2.0854232"
+ id="rect2818-7"
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.29582685;stroke-opacity:1" />
+ <path
+ id="rect3592"
+ d="m 32.088133,298.33363 v 1.82026 h -1.55563 v 0.52953 h 2.085207 v -2.34979 z"
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.29604301;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.29604301;stroke-opacity:1"
+ d="m 32.6173,298.8628 v 1.82026 h -1.555631 v 0.52953 h 2.085207 v -2.34979 z"
+ id="path3597"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="36.689407"
+ y="21.531071"
+ id="text5794"><tspan
+ sodipodi:role="line"
+ id="tspan5792"
+ x="36.689407"
+ y="21.531071"
+ style="stroke-width:0.26458335">mode_normal</tspan></text>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';display:inline;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="text2818"
+ transform="matrix(0.12680188,0,0,0.14062284,89.754537,63.537329)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M -20.380363,-9.325079 H 4.658699 v 3.28125 h -25.039062 v -3.28125 m 0,7.96875 H 4.658699 V 1.9639835 H -20.380363 V -1.356329"
+ id="path2823"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="69.122643"
+ y="63.493015"
+ id="text5806"><tspan
+ sodipodi:role="line"
+ id="tspan5804"
+ x="69.122643"
+ y="63.493015"
+ style="stroke-width:0.26458335">mode_replace</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="69.130035"
+ y="43.150318"
+ id="text5810"><tspan
+ sodipodi:role="line"
+ id="tspan5808"
+ x="69.130035"
+ y="43.150318"
+ style="stroke-width:0.26458335">mode_multiply</tspan></text>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';display:inline;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="text2818-4"
+ transform="matrix(0.14968693,0,0,0.14514286,90.954522,42.424522)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M -0.94518089,-11.197034 -8.8553371,-0.55250263 -0.53502464,10.677966 H -4.7733059 l -6.3671871,-8.5937499 -6.367188,8.5937499 h -4.238281 l 8.496094,-11.44531238 -7.773438,-10.42968762 h 4.238281 l 5.800782,7.7929689 5.8007809,-7.7929689 h 4.23828121"
+ id="path2823-9"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';display:inline;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="text2818-0"
+ transform="matrix(0.30159555,0,0,0.16520325,92.216962,33.513051)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m -16.733316,-12.73656 h 10.5273433 v 3.2031251 H -16.733316 V -12.73656"
+ id="path2823-7"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="68.479126"
+ y="32.791988"
+ id="text5830"><tspan
+ sodipodi:role="line"
+ id="tspan5828"
+ x="68.479126"
+ y="32.791988"
+ style="stroke-width:0.26458335">mode_subtract</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ d="m 88.493182,19.372698 v 1.32292 h -1.322917 v 0.52916 h 1.322917 v 1.32292 h 0.529166 v -1.32292 h 1.322917 v -0.52916 h -1.322917 v -1.32292 z"
+ id="rect2818-8" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="73.397102"
+ y="21.58004"
+ id="text5840"><tspan
+ sodipodi:role="line"
+ id="tspan5838"
+ x="73.397102"
+ y="21.58004"
+ style="stroke-width:0.26458335">mode_add</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-68.4207"
+ y="55.658882"
+ id="text5974"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan5972"
+ x="-68.4207"
+ y="55.658882"
+ style="stroke-width:0.26458335">The background matches mode_up exactly. </tspan></text>
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5"
+ width="3.7041667"
+ height="0.39687499"
+ x="-122.35232"
+ y="-70.727547" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.16467875;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5298-9"
+ width="3.5394878"
+ height="3.5394878"
+ x="118.73049"
+ y="76.102654" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="81.038017"
+ y="14.678114"
+ id="text6264"><tspan
+ sodipodi:role="line"
+ id="tspan6262"
+ x="81.038017"
+ y="14.678114"
+ style="stroke-width:0.26458335">Arithmetic</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="111.77765"
+ y="14.310177"
+ id="text6268"><tspan
+ sodipodi:role="line"
+ id="tspan6266"
+ x="111.77765"
+ y="14.310177"
+ style="stroke-width:0.26458335">PorterDuff</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="158.08258"
+ y="15.101812"
+ id="text6272"><tspan
+ sodipodi:role="line"
+ id="tspan6270"
+ x="158.08258"
+ y="15.101812"
+ style="stroke-width:0.26458335">Logical</tspan></text>
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFQEcR28PWAAAAoZJREFUOMudlD9rVEEUxX/3zrx9b3dNiOsSjH+IRgWxUIiFYOs3 CBYqaSyEFIJ/PoCFXyCdlWCnlmIlaCkoqCmCBsEgGDBRQ2LiJpt9+96ba/HWTdRGHKaYmTvnnjPn MlcmJib4rzE5OenTNAVLokLkX2F5Id1ci6LwZpwaXb114a3zvh+OaP2JmKkyvpUxAHz+Ft28Nw54 g+GhjcR3wDAA+hLaClALLHkWIsa3IlqYNQd9XCkEvJTXxWE5O5W3lRc1Vh37MuYSmnnvXAR1mAEe QCLUUeS/6XxV5YtH4W3CiZSj6XZI69AH43AxPgGFgBmPIjrwTdll1OCcgxrisABGSHpJAIJDPeJz i2gr75RBA0iMLgwai4J61OEqaCRaKWUrQKG4xFAVWFMajmWlpQwIDUGFjx6kdNLQ+pAvrVXg/VIN TAQR44CypjihDeuwAqmQKzM7zHSVwryVYAN8YoaZgNAQmsKYEAmxsCl8FUZcj9l2GAeMDeWIppla WeT9whZUBaAGXViGVFEHdHPtgz0QCsFV7j452NrMtrLK7akNRjvMbDIKc8aIIJ5DA09err7+cKC5 202d3yz5PVAEgCxEcRIVBIC5LsMRY44jsC9mNmU+m104Uq8zdX79D2YgICJQr7rp+7tvXIZWQV3A SrU0NHq3LZgs673ZAojeuLiGSDmnHzSoC2DurMmZ6efD04+bvSh8Xxm2PnPRaWcbp/0uf/3Sdmrj WH99/dKvdf7Dwkh35YfQATzCeitdfvpwz2FnKVmHO2+OFwUhYAFAFKdcOfk+TqhUwbM4K5mdpfxV 8/nea89qTnoV/LspGFz9dKq/7VDJogjwcRwDoVYP/9yAnJkD59xP9RrslEFCKpIAAAAASUVORK5C YII= "
+ id="image1593"
+ x="218.85703"
+ y="34.227188" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFQMH/zykNgAAAx5JREFUOMudlE1oXFUUx3/n3vvem8yY6WTyqcRqrMFgJC0JgRiF Qq0i2lUofpQs7EKsKBhdiy6600V3rgouBBUEEcxC0YUaUcEo9osWK21am6Qq6WSSTDpv3rvvuJhx goggXi7cczjnf8///A8cmZmZ4X+d2dlZF8cxaC7wIv+a14iTMArabuqlkRrvvVNl7x03XnvqrHWu HQ7YPLfUARR3RSfny3GD8z+HQ7vrb76wBiz/Hrzy9jjgFPpKWzlXB0UBED74sntiJN7esB8vFB+Z iqubZvFM7uB4NWAT1Z6ii0IvYKSZLrb5Isx/27V106yt5zaqhc5AJofiPfl0brhy6P4KgAjGogo4 AAkwFp8ClS339dnOZx6rjkSm1p30D+j1i67/Tp9Obe9oYArQBmOxES4HhgYzD6Uj/SEVzfcymPqo X3+67r5aLo9OB2gGSpZrfQKQWYxDXKrByrXw8nlLVekWIgghhpjxe/y5KzlsiAnEhE3aBsAbbE4x Rrh8KTywv9GoCxavGEuasW8wubTiPvoiDyimUHJNaR1wYTUPKgLo0H1+dckmvXJb6uuJpImUOrWR mYFtXx7WVs829Oq0WVkBl1NFVUaH0t9uuIXFCM/WspEY1tlYl+VGcOjBOjT5stPzXaUUMXFiFBAe fjSuV6Xyqx3Y7XNFxXFqIeztUIwFGqlpgx2QecGGJz+5fbOW3EzCJw/W4rCRJ8MTnVICmUiz41eL 7rva4sXBni577HCtWd8APgNIsiDK5cPAjN6twTV948PS/KfF178pLxVLz/24a1fmT1/dUyhExw7X /kY780CGiIgUOuyJd7uOHg8H99mesWByv7zzfTB+r04/IIEzrekASdICawZiXn56HZHmPfFe+egT 2dSYPn5g6tXnJ8O+8pnVcisKlbU+bffs69vJ1oS7xc0d2VFSGW7bc0f+stMNzW5trG0IdcAhVDfj Pz57v3vIakxS560fRrwny9AMQAzW8OzYhShH2AGOldOS6DTgBH5JB176PG+lNcF/LgWFF6/sbbt1 wiQIABdFEZDlC9l/XkBW1YK19k8lckSUjcMNKAAAAABJRU5ErkJggg== "
+ id="image1623"
+ x="218.85703"
+ y="42.780788" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFQQy5s720gAAAY9JREFUOMudk79KA0EQxr/Z3VwuCWhQEa0iprMwYCMIdlraBEWL iEViJyhiIYg2RhAR8QECtoKPoJ2FLyBioaCVoCKoQXNedsci8RKTM38ctri9md983zB3lEwm8a9I pVLKcRyA7YAmqiRO1s5qSmf2J7znoqavotBaK2YkYi9bc5e2+vTSucPxajKzcl7d7u6xa/VoBIBg oDeab0DWvxnofQlamgBBAEBNJ6ztyAxAAAAFGsj+kfJgSFgdjclqPm/6S1cBAEZCqKZkOexuElaV bS0g7RbXm9sdikQV+Ef5+iGc24nX12U2bjMbtz4NpKVZcQlmPwV/7HcIAIPRot9snaWT2X6udb7Z U4GNpnY/bPZm1qbOc53an7aNblLk08t1yzCbtv9H9pR14WNhPeYl0tk402jNSWcru5yaDxEIgALh 9d15Oj2en5bswC1g7+BNaxhTdkQCUmBx+Hp2ElYIULi6IJfHACgCbop9y2dhSeV9k5/JpfuEdy3A cgMBACoYDAIw4Ujrg0tmCUgpvwFUVY8jOtve4AAAAABJRU5ErkJggg== "
+ id="image1713"
+ x="218.99545"
+ y="58.602272" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFDotK8GKbQAAAm5JREFUOMudlM1LFVEYxn/vOWdmrveqXT+6aJCRFdgmIReB/0AE d+WqxF25K1Ihoo1rLchF0K5aFNmiTdAiyH2rCKWFCwmMTEuuXj+QmXvnzGkx41cSRcOBeeec88zz vs/zniMDAwP81zM0NGSiKAKX86zIv8JiK7VYWWuNc/SeWhu/+lkbs7f86O3Zo5hb5YU0WPrpjT27 CBgHpeJ2zoTgcAAIY+VPf+R1rr3ZBL4VUJJuF52++WvyIiiNc4ABEA+lsTFw/01vrUa+gbHyLCpI /zj5uqduKeQYLc8CqALsgdEUuyefBCsVF/gyMRIBcJ6wSq4I3L1RA8Ye+Pde9JZaZPjKjzQJBZBo YGWNkx164voXtpYIq4RVIAvCKpvfHt6pBb5UNkCCNG0FYBXQ0qxEBGVQhjg64ExIHKIMcKxR70Q0 tjek0ipgfjkP+J5CBNGIRul9sNLZ2FlFRGsBrDMurTk1KKoT+JIyHJbXILubEJvs+6GA7mIMrG85 RGUkog95g6Tzl/sW8zl1CJxYAU4cN4vLdvxpJ34TQdMh8lyRoPndh9rzma62ooZULwxgEwDPU12d aidMMoCXJy3J+OnE3NczpTZGBzd+YwYSRESk0KCnXrbslmoOKucZlbkD1OsZ2CUgavRaFZF0TE23 Zo2s+51cmppunZpuzVZhvVJK5TOADXfq232m0YwMHuh/zu3FI4O7cbzpks5aZVMIAYOwsRWtvn/V dlq7iHrI44891pIkuARAFFoxfGE+yOE3gOH7nNRdP2AEFuKO2zN5LbtWHj2FcHOxd+8zxK97HmCC IACSfCH55wtIO6dBa/0Lj1bSKj1qatAAAAAASUVORK5CYII= "
+ id="image1773"
+ x="219.27229"
+ y="26.558252" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFQYlVysRlwAAAphJREFUOMudlE9rlFcUxn/n3vv+mXcmkzETkyhVq24shUq7EdwI pZ8gUGgh2+KmIFjd9hO46DdwW3DVZdG9C5FSKK2LtrZYiCYmRCaZmfe9f04Xk5lM4ka83MW95znP uc85954r6+vrvNfY2NhwdV2DllkUOQIe3Hl0wvXLe1/M1iFKE0yM0aly9cLu91/9VrrRDH714i7a jrECC3r24p35cP9sLd2+/xlgFFZ6+/PMrf++01SlVIIFQHc2b86r+HBlt8ijgBEAmcfEBkVUD40i XqQZHXx8LA1VwABINjMO9m4491qQWURVVWxKneD78+wpGUveBXyzFpqVGFqqbgoBWYrt2CwHv+T9 ErCfzkwAB5AsxsXQi6GKsdfUl1E3l4uNod/UjbEDxWYLIuN8ItsBRIMtoy9S6qRYoQ6w2b51A1Xn 61MpVb75wJiDTNL4TdZeHaLTk59tVoPN60aeaypTaoEYO85bL0+d/wnYef51fbCmWoSwKn6IVKV9 EdXpJDGFerQa/HLTnNZUgbpyb8IEsva22ACSYif4fmyOymaAS70Q/aJvzvr6nGohErPyNeXiZHbP P3H5AEipSHEx+P7uX58fFcyoS3FBk6IFWGOH+cLW/KW6cs+Pe6hNoaupEDU6y7kOUVOmLE0qbPJh a/nveXLW3vUHK6FZUC015pLkSHaKk0dmQBB11c6Jruis/WqLAZJAwKoavD8kazrmakx6uwFtPhLR Y+9rIjuOh6c/+mX7j08BEboXonLtBHnx0nD0dBqo+7MggEN4M6i3H/7Yv/hAa/yQez9c8Z6UDhWJ wRq++eRZpyRvgeP3x+L1OuAE/gxrtx5VdqpK3tKs8O2/V2fbMbnPMsAVRQGkqp3e+QOyqhastf8D AM4xAViDlywAAAAASUVORK5CYII= "
+ id="image1788"
+ x="219.13387"
+ y="69.204735" />
+ <image
+ width="4.7037039"
+ height="4.7037039"
+ preserveAspectRatio="none"
+ style="display:inline;image-rendering:optimizeQuality"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH4AkbFDgdPy7YQwAAAq9JREFUOMudlD1oVFkUx3/n3vvem2QmMWM0Gr+i2S0sNIEVLLTQ ThSJkCpKOrVTzAhiZy0IOwsrW2ohbLZeExAUtdNGCxExIGLEj1FJNDOT2Zn35r1j8WYm6lqIh1Pc e8758z//cz9kfHycn7LJyUnXaDRAM14s8qOwZixh08Rx7FQZHVq8MPHYOtdJ/znz6/8xpw8/Sxev 33tnr/4GGIWBvmrG1T0qnlY8rVy+vlW02fao45evD3la9rS8pncp8GMBIwCCWMQVZ0eKsyOIpF4Y e4KYL704O4pYjEUVMADiYWxxZgciUSzL/4kihbE5xBXG5gpH5sJIlusCAlKc2YnJggKpTkvfcBhR WiDw5eJUA4DhjtrzJ0Lg7CU/8BnICyaTxg1AYoHSIpvX24vHn1N5neZu33nRQldeUX71+7kw8GVh CST4ou3YAPleIyIYh3FU31F9d/+xLi+WqJYQh3HAqpytNcit6ULbzE/fdgO+Z5B0chZjMXb1KpvN uXSNsdQ+IGKtALE6TTUrAI2IwJeUIbVyTSrLpicjSLsIiZOVy2SA4b4m8LGiiGmRiH1R0h3bg3/v hnTlyeTT+IFd890Z8xU4iQXYsNbNv40vXBnE7yHoefI8Obg3t393tlUY9N64F167taW/z0I6LxwQ JwCeZ7YMmlo9SYsP7esBNq5bUfHo5S8D/RSOLX3DDCSIiEi2yxb/zgOIQxzGdko9Z1qnA0RRi1kT EFM4+qk4nU9TxenV33lN7Ul9XBhQknbb9VpU3eVybmoi+mP6k6qiHV1tiCAwNdGlyWC4UBbqgENY qjQ+3Pynf5vVBic28deD7XFMkqAJgBis4eTI0yBD+BAcbx5JpHsAJ/Csuf7MrW4r+nV3K6Zwan60 s63jR54HuCAIgKQ7m/zwB2RVLVhrPwNaJP0J4xoPpwAAAABJRU5ErkJggg== "
+ id="image1459"
+ x="218.85703"
+ y="19.117212" />
+ <image
+ y="50.838581"
+ x="219.82143"
+ id="image4528"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAABDBAAAROwF2WWEEAAAA B3RJTUUH4AkbFQ4plkTXtAAAALNJREFUKM/dkj0KwkAQhb/drBErSSFbBtQul0iRW+QQOUsOsbdY 0UtsZyPYpBCLgETJj4URYhpJqQPTDPO9eQ8G/r/EPkm8WOsZ4AESKD1j/F2SbAA/1vp8KIoGaHvm DjyEhMUxy25Trm3z3FdAcHLuiy/xaimhrgECBRBGkZgU0Nq1Aq4n57rBuO7zvsVa4AKsBjtLBVRh FA311EhfjiCwtvyw2KWpBOYjuAUqYUzzo5/zBHn+KZt6lb/aAAAAAElFTkSuQmCC "
+ style="display:inline;image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="3.2925925"
+ width="3.2925925" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="19.825428"
+ x="208.59428"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="34.774403"
+ x="208.59428"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-3"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-3);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="43.135487"
+ x="208.59428"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-6"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-8);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="58.682327"
+ x="208.73271"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-8"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-40);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="26.979816"
+ x="209.00955"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-089"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-43);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="70.094101"
+ x="208.87114"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-83"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-22);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ inkscape:transform-center-y="-26.710584"
+ inkscape:transform-center-x="2.7879716"
+ y="50.078751"
+ x="208.68015"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect3597-9-2-4-3-1-9-9-1-83-48-0"
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-1-0-22-6-6);fill-opacity:1;stroke:none;stroke-width:0.10104354;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="translate(208.59418,19.825436)"
+ id="g3811">
+ <circle
+ style="opacity:1;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11341529;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502"
+ cx="2.3812501"
+ cy="1.8520833"
+ r="1.3229166" />
+ <circle
+ style="opacity:1;fill:#ccff00;fill-opacity:0.67000002;fill-rule:evenodd;stroke:none;stroke-width:0.11341529;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-5"
+ cx="1.3229166"
+ cy="1.8520833"
+ r="1.3229166" />
+ </g>
+ <text
+ id="text1523"
+ y="22.103052"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="22.103052"
+ x="187.47078"
+ id="tspan1521"
+ sodipodi:role="line">mode_overlay</tspan></text>
+ <text
+ id="text1598"
+ y="37.140305"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="37.140305"
+ x="187.47078"
+ id="tspan1596"
+ sodipodi:role="line">mode_burn</tspan></text>
+ <text
+ id="text1628"
+ y="45.880993"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="45.880993"
+ x="187.47078"
+ id="tspan1626"
+ sodipodi:role="line">mode_dodge</tspan></text>
+ <text
+ id="text1718"
+ y="61.46862"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="61.46862"
+ x="187.47078"
+ id="tspan1716"
+ sodipodi:role="line">mode_hardlight</tspan></text>
+ <text
+ id="text1778"
+ y="29.752014"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="29.752014"
+ x="187.47078"
+ id="tspan1776"
+ sodipodi:role="line">mode_screen (~or)</tspan></text>
+ <text
+ id="text1793"
+ y="71.977585"
+ x="187.47078"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.26458335"
+ y="71.977585"
+ x="187.47078"
+ id="tspan1791"
+ sodipodi:role="line">mode_softlight</tspan></text>
+ <circle
+ r="1.8520833"
+ cy="71.854507"
+ cx="210.81461"
+ id="path1502-0"
+ style="opacity:1;fill:url(#radialGradient2299);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878141;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="1.8520833"
+ cy="60.335533"
+ cx="210.74031"
+ id="path1502-0-8"
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ id="text2340"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.25499535px;line-height:1.42466354px;font-family:MathJax_AMS;-inkscape-font-specification:'MathJax_AMS, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.05698655"
+ aria-label="D"
+ transform="matrix(1.1283135,0,0,1.2727267,208.10476,5.3136067)">
+ <path
+ id="path3887"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.25499535px;font-family:MathJax_AMS;-inkscape-font-specification:'MathJax_AMS, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff0000;stroke-width:0.05698655"
+ d="m 0.43376583,29.75125 c -0.012765,0.01702 -0.021275,0.0383 -0.021275,0.05532 0,0.01702 0.00851,0.03404 0.021275,0.04681 0.021275,0.02127 0.038295,0.02978 0.13615985,0.02978 0.11913987,0.0085 0.15743483,0.02128 0.1787098,0.07659 0.00851,0.02553 0.012765,0.625485 0.012765,1.229694 0,0.604209 -0.004255,1.204164 -0.012765,1.229694 -0.021275,0.05531 -0.0595699,0.06382 -0.1787098,0.07233 -0.0978649,0 -0.11488487,0.01277 -0.13615985,0.02978 -0.012765,0.01702 -0.021275,0.03404 -0.021275,0.05106 0,0.01702 0.00851,0.0383 0.021275,0.05532 l 0.029785,0.01702 H 1.174135 c 0.4169896,0 0.7361142,0 0.7914292,-0.0085 0.6169743,-0.06808 1.0594938,-0.416989 1.2424586,-0.957374 0.055315,-0.178709 0.063825,-0.293594 0.063825,-0.536129 0,-0.16169 0,-0.22977 -0.00851,-0.302105 C 3.1569628,30.291635 2.7697583,29.90443 2.1740589,29.781035 1.9953491,29.73423 1.9102492,29.73423 1.165625,29.73423 H 0.4635508 Z m 0.91907897,0.140415 c -0.046805,0.0851 -0.038295,-0.01702 -0.046805,1.289264 v 1.199909 l 0.01702,0.05532 0.029785,0.05531 H 0.88905033 c 0,-0.0085 0.00851,-0.02553 0.021275,-0.06382 0.00851,-0.0383 0.012765,-0.63825 0.012765,-1.238204 0,-0.599954 -0.004255,-1.204164 -0.012765,-1.238204 -0.012765,-0.0383 -0.021275,-0.05957 -0.021275,-0.06808 H 1.1273301 c 0.1233948,0 0.2255147,0 0.2255147,0.0085 z m 0.3574196,-0.0085 c 0.06808,0 0.1531799,0.0085 0.2212598,0.02979 0.3063597,0.123395 0.4893245,0.39146 0.5574044,0.774409 0.03404,0.148925 0.046805,0.302105 0.046805,0.46805 0,0.07234 -0.00426,0.148925 -0.00851,0.22977 -0.05106,0.587189 -0.2297697,0.936099 -0.5616593,1.059494 -0.0851,0.02978 -0.2170048,0.0468 -0.3021047,0.0468 -0.063825,-0.0085 -0.1489249,-0.0468 -0.1787098,-0.0851 l -0.01702,-0.02553 V 29.99804 c 0.055315,-0.06383 0.1063749,-0.114885 0.2425347,-0.114885 z m 0.6935643,0.123395 c 0.1574348,0.06808 0.2935947,0.15318 0.4127345,0.285085 0.2042398,0.208495 0.3106147,0.438264 0.3106147,0.842489 0,0.544639 -0.1999848,0.893549 -0.5446394,1.123319 -0.07659,0.05532 -0.2170048,0.131905 -0.2467898,0.131905 l 0.046805,-0.06808 c 0.2084948,-0.26381 0.3021047,-0.651015 0.3021047,-1.178634 0,-0.49358 -0.1021199,-0.842489 -0.3276347,-1.119064 -0.029785,-0.02553 -0.05106,-0.05532 -0.05106,-0.05532 0.012765,0 0.05106,0.02127 0.097865,0.0383 z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.07913059,0,0,0.07913059,204.1763,31.524698)"
+ id="g3318">
+ <path
+ style="fill:#ff0000;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3272-1)"
+ d="m 67.205552,84.126419 c -7.51561,-3.696238 -7.267737,-14.912013 -9.983924,-20.426082 3.979977,3.010386 6.459129,8.124322 9.241394,10.312124 -0.139454,-7.20082 -3.691084,-16.29182 -1.022583,-25.797177 4.293836,4.789691 3.647768,13.468961 9.75103,16.955374 1.943083,-4.450213 -4.311512,-14.480615 6.182205,-23.14614 2.981562,5.742453 4.818858,11.27529 5.005794,17.432599 3.524764,-0.29157 4.663088,-9.761468 6.303183,-11.937707 6.727674,8.160206 -1.932801,13.596995 -2.188063,18.784812 4.061979,-0.563988 5.565871,-7.215278 8.617466,-10.233055 5.396006,8.790585 -3.803661,17.877509 -4.647615,27.228459 -5.8226,5.919657 -25.616598,3.680143 -27.258887,0.826793 z"
+ id="path2854-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#ff6600;stroke:none;stroke-width:0.21813291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3247-4)"
+ d="m 69.006672,84.258929 c -6.457601,-2.923952 -6.244623,-11.796321 -8.578439,-16.15829 3.419696,2.381401 5.549846,6.426838 7.940437,8.157526 -0.119822,-5.696293 -3.171471,-12.887835 -0.878629,-20.407158 3.689373,3.788942 3.134255,10.654779 8.378331,13.412746 1.669546,-3.520392 -3.704559,-11.455059 5.311907,-18.310023 2.561832,4.542634 4.140483,8.91945 4.301103,13.790261 3.028566,-0.23065 4.006642,-7.721924 5.415855,-9.443463 5.780585,6.455227 -1.660712,10.756062 -1.88004,14.859945 3.490154,-0.446149 4.782336,-5.70773 7.404344,-8.094978 4.636389,6.953895 -3.268201,14.142211 -3.993349,21.539392 -5.002922,4.682812 -22.010424,2.911219 -23.42152,0.654042 z"
+ id="path2854-3-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#ffcc00;stroke:none;stroke-width:0.21813291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3247-7-7)"
+ d="m 53.886997,38.217112 c -6.457602,-2.923952 -6.244624,-11.796321 -8.57844,-16.15829 3.419696,2.381401 5.549846,6.426838 7.940438,8.157526 -0.119822,-5.696293 -3.171472,-12.887835 -0.878629,-20.4071585 3.689373,3.7889415 3.134255,10.6547795 8.378331,13.4127465 1.669546,-3.520392 -3.704559,-11.455059 5.311907,-18.3100238 2.561832,4.5426339 4.140483,8.9194498 4.301103,13.7902608 3.028566,-0.230649 4.006642,-7.721923 5.415855,-9.4434627 5.780585,6.4552267 -1.660712,10.7560617 -1.88004,14.8599457 3.490154,-0.446149 4.782336,-5.70773 7.404344,-8.094978 4.636385,6.953895 -3.268201,14.142211 -3.993349,21.539392 -5.002922,4.682812 -22.010424,2.911219 -23.42152,0.654042 z"
+ id="path2854-3-8-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc"
+ transform="matrix(0.75250395,0,0,0.75250395,31.414711,56.291648)" />
+ </g>
+ <path
+ d="m 0.43376583,29.75125 c -0.012765,0.01702 -0.021275,0.0383 -0.021275,0.05532 0,0.01702 0.00851,0.03404 0.021275,0.04681 0.021275,0.02127 0.038295,0.02978 0.13615985,0.02978 0.11913987,0.0085 0.15743483,0.02128 0.1787098,0.07659 0.00851,0.02553 0.012765,0.625485 0.012765,1.229694 0,0.604209 -0.004255,1.204164 -0.012765,1.229694 -0.021275,0.05531 -0.0595699,0.06382 -0.1787098,0.07233 -0.0978649,0 -0.11488487,0.01277 -0.13615985,0.02978 -0.012765,0.01702 -0.021275,0.03404 -0.021275,0.05106 0,0.01702 0.00851,0.0383 0.021275,0.05532 l 0.029785,0.01702 H 1.174135 c 0.4169896,0 0.7361142,0 0.7914292,-0.0085 0.6169743,-0.06808 1.0594938,-0.416989 1.2424586,-0.957374 0.055315,-0.178709 0.063825,-0.293594 0.063825,-0.536129 0,-0.16169 0,-0.22977 -0.00851,-0.302105 C 3.1569628,30.291635 2.7697583,29.90443 2.1740589,29.781035 1.9953491,29.73423 1.9102492,29.73423 1.165625,29.73423 H 0.4635508 Z m 0.91907897,0.140415 c -0.046805,0.0851 -0.038295,-0.01702 -0.046805,1.289264 v 1.199909 l 0.01702,0.05532 0.029785,0.05531 H 0.88905033 c 0,-0.0085 0.00851,-0.02553 0.021275,-0.06382 0.00851,-0.0383 0.012765,-0.63825 0.012765,-1.238204 0,-0.599954 -0.004255,-1.204164 -0.012765,-1.238204 -0.012765,-0.0383 -0.021275,-0.05957 -0.021275,-0.06808 H 1.1273301 c 0.1233948,0 0.2255147,0 0.2255147,0.0085 z m 0.3574196,-0.0085 c 0.06808,0 0.1531799,0.0085 0.2212598,0.02979 0.3063597,0.123395 0.4893245,0.39146 0.5574044,0.774409 0.03404,0.148925 0.046805,0.302105 0.046805,0.46805 0,0.07234 -0.00426,0.148925 -0.00851,0.22977 -0.05106,0.587189 -0.2297697,0.936099 -0.5616593,1.059494 -0.0851,0.02978 -0.2170048,0.0468 -0.3021047,0.0468 -0.063825,-0.0085 -0.1489249,-0.0468 -0.1787098,-0.0851 l -0.01702,-0.02553 V 29.99804 c 0.055315,-0.06383 0.1063749,-0.114885 0.2425347,-0.114885 z m 0.6935643,0.123395 c 0.1574348,0.06808 0.2935947,0.15318 0.4127345,0.285085 0.2042398,0.208495 0.3106147,0.438264 0.3106147,0.842489 0,0.544639 -0.1999848,0.893549 -0.5446394,1.123319 -0.07659,0.05532 -0.2170048,0.131905 -0.2467898,0.131905 l 0.046805,-0.06808 c 0.2084948,-0.26381 0.3021047,-0.651015 0.3021047,-1.178634 0,-0.49358 -0.1021199,-0.842489 -0.3276347,-1.119064 -0.029785,-0.02553 -0.05106,-0.05532 -0.05106,-0.05532 0.012765,0 0.05106,0.02127 0.097865,0.0383 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.25499535px;line-height:1.42466354px;font-family:MathJax_AMS;-inkscape-font-specification:'MathJax_AMS, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#7f7f7f;fill-opacity:0.68000034;stroke:none;stroke-width:0.05698655;filter:url(#filter4488-0)"
+ id="path3887-7"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.99438903,0,0,1.1216612,204.4294,9.9243123)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="187.47078"
+ y="52.812485"
+ id="text4533"><tspan
+ sodipodi:role="line"
+ id="tspan4531"
+ x="187.47078"
+ y="52.812485"
+ style="stroke-width:0.26458335">mode_difference</tspan></text>
+ <g
+ id="g4898"
+ transform="matrix(0.58511438,-0.58511438,0.58511438,0.58511438,92.09685,-64.917686)">
+ <ellipse
+ ry="1.6215708"
+ rx="1.6251072"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.0811669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="circle1312-7"
+ cy="201.05705"
+ cx="0.54053408" />
+ <ellipse
+ ry="1.6215708"
+ rx="1.6251072"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.0811669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="circle1316-1"
+ cy="201.05705"
+ cx="2.1656413" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.08116694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path1320-7"
+ d="m 1.3530865,199.65272 c 0.5028099,0.28967 0.8125532,0.825 0.8125532,1.40433 0,0.57933 -0.3097433,1.11466 -0.8125532,1.40432 -0.50280971,-0.28966 -0.81255339,-0.82499 -0.81255339,-1.40432 0,-0.57933 0.30974368,-1.11466 0.81255339,-1.40433"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4980"
+ transform="matrix(0.78293622,-0.78293622,0.78293622,0.78293622,115.11467,-64.450827)">
+ <ellipse
+ cx="1.1305716"
+ cy="120.63738"
+ id="circle1312-1-4"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#111111;stroke-width:0.06066189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2145594"
+ ry="1.2119173" />
+ <ellipse
+ cx="2.3451331"
+ cy="120.63738"
+ id="circle1316-4-5"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.06031052;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2145594"
+ ry="1.2119173" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.7378519,119.58783 c 0.3757852,0.21648 0.6072796,0.61658 0.6072796,1.04956 0,0.43297 -0.2314944,0.83306 -0.6072796,1.04954 -0.3757862,-0.21648 -0.6072795,-0.61657 -0.6072795,-1.04954 0,-0.43298 0.2314933,-0.83308 0.6072795,-1.04956"
+ id="path1320-20-4"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#131313;stroke-width:0.0606619;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.11666679px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="200.5657"
+ y="14.571676"
+ id="text6276"><tspan
+ sodipodi:role="line"
+ id="tspan6274"
+ x="200.5657"
+ y="14.571676"
+ style="stroke-width:0.26458335">Graphic Art</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.1316762px;line-height:4.99611616px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.19984463"
+ x="-0.014766465"
+ y="2.7794704"
+ id="text2388"><tspan
+ sodipodi:role="line"
+ id="tspan2386"
+ x="-0.014766465"
+ y="2.7794704"
+ style="stroke-width:0.19984463">ALL!</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.31417775px;line-height:3.08010435px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.12320416"
+ x="0.19894125"
+ y="1.100427"
+ id="text2399-7"><tspan
+ sodipodi:role="line"
+ id="tspan2397-4"
+ x="0.19894125"
+ y="1.100427"
+ style="stroke-width:0.12320416">mode</tspan></text>
+ </g>
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5980"
+ width="3.7041667"
+ height="3.7041667"
+ x="118.75083"
+ y="57.673851" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.902174px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="118.66845"
+ y="60.593788"
+ id="text5978"><tspan
+ sodipodi:role="line"
+ id="tspan5976"
+ x="118.66845"
+ y="60.593788"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.90217304px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="118.56576"
+ y="69.943321"
+ id="text5978-6"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0"
+ x="118.56576"
+ y="69.943321"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.05342317px;line-height:9.54197311px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.38167897"
+ x="123.1844"
+ y="76.068733"
+ id="text5978-6-6"
+ transform="scale(0.96362415,1.037749)"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0-0"
+ x="123.1844"
+ y="76.068733"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.05342317px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.38167897">SRC</tspan></text>
+ <g
+ id="g6208"
+ transform="translate(100.29244,-81.243235)">
+ <rect
+ y="164.65392"
+ x="18.355335"
+ height="3.7041667"
+ width="3.7041667"
+ id="rect5980-9-49"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ id="text5978-3"
+ y="168.46208"
+ x="18.744112"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:5.39966011px;line-height:16.87398148px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6749593"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:5.39966011px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.6749593"
+ y="168.46208"
+ x="18.744112"
+ id="tspan5976-6"
+ sodipodi:role="line">SR</tspan></text>
+ </g>
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5980-9-1"
+ width="3.7041667"
+ height="3.7041667"
+ x="118.71955"
+ y="92.443321" />
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5-8"
+ width="3.7041667"
+ height="0.39687499"
+ x="-122.42373"
+ y="-96.147484" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.90217304px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="118.63717"
+ y="95.363258"
+ id="text5978-6-4"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0-6"
+ x="118.63717"
+ y="95.363258"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5-8-8"
+ width="3.7041667"
+ height="0.39687499"
+ x="-122.42371"
+ y="-92.840202" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_and.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_and.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-1.7976879"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(0.03554479,-0.03554479,0.03554479,0.03554479,-9.4826906,290.59434)"
+ id="g2546">
+ <ellipse
+ cx="82.013954"
+ cy="223.49741"
+ id="circle1312-4"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.33611465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="26.751408"
+ ry="26.693211" />
+ <ellipse
+ cx="108.76537"
+ cy="223.49741"
+ id="circle1316-6"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.33611465;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="26.751408"
+ ry="26.693211" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95.389652,200.38041 c 8.276918,4.76829 13.375698,13.58044 13.375698,23.11702 0,9.53657 -5.09878,18.34873 -13.375698,23.11701 -8.276913,-4.76828 -13.375704,-13.58044 -13.375704,-23.11701 0,-9.53658 5.098791,-18.34873 13.375704,-23.11702"
+ id="path1320-2"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.33611512;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_burn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_burn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827">
+ <filter
+ height="1.0236208"
+ y="-0.011810425"
+ width="1.0243915"
+ x="-0.01219576"
+ id="filter3272-1"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3274-3"
+ stdDeviation="0.22144173"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ height="1.0984887"
+ y="-0.04924437"
+ width="1.0936339"
+ x="-0.046816967"
+ id="filter3247-4"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3249-3"
+ stdDeviation="0.73040019"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ height="1.0984887"
+ y="-0.04924437"
+ width="1.0936339"
+ x="-0.046816967"
+ id="filter3247-7-7"
+ style="color-interpolation-filters:sRGB"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3249-7-7"
+ stdDeviation="0.73040019"
+ inkscape:collect="always" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(0.07913059,0,0,0.07913059,-4.4000526,290.01245)"
+ id="g3318">
+ <path
+ style="fill:#ff0000;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3272-1)"
+ d="m 67.205552,84.126419 c -7.51561,-3.696238 -7.267737,-14.912013 -9.983924,-20.426082 3.979977,3.010386 6.459129,8.124322 9.241394,10.312124 -0.139454,-7.20082 -3.691084,-16.29182 -1.022583,-25.797177 4.293836,4.789691 3.647768,13.468961 9.75103,16.955374 1.943083,-4.450213 -4.311512,-14.480615 6.182205,-23.14614 2.981562,5.742453 4.818858,11.27529 5.005794,17.432599 3.524764,-0.29157 4.663088,-9.761468 6.303183,-11.937707 6.727674,8.160206 -1.932801,13.596995 -2.188063,18.784812 4.061979,-0.563988 5.565871,-7.215278 8.617466,-10.233055 5.396006,8.790585 -3.803661,17.877509 -4.647615,27.228459 -5.8226,5.919657 -25.616598,3.680143 -27.258887,0.826793 z"
+ id="path2854-0"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#ff6600;stroke:none;stroke-width:0.21813291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3247-4)"
+ d="m 69.006672,84.258929 c -6.457601,-2.923952 -6.244623,-11.796321 -8.578439,-16.15829 3.419696,2.381401 5.549846,6.426838 7.940437,8.157526 -0.119822,-5.696293 -3.171471,-12.887835 -0.878629,-20.407158 3.689373,3.788942 3.134255,10.654779 8.378331,13.412746 1.669546,-3.520392 -3.704559,-11.455059 5.311907,-18.310023 2.561832,4.542634 4.140483,8.91945 4.301103,13.790261 3.028566,-0.23065 4.006642,-7.721924 5.415855,-9.443463 5.780585,6.455227 -1.660712,10.756062 -1.88004,14.859945 3.490154,-0.446149 4.782336,-5.70773 7.404344,-8.094978 4.636389,6.953895 -3.268201,14.142211 -3.993349,21.539392 -5.002922,4.682812 -22.010424,2.911219 -23.42152,0.654042 z"
+ id="path2854-3-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ <path
+ style="fill:#ffcc00;stroke:none;stroke-width:0.21813291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3247-7-7)"
+ d="m 53.886997,38.217112 c -6.457602,-2.923952 -6.244624,-11.796321 -8.57844,-16.15829 3.419696,2.381401 5.549846,6.426838 7.940438,8.157526 -0.119822,-5.696293 -3.171472,-12.887835 -0.878629,-20.4071585 3.689373,3.7889415 3.134255,10.6547795 8.378331,13.4127465 1.669546,-3.520392 -3.704559,-11.455059 5.311907,-18.3100238 2.561832,4.5426339 4.140483,8.9194498 4.301103,13.7902608 3.028566,-0.230649 4.006642,-7.721923 5.415855,-9.4434627 5.780585,6.4552267 -1.660712,10.7560617 -1.88004,14.8599457 3.490154,-0.446149 4.782336,-5.70773 7.404344,-8.094978 4.636385,6.953895 -3.268201,14.142211 -3.993349,21.539392 -5.002922,4.682812 -22.010424,2.911219 -23.42152,0.654042 z"
+ id="path2854-3-8-1"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc"
+ transform="matrix(0.75250395,0,0,0.75250395,31.414711,56.291648)" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_darken.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_darken.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="2.9537572"
+ inkscape:cy="5.9595375"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="translate(0.03072121,270.68014)"
+ id="g5403">
+ <circle
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-0-8-0-0"
+ cx="1.8213621"
+ cy="24.467766"
+ r="1.8520833" />
+ <text
+ transform="scale(1.1338934,0.88191711)"
+ id="text5224-6"
+ y="30.263916"
+ x="-0.11376289"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.19225407px;line-height:25.60079384px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02403176"
+ xml:space="preserve"><tspan
+ style="stroke-width:1.02403176"
+ y="30.263916"
+ x="-0.11376289"
+ id="tspan5222-2"
+ sodipodi:role="line">-</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_difference.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//mode_difference.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ id="g4898-0"
+ transform="matrix(0.58511438,-0.58511438,0.58511438,0.58511438,-116.581,178.29824)">
+ <ellipse
+ ry="1.6215708"
+ rx="1.6251072"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.0811669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="circle1312-7-8"
+ cy="201.05705"
+ cx="0.54053408" />
+ <ellipse
+ ry="1.6215708"
+ rx="1.6251072"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.0811669;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="circle1316-1-1"
+ cy="201.05705"
+ cx="2.1656413" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.08116694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path1320-7-3"
+ d="m 1.3530865,199.65272 c 0.5028099,0.28967 0.8125532,0.825 0.8125532,1.40433 0,0.57933 -0.3097433,1.11466 -0.8125532,1.40432 -0.50280971,-0.28966 -0.81255339,-0.82499 -0.81255339,-1.40432 0,-0.57933 0.30974368,-1.11466 0.81255339,-1.40433"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_divide.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_divide.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.857143"
+ inkscape:cx="-10.707628"
+ inkscape:cy="4.9237291"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 6 1 L 6 3.5 L 8 3.5 L 8 1 L 6 1 z M 1 6 L 1 8 L 6 8 L 8 8 L 13 8 L 13 6 L 8 6 L 6 6 L 1 6 z M 6 10.5 L 6 13 L 8 13 L 8 10.5 L 6 10.5 z "
+ id="rect2818" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="20"
+ sodipodi:docname="mode_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3697"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientTransform="matrix(1.0139031,0,0,0.98129058,0.02645165,0.10400205)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-4-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.903094,0,0,1.1459084,-157.26255,-1.2260457)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.234375"
+ inkscape:cx="14.208192"
+ inkscape:cy="24.917293"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="5.3528337"
+ y="-12.397595"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="5.3528337"
+ y="-12.397595">see: recordpatch_up</tspan></text>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3074"
+ width="128"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.99746358"
+ id="rect2818"
+ width="127.00214"
+ height="19.002769"
+ x="0.49873179"
+ y="0.49849963"
+ ry="2.6554701" />
+ <rect
+ ry="2.6554701"
+ y="0.49849963"
+ x="0.49873179"
+ height="19.002769"
+ width="127.00214"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3697);fill-opacity:1;stroke:#000000;stroke-width:0.99746358" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-4-5);fill-opacity:1;stroke:#141414;stroke-width:0.51955199;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-5-0"
+ width="127.48045"
+ height="19.480448"
+ x="0.25977325"
+ y="0.25977612" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dodge.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dodge.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827">
+ <filter
+ inkscape:label="Thin Membrane"
+ inkscape:menu="Ridges"
+ inkscape:menu-tooltip="Thin like a soap membrane"
+ x="-0.050000001"
+ y="-0.050000001"
+ width="1.1"
+ height="1.1"
+ style="color-interpolation-filters:sRGB"
+ id="filter4488">
+ <feGaussianBlur
+ stdDeviation="5"
+ result="result1"
+ id="feGaussianBlur4462" />
+ <feComposite
+ in="result1"
+ in2="result1"
+ result="result4"
+ operator="xor"
+ id="feComposite4464" />
+ <feGaussianBlur
+ stdDeviation="8"
+ result="result6"
+ id="feGaussianBlur4466" />
+ <feComposite
+ operator="atop"
+ in="result6"
+ in2="SourceGraphic"
+ result="result8"
+ id="feComposite4468" />
+ <feComposite
+ operator="in"
+ result="fbSourceGraphic"
+ in="result6"
+ in2="result8"
+ id="feComposite4470" />
+ <feColorMatrix
+ result="fbSourceGraphicAlpha"
+ in="fbSourceGraphic"
+ values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 2 0 "
+ id="feColorMatrix4472" />
+ <feGaussianBlur
+ result="result0"
+ in="fbSourceGraphicAlpha"
+ stdDeviation="2"
+ id="feGaussianBlur4474" />
+ <feSpecularLighting
+ specularExponent="25"
+ specularConstant="2"
+ surfaceScale="-5"
+ lighting-color="#ffffff"
+ result="result1"
+ in="result0"
+ id="feSpecularLighting4478">
+ <fePointLight
+ z="20000"
+ y="-10000"
+ x="-5000"
+ id="fePointLight4476" />
+ </feSpecularLighting>
+ <feComposite
+ operator="in"
+ result="result2"
+ in="result1"
+ in2="fbSourceGraphicAlpha"
+ id="feComposite4480" />
+ <feComposite
+ k4="0"
+ k1="0"
+ k3="2"
+ k2="1"
+ operator="arithmetic"
+ result="result4"
+ in="fbSourceGraphic"
+ in2="result2"
+ id="feComposite4482" />
+ <feComposite
+ operator="in"
+ in="result4"
+ result="result9"
+ in2="result4"
+ id="feComposite4484" />
+ <feBlend
+ mode="multiply"
+ in="result9"
+ in2="result4"
+ id="feBlend4486" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-2.0289018"
+ inkscape:cy="5.7745665"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ id="text2340"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.25499535px;line-height:1.42466354px;font-family:MathJax_AMS;-inkscape-font-specification:'MathJax_AMS, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.05698655"
+ aria-label="D"
+ transform="matrix(1.1283135,0,0,1.2727267,-0.22646116,255.45227)">
+ <path
+ id="path3887"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.25499535px;font-family:MathJax_AMS;-inkscape-font-specification:'MathJax_AMS, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#ff0000;stroke-width:0.05698655"
+ d="m 0.43376583,29.75125 c -0.012765,0.01702 -0.021275,0.0383 -0.021275,0.05532 0,0.01702 0.00851,0.03404 0.021275,0.04681 0.021275,0.02127 0.038295,0.02978 0.13615985,0.02978 0.11913987,0.0085 0.15743483,0.02128 0.1787098,0.07659 0.00851,0.02553 0.012765,0.625485 0.012765,1.229694 0,0.604209 -0.004255,1.204164 -0.012765,1.229694 -0.021275,0.05531 -0.0595699,0.06382 -0.1787098,0.07233 -0.0978649,0 -0.11488487,0.01277 -0.13615985,0.02978 -0.012765,0.01702 -0.021275,0.03404 -0.021275,0.05106 0,0.01702 0.00851,0.0383 0.021275,0.05532 l 0.029785,0.01702 H 1.174135 c 0.4169896,0 0.7361142,0 0.7914292,-0.0085 0.6169743,-0.06808 1.0594938,-0.416989 1.2424586,-0.957374 0.055315,-0.178709 0.063825,-0.293594 0.063825,-0.536129 0,-0.16169 0,-0.22977 -0.00851,-0.302105 C 3.1569628,30.291635 2.7697583,29.90443 2.1740589,29.781035 1.9953491,29.73423 1.9102492,29.73423 1.165625,29.73423 H 0.4635508 Z m 0.91907897,0.140415 c -0.046805,0.0851 -0.038295,-0.01702 -0.046805,1.289264 v 1.199909 l 0.01702,0.05532 0.029785,0.05531 H 0.88905033 c 0,-0.0085 0.00851,-0.02553 0.021275,-0.06382 0.00851,-0.0383 0.012765,-0.63825 0.012765,-1.238204 0,-0.599954 -0.004255,-1.204164 -0.012765,-1.238204 -0.012765,-0.0383 -0.021275,-0.05957 -0.021275,-0.06808 H 1.1273301 c 0.1233948,0 0.2255147,0 0.2255147,0.0085 z m 0.3574196,-0.0085 c 0.06808,0 0.1531799,0.0085 0.2212598,0.02979 0.3063597,0.123395 0.4893245,0.39146 0.5574044,0.774409 0.03404,0.148925 0.046805,0.302105 0.046805,0.46805 0,0.07234 -0.00426,0.148925 -0.00851,0.22977 -0.05106,0.587189 -0.2297697,0.936099 -0.5616593,1.059494 -0.0851,0.02978 -0.2170048,0.0468 -0.3021047,0.0468 -0.063825,-0.0085 -0.1489249,-0.0468 -0.1787098,-0.0851 l -0.01702,-0.02553 V 29.99804 c 0.055315,-0.06383 0.1063749,-0.114885 0.2425347,-0.114885 z m 0.6935643,0.123395 c 0.1574348,0.06808 0.2935947,0.15318 0.4127345,0.285085 0.2042398,0.208495 0.3106147,0.438264 0.3106147,0.842489 0,0.544639 -0.1999848,0.893549 -0.5446394,1.123319 -0.07659,0.05532 -0.2170048,0.131905 -0.2467898,0.131905 l 0.046805,-0.06808 c 0.2084948,-0.26381 0.3021047,-0.651015 0.3021047,-1.178634 0,-0.49358 -0.1021199,-0.842489 -0.3276347,-1.119064 -0.029785,-0.02553 -0.05106,-0.05532 -0.05106,-0.05532 0.012765,0 0.05106,0.02127 0.097865,0.0383 z"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dst.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dst.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="94.756679"
+ inkscape:cx="7"
+ inkscape:cy="7.0000124"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ style="fill:#ffcc00"
+ transform="matrix(1,0,0,1.0954529,-2.9082483,252.73942)"
+ id="g3546">
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.12825248"
+ id="rect5063-5"
+ width="0.92604166"
+ height="0.32867095"
+ x="5.4030371"
+ y="40.07523" />
+ <rect
+ y="-6.3290787"
+ x="37.022499"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-3"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="rotate(90)" />
+ <use
+ style="fill:#ffcc00"
+ x="0"
+ y="0"
+ xlink:href="#rect5063-5"
+ id="use2805-2"
+ transform="translate(2.2910767e-7,-3.0527295)"
+ width="100%"
+ height="100%" />
+ </g>
+ <use
+ height="100%"
+ width="100%"
+ transform="matrix(-1,0,0,1,3.7041667,4.8272973e-7)"
+ id="use3548"
+ xlink:href="#g3546"
+ y="0"
+ x="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dstatop.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstatop.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="3"
+ inkscape:cy="6.1676301"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(0.99754438,0,0,1.3477257,0.0053899,228.32769)"
+ id="g2668">
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#111111;stroke-width:0.07367971;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2634-0"
+ sodipodi:sides="3"
+ sodipodi:cx="2.1141753"
+ sodipodi:cy="49.957256"
+ sodipodi:r1="1.6418802"
+ sodipodi:r2="0.82796711"
+ sodipodi:arg1="0.51173885"
+ sodipodi:arg2="1.5645129"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 3.5457213,50.761275 -1.4263435,0.02393 -1.41727634,0.0098 0.69244624,-1.247216 0.7001555,-1.232294 0.7338973,1.223283 z"
+ inkscape:transform-center-x="-0.015687632"
+ inkscape:transform-center-y="-0.3457254"
+ transform="matrix(0.87092496,0.01050567,-0.01050567,0.87092496,-0.02306479,6.3294581)" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#111111;stroke-width:0.07367971;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2634"
+ sodipodi:sides="3"
+ sodipodi:cx="2.1141753"
+ sodipodi:cy="49.957256"
+ sodipodi:r1="1.6418802"
+ sodipodi:r2="0.82796711"
+ sodipodi:arg1="0.51173885"
+ sodipodi:arg2="1.5645129"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 3.5457213,50.761275 -1.4263435,0.02393 -1.41727634,0.0098 0.69244624,-1.247216 0.7001555,-1.232294 0.7338973,1.223283 z"
+ inkscape:transform-center-x="-0.019252065"
+ inkscape:transform-center-y="-0.42428168"
+ transform="matrix(1.0688173,0.01289278,-0.01289278,1.0688173,0.49992127,-3.3880995)" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dstin.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstin.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="21.625"
+ inkscape:cx="-19.393064"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(1.0769231,0,0,1.0769231,-0.01062399,233.57341)"
+ id="g3791">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 2.0303352,58.172273 0.59837,-0.994693 -0.59837,-0.994692 H 1.6650964 l 0.4662623,0.777104 H 0.00986509 V 57.39517 H 2.1313587 l -0.4740334,0.777103 z"
+ id="rect5024"
+ sodipodi:nodetypes="cccccccccc" />
+ <g
+ id="g2810"
+ transform="matrix(0.93986729,0,0,0.93986729,-0.03197671,3.4128807)"
+ style="fill:#ffcc00">
+ <rect
+ y="58.652393"
+ x="1.8520832"
+ height="0.34969932"
+ width="1.8520833"
+ id="rect5063"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.18708868" />
+ <rect
+ transform="rotate(90)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.26075476"
+ id="rect5026-9"
+ width="3.5977426"
+ height="0.34969932"
+ x="55.40435"
+ y="-3.7041667" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.3841858e-7,-3.2480431)"
+ id="use2805"
+ xlink:href="#rect5063"
+ y="0"
+ x="0"
+ style="fill:#ffcc00" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dstout.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstout.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(1.0769231,0,0,1.0769231,-0.20374654,224.12518)"
+ id="g3784">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 0.78756307,64.956237 -0.5983699,0.994693 0.5983699,0.994692 H 1.152802 L 0.68653957,66.168518 H 2.8080332 V 65.73334 H 0.68653957 L 1.160573,64.956237 Z"
+ id="rect5024-9"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.17583853"
+ id="rect5063-4"
+ width="1.7407125"
+ height="0.32867095"
+ x="1.8880638"
+ y="67.311699" />
+ <rect
+ y="-3.6287766"
+ x="64.258965"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-9"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="rotate(90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect5063-4"
+ id="use2805-0"
+ transform="translate(2.262973e-7,-3.0527294)"
+ width="100%"
+ height="100%"
+ style="fill:#ffcc00" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_dstover.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_dstover.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="2.6994219"
+ inkscape:cy="7.716763"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="translate(0.00298855,221.33028)"
+ id="g5433">
+ <circle
+ r="0.92604166"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.4920814;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path2701-0"
+ cx="0.92661911"
+ cy="72.893448" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path2818-0-6"
+ d="m 1.4737935,72.471314 2.034191,1.457639 -0.7958544,0.148129 0.8273747,1.034817 -0.3631424,0.397835 -0.8637437,-1.10619 -0.260633,0.873114 C 1.8590114,74.317249 1.6664854,73.430796 1.4737935,72.471314 Z"
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.31622466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_hardlight.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_hardlight.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="5.1040462"
+ inkscape:cy="6.4450867"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <circle
+ cy="295.14789"
+ cx="1.8520833"
+ id="path1502-0-8"
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878144;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ r="1.8520833" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="20"
+ sodipodi:docname="mode_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="12.436287"
+ x2="59.855824"
+ y1="0.40625"
+ x1="59.855824"
+ id="linearGradient3615"
+ xlink:href="#linearGradient3609"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3606"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ id="linearGradient3600"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-4"
+ 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" />
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609"
+ inkscape:collect="always">
+ <stop
+ id="stop3611"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="12.436287"
+ x2="59.855824"
+ y1="0.40625"
+ x1="59.855824"
+ id="linearGradient3615-4"
+ xlink:href="#linearGradient3609-8"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ id="linearGradient3600-8"
+ xlink:href="#linearGradient3594-1"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-1"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-1"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-5"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3611-5"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613-6"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609-8"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientTransform="translate(-100.24215,-32.908957)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594-1"
+ id="linearGradient2918"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientTransform="translate(-100.24215,-32.908957)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3694"
+ gradientUnits="userSpaceOnUse"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientTransform="matrix(1.0139031,0,0,0.98129058,0.02645165,0.10400205)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3697"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientTransform="matrix(1.0139031,0,0,0.98129058,0.02645165,0.10400205)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-1-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.9030946,0,0,1.1459084,-157.26264,-1.2260064)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.234375"
+ inkscape:cx="6.4962406"
+ inkscape:cy="10"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3074"
+ width="128"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.99746358"
+ id="rect2818"
+ width="127.00214"
+ height="19.002769"
+ x="0.49873179"
+ y="0.49849963"
+ ry="2.6554701" />
+ <rect
+ ry="2.6554701"
+ y="0.49849963"
+ x="0.49873179"
+ height="19.002769"
+ width="127.00214"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3697);fill-opacity:1;stroke:#000000;stroke-width:0.99746358" />
+ <path
+ style="opacity:0.3;fill:url(#linearGradient3694);fill-opacity:1;stroke:none"
+ d="m 3.2582678,0.50265135 c -1.5200226,0 -2.75654907,1.16608795 -2.75654907,2.63721845 V 16.847273 c 0,1.079168 0.66499787,2.006346 1.61590807,2.422561 v -7.666333 c 0,-1.476039 1.2314553,-2.6678837 2.756549,-2.6678837 H 122.70873 c 1.52509,0 2.75655,1.1918447 2.75655,2.6678837 v 7.788994 c 1.1664,-0.30599 2.0278,-1.316881 2.0278,-2.545222 V 3.1398698 c 0,-1.4711305 -1.20484,-2.63721845 -2.72486,-2.63721845 z"
+ id="rect3602"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-1-7);fill-opacity:1;stroke:#141414;stroke-width:0.51955199;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-3-2"
+ width="127.48045"
+ height="19.480448"
+ x="0.25977325"
+ y="0.25977612" />
+ <rect
+ y="0.77439404"
+ x="0.77442169"
+ height="18.451189"
+ width="126.45119"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-0-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.54881245;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="8.0796518"
+ y="-22.66326"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="8.0796518"
+ y="-22.66326">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_lighten.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_lighten.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-14.086705"
+ inkscape:cy="6.1676301"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="translate(-0.01573131,201.33025)"
+ id="g5452">
+ <circle
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878142;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-0-8-4-1"
+ cx="1.8678147"
+ cy="93.817657"
+ r="1.8520833" />
+ <text
+ transform="scale(1.0028051,0.99720275)"
+ id="text5191-3"
+ y="96.686646"
+ x="-0.27187222"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.2856307px;line-height:22.7675972px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.91070384"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.91070384"
+ y="96.686646"
+ x="-0.27187222"
+ id="tspan5189-1"
+ sodipodi:role="line">+</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_max.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_max.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.283506"
+ inkscape:cx="-41.313747"
+ inkscape:cy="7"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ transform="matrix(4.1402963,0,0,-4.0702616,-16.14981,431.46329)"
+ id="g3360-8">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 4.5953859,104.58471 0.9946926,0.59837 0.9946926,-0.59837 v -0.36524 l -0.7771039,0.46627 v -2.1215 H 5.3724889 v 2.1215 l -0.777103,-0.47404 z"
+ id="rect5024-8-0"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ y="-106.00382"
+ x="-7.2820415"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-8-5"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_min.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_min.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-5.381503"
+ inkscape:cy="5.4739884"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(1.0954534,0,0,1.0769234,-4.2729704,182.84199)"
+ id="g3360-0">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.24867323"
+ d="m 4.5953859,104.58471 0.9946926,0.59837 0.9946926,-0.59837 v -0.36524 l -0.7771039,0.46627 v -2.1215 H 5.3724889 v 2.1215 l -0.777103,-0.47404 z"
+ id="rect5024-8-6"
+ sodipodi:nodetypes="cccccccccc" />
+ <rect
+ y="-106.00382"
+ x="-7.2820415"
+ height="0.32867095"
+ width="3.3814006"
+ id="rect5026-9-8-2"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.24507487"
+ transform="scale(-1)" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_multiply.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_multiply.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.857143"
+ inkscape:cx="-18.983051"
+ inkscape:cy="8.8969151"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#e6e4dd;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ id="text2818"
+ transform="matrix(0.56574586,0,0,0.54857143,13.302688,7.1423729)">
+ <path
+ d="m -0.94518089,-11.197034 -7.91015621,10.64453137 8.32031246,11.23046863 -4.23828126,0 -6.3671871,-8.5937499 -6.367188,8.5937499 -4.238281,0 8.496094,-11.44531238 -7.773438,-10.42968762 4.238281,0 5.800782,7.7929689 5.8007809,-7.7929689 4.23828121,0"
+ id="path2823"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_normal.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_normal.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="37.377032"
+ inkscape:cx="-1.0316309"
+ inkscape:cy="4.3609665"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.11808574;stroke-opacity:1"
+ id="rect2818"
+ width="7.8819141"
+ height="8.8819141"
+ x="0.55904329"
+ y="0.48622954" />
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.11890268;stroke-opacity:1"
+ d="m 8.4390001,2.5594516 0,6.8797232 -5.8795487,0 0,2.0013742 7.8810976,0 0,-8.8810974 -2.0015489,0 z"
+ id="rect3592" />
+ <path
+ id="path3597"
+ d="m 10.439,4.5594516 0,6.8797224 -5.8795487,0 0,2.001375 7.8810977,0 0,-8.8810974 -2.001549,0 z"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.11890268;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_or.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_or.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ id="g2632-2"
+ transform="matrix(0.84320161,-0.84320161,0.84320161,0.84320161,-95.091007,201.30115)">
+ <ellipse
+ cx="1.2722983"
+ cy="113.13418"
+ id="circle1312-1-4"
+ style="fill:#ff0000;fill-opacity:1;stroke:#111111;stroke-width:0.05632625;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.1277523"
+ ry="1.125299" />
+ <ellipse
+ cx="2.4000525"
+ cy="113.13418"
+ id="circle1316-4-0"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.056;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.1277523"
+ ry="1.125299" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.836175,112.15964 c 0.348927,0.20101 0.563876,0.57251 0.563876,0.97454 0,0.40203 -0.214949,0.77352 -0.563876,0.97453 -0.348928,-0.20101 -0.563876,-0.5725 -0.563876,-0.97453 0,-0.40203 0.214948,-0.77353 0.563876,-0.97454"
+ id="path1320-20-6"
+ style="fill:#ff0000;fill-opacity:1;stroke:#131313;stroke-width:0.05632627;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_overlay.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_overlay.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="6.1213872"
+ inkscape:cy="8.0404624"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="translate(-3.4990694e-8,293.29582)"
+ id="g3811">
+ <circle
+ style="opacity:1;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.11341529;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502"
+ cx="2.3812501"
+ cy="1.8520833"
+ r="1.3229166" />
+ <circle
+ style="opacity:1;fill:#ccff00;fill-opacity:0.67000002;fill-rule:evenodd;stroke:none;stroke-width:0.11341529;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1502-5"
+ cx="1.3229166"
+ cy="1.8520833"
+ r="1.3229166" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_replace.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_replace.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.857143"
+ inkscape:cx="-5.6355932"
+ inkscape:cy="10.024033"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#e6e4dd;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ id="text2818"
+ transform="matrix(0.47925118,0,0,0.53148789,10.767313,8.9561666)">
+ <path
+ d="m -20.380363,-9.325079 25.039062,0 0,3.28125 -25.039062,0 0,-3.28125 m 0,7.96875 25.039062,0 0,3.3203125 -25.039062,0 0,-3.3203125"
+ id="path2823"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_screen.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_screen.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ id="g4980-6"
+ transform="matrix(0.78293622,-0.78293622,0.78293622,0.78293622,-93.959824,202.05706)">
+ <ellipse
+ cx="1.1305716"
+ cy="120.63738"
+ id="circle1312-1-4-2"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#111111;stroke-width:0.06066189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2145594"
+ ry="1.2119173" />
+ <ellipse
+ cx="2.3451331"
+ cy="120.63738"
+ id="circle1316-4-5-9"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#000000;stroke-width:0.06031052;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2145594"
+ ry="1.2119173" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.7378519,119.58783 c 0.3757852,0.21648 0.6072796,0.61658 0.6072796,1.04956 0,0.43297 -0.2314944,0.83306 -0.6072796,1.04954 -0.3757862,-0.21648 -0.6072795,-0.61657 -0.6072795,-1.04954 0,-0.43298 0.2314933,-0.83308 0.6072795,-1.04956"
+ id="path1320-20-4-9"
+ style="fill:#ffcc00;fill-opacity:1;stroke:#131313;stroke-width:0.0606619;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_softlight.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_softlight.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827">
+ <radialGradient
+ gradientTransform="matrix(1.514876,-0.01520184,0.01542061,1.536676,-3.0229921,92.636493)"
+ gradientUnits="userSpaceOnUse"
+ r="1.7197917"
+ fy="131.80392"
+ fx="1.8764442"
+ cy="131.80392"
+ cx="1.8764442"
+ id="radialGradient2299"
+ xlink:href="#linearGradient2295"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2295"
+ inkscape:collect="always">
+ <stop
+ id="stop2291"
+ offset="0"
+ style="stop-color:#ffbfd7;stop-opacity:1" />
+ <stop
+ id="stop2293"
+ offset="1"
+ style="stop-color:#ffbbd2;stop-opacity:0" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="1.751445"
+ inkscape:cy="7.0693642"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <circle
+ r="1.8520833"
+ cy="295.14789"
+ cx="1.8520833"
+ id="path1502-0"
+ style="opacity:1;fill:url(#radialGradient2299);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15878141;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_src.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_src.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#7a7a7a"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="3.1965315"
+ inkscape:cy="7.4855491"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.90217304px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="-0.082385801"
+ y="296.21576"
+ id="text5978-0"><tspan
+ sodipodi:role="line"
+ id="tspan5976-4"
+ x="-0.082385801"
+ y="296.21576"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_srcatop.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcatop.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="7.705202"
+ inkscape:cy="6.2601156"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5"
+ width="3.7041667"
+ height="0.39687499"
+ x="-3.7041664"
+ y="-296.99997" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.90217304px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="-0.082385816"
+ y="296.21576"
+ id="text5978-6"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0"
+ x="-0.082385816"
+ y="296.21576"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_srcin.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcin.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-9.3815031"
+ inkscape:cy="5.8901734"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.29130781;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5980-9-4"
+ width="3.7041667"
+ height="3.7041667"
+ x="-6.7216396"
+ y="293.29428" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.16467875;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5298-9"
+ width="3.5394878"
+ height="3.5394878"
+ x="0.082339428"
+ y="293.37817" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.05342317px;line-height:9.54197311px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.38167897"
+ x="0.057896916"
+ y="285.44064"
+ id="text5978-6-6"
+ transform="scale(0.96362415,1.037749)"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0-0"
+ x="0.057896916"
+ y="285.44064"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.05342317px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.38167897">SRC</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_srcout.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcout.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#e2e2e2"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="6.6647398"
+ inkscape:cy="10.283237"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:5.39965963px;line-height:16.87398148px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.6749593"
+ x="0.38877678"
+ y="297.10397"
+ id="text5978-3"><tspan
+ sodipodi:role="line"
+ id="tspan5976-6"
+ x="0.38877678"
+ y="297.10397"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:5.39965963px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.6749593">SR</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_srcover.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_srcover.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="21.625"
+ inkscape:cx="-14.190752"
+ inkscape:cy="1.265896"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5-8"
+ width="3.7041667"
+ height="0.39687499"
+ x="-3.7041678"
+ y="-296.99997" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;line-height:9.90217304px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.39608696"
+ x="-0.082386985"
+ y="296.21576"
+ id="text5978-6-4"><tspan
+ sodipodi:role="line"
+ id="tspan5976-0-6"
+ x="-0.082386985"
+ y="296.21576"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:condensed;font-size:3.16868711px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.39608696">SRC</tspan></text>
+ <rect
+ transform="scale(-1)"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.28186554"
+ id="rect5026-9-8-2-5-8-8"
+ width="3.7041667"
+ height="0.39687499"
+ x="-3.7041659"
+ y="-293.69269" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="14"
+ sodipodi:docname="mode_subtract.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_subtract.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.857143"
+ inkscape:cx="-18.923729"
+ inkscape:cy="11.922339"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#e6e4dd;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ id="text2818"
+ transform="matrix(1.1398887,0,0,0.62439022,20.074118,13.952584)">
+ <path
+ d="m -16.733316,-12.73656 10.5273433,0 0,3.2031251 -10.5273433,0 0,-3.2031251"
+ id="path2823"
+ style="fill:#e6e4dd;fill-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="20"
+ sodipodi:docname="mode_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="12.436287"
+ x2="59.855824"
+ y1="0.40625"
+ x1="59.855824"
+ id="linearGradient3615"
+ xlink:href="#linearGradient3609"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3606"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ id="linearGradient3600"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-4"
+ 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" />
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609"
+ inkscape:collect="always">
+ <stop
+ id="stop3611"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="12.436287"
+ x2="59.855824"
+ y1="0.40625"
+ x1="59.855824"
+ id="linearGradient3615-4"
+ xlink:href="#linearGradient3609-8"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ id="linearGradient3600-8"
+ xlink:href="#linearGradient3594-1"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-9"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-1"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-1"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-5"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609-8"
+ inkscape:collect="always">
+ <stop
+ id="stop3611-5"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613-6"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609-8"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientTransform="translate(-100.24215,-32.908957)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594-1"
+ id="linearGradient2918"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientTransform="translate(-100.24215,-32.908957)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3694"
+ gradientUnits="userSpaceOnUse"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287"
+ gradientTransform="matrix(1.0139031,0,0,0.98129058,0.02645165,0.10400205)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3697"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887"
+ gradientTransform="matrix(1.0139031,0,0,0.98129058,0.02645165,0.10400205)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4.9030752,0,0,1.1459083,-157.2618,-1.2260281)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.234375"
+ inkscape:cx="86.727814"
+ inkscape:cy="1.0175439"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3074"
+ width="128"
+ height="20"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2);fill-opacity:1;stroke:#141414;stroke-width:0.52003276;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9"
+ width="127.47997"
+ height="19.480446"
+ x="0.26001358"
+ y="0.25977707"
+ inkscape:transform-center-x="25.386468"
+ inkscape:transform-center-y="-37.166706" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="16.741306"
+ y="-11.916392"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="16.741306"
+ y="-11.916392">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 3.7041666 3.7041668"
+ version="1.1"
+ id="svg833"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="mode_xor.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mode_xor.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs827" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="43.25"
+ inkscape:cx="-10.595376"
+ inkscape:cy="7"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ units="px" />
+ <metadata
+ id="metadata830">
+ <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:date>2018-08-13</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-13: neu
+</dc:description>
+ <dc:relation>mode.svg</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-293.29582)">
+ <g
+ transform="matrix(0.76514982,-0.76514982,0.76514982,0.76514982,-141.29757,154.1007)"
+ id="g2472-0">
+ <ellipse
+ cx="0.75251567"
+ cy="185.71321"
+ id="circle1312-6"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.06206879;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2427284"
+ ry="1.2400248" />
+ <ellipse
+ cx="1.9952441"
+ cy="185.71321"
+ id="circle1316-2"
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.06206879;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="1.2427284"
+ ry="1.2400248" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1.3738801,184.63932 c 0.3845017,0.22151 0.6213642,0.63088 0.6213642,1.0739 0,0.44302 -0.2368625,0.85238 -0.6213642,1.07389 -0.38450149,-0.22151 -0.62136429,-0.63087 -0.62136429,-1.07389 0,-0.44302 0.2368628,-0.85239 0.62136429,-1.0739"
+ id="path1320-9"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.06206883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16"
+ height="16"
+ sodipodi:docname="modekeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/modekeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="14.75"
+ inkscape:cx="-16.659089"
+ inkscape:cy="1.0250462"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#27ae60;fill-opacity:1;stroke:#0b331e;stroke-width:1.46294332;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;font-family:Sans;-inkscape-font-specification:Sans;stroke-opacity:1"
+ id="text2818"
+ transform="matrix(0.80146751,0,0,0.51641779,9.8216615,12.343377)">
+ <path
+ d="m -7.1361885,2.8491788 14.2578125,0 0,3.3203125 -18.789063,0 0,-3.3203125 9.3554692,-12.1875 -9.3554692,-10.3320308 0,-3.320313 18.4375005,0 0,3.320313 -13.90625,0 9.3554687,10.2539058 -9.3554687,12.265625"
+ id="path2823"
+ style="fill:#27ae60;stroke:#0b331e;stroke-width:1.46294332;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="mscroll_filler.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mscroll_filler.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-9" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26378025,-1.0791239,-0.05356539)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective10-0"
+ 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>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="5.330508"
+ inkscape:cy="9.0042373"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="17"
+ height="17"
+ x="0"
+ y="0" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="mutepatch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5849">
+ <stop
+ id="stop5845"
+ offset="0"
+ style="stop-color:#ff1717;stop-opacity:1;" />
+ <stop
+ id="stop5847"
+ offset="1"
+ style="stop-color:#650000;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient5681-5"
+ cx="-159.70334"
+ cy="259.60919"
+ fx="-159.70334"
+ fy="259.60919"
+ r="5.0000005"
+ gradientTransform="matrix(1.3825123,0.01221178,-0.01098784,1.2439496,235.72037,-312.55158)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-1-7-3-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.73110717,0,0,0.94169349,-22.992767,-0.72541524)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="25.913386"
+ inkscape:cx="-0.22637489"
+ inkscape:cy="-0.1331273"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="20"
+ height="17"
+ x="0"
+ y="0" />
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.48353088;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.7417654,6.1801902 v 4.0210018 h 4.4474896 l 4.068979,3.557043 V 3.2417655 l -4.068979,2.9384247 z"
+ id="path2928"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';fill:#ff0000;fill-opacity:1;stroke:none"
+ id="text2832"
+ transform="matrix(0.66003682,0,0,0.64000001,24.93465,15.969843)">
+ <path
+ d="m -9.4015484,-22.60913 -7.9101566,10.644531 8.3203129,11.23046874 h -4.2382809 l -6.367188,-8.59375004 -6.367187,8.59375004 h -4.238282 l 8.496094,-11.44531274 -7.773437,-10.429687 h 4.238281 l 5.800781,7.792968 5.800781,-7.792968 h 4.2382816"
+ id="path2837"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-6-1-7-3-4);fill-opacity:1;stroke:#141414;stroke-width:0.99121135;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-7-2-10-2-7-4"
+ width="19.008789"
+ height="16.008789"
+ x="0.49560547"
+ y="0.49560547" />
+ <path
+ style="display:inline;fill:url(#radialGradient5681-5);fill-opacity:1;stroke:#aa0000;stroke-width:1.09788311;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.04894,6.0951059 v 4.1684901 h 5.1711 l 4.73102,3.68751 V 3.0489059 l -4.73102,3.0462 z"
+ id="path2928-3-5-7-6"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="mutepatch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5849"
+ id="radialGradient5681-21"
+ cx="-159.70334"
+ cy="259.60919"
+ fx="-159.70334"
+ fy="259.60919"
+ r="5.0000005"
+ gradientTransform="matrix(1.3825123,0.01221178,-0.01098784,1.2439496,235.72036,-312.55157)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient5849">
+ <stop
+ id="stop5845"
+ offset="0"
+ style="stop-color:#ff1717;stop-opacity:1;" />
+ <stop
+ id="stop5847"
+ offset="1"
+ style="stop-color:#650000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-5-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.73110717,0,0,0.94169349,-22.992766,-0.72537761)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.939358"
+ inkscape:cx="-76.146217"
+ inkscape:cy="8.5"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="20"
+ height="17"
+ x="0"
+ y="0" />
+ <g
+ id="g3311"
+ transform="matrix(0.85984264,0,0,0.71183026,0.97144784,1.0255852)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.48353088;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.7417654,6.1801902 v 4.0210018 h 4.4474896 l 4.068979,3.557043 V 3.2417655 l -4.068979,2.9384247 z"
+ id="path2928"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ style="font-style:normal;font-weight:normal;font-size:40px;font-family:'Bitstream Vera Sans';fill:#ff0000;fill-opacity:1;stroke:none"
+ id="text2832"
+ transform="matrix(0.66003682,0,0,0.64000001,24.93465,15.969843)">
+ <path
+ d="m -9.4015484,-22.60913 -7.9101566,10.644531 8.3203129,11.23046874 h -4.2382809 l -6.367188,-8.59375004 -6.367187,8.59375004 h -4.238282 l 8.496094,-11.44531274 -7.773437,-10.429687 h 4.238281 l 5.800781,7.792968 5.800781,-7.792968 h 4.2382816"
+ id="path2837"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-5-9);fill-opacity:1;stroke:#141414;stroke-width:0.99121135;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-7-2-1-8-9"
+ width="19.008789"
+ height="16.008789"
+ x="0.49560547"
+ y="0.49560547" />
+ <path
+ style="display:inline;fill:url(#radialGradient5681-21);fill-opacity:1;stroke:#aa0000;stroke-width:1.09788311;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 5.0489398,6.0951064 V 10.263595 H 10.22004 l 4.73102,3.68751 V 3.0489064 l -4.73102,3.0462 z"
+ id="path2928-3-5-7-3"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="1.1895394"
+ x="1.0041809"
+ height="14.620921"
+ width="17.991638"
+ id="rect3597-5-7-9-4-8-9-4-29-9-3"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="mutepatch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.73703444,0,0,0.95075859,-23.260254,-0.81419761)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.939358"
+ inkscape:cx="-46.996032"
+ inkscape:cy="8.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="20"
+ height="17"
+ x="0"
+ y="0" />
+ <g
+ id="g3288"
+ transform="matrix(0.85986112,0,0,0.71181184,0.9714404,1.0259659)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.48353088;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.7417654,6.1801902 v 4.0210018 h 4.4474896 l 4.068979,3.557043 V 3.2417655 l -4.068979,2.9384247 z"
+ id="path2928"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-0-1);fill-opacity:1;stroke:#141414;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-50-11-3-8-7"
+ width="19.162897"
+ height="16.162895"
+ x="0.41855145"
+ y="0.4185524" />
+ <path
+ style="display:inline;fill:none;stroke:#ffcc00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.2783651,6.1963299 v 3.9930311 h 4.9314899 l 4.51178,3.53229 V 3.2783599 l -4.51178,2.91797 z"
+ id="path2928-3-9"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="mutepatch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ gradientUnits="userSpaceOnUse"
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ id="linearGradient3716"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ id="linearGradient3706"
+ xlink:href="#linearGradient3700"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.7370344,0,0,0.95075869,-23.260254,-0.81419879)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.939358"
+ inkscape:cx="-30.953043"
+ inkscape:cy="6.0318478"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="20"
+ height="17"
+ x="0"
+ y="0" />
+ <g
+ id="g3311"
+ transform="matrix(0.85984264,0,0,0.71183026,0.97144784,1.0255852)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:1.48353088;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.7417654,6.1801902 v 4.0210018 h 4.4474896 l 4.068979,3.557043 V 3.2417655 l -4.068979,2.9384247 z"
+ id="path2928"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-3-1-0-1);fill-opacity:1;stroke:#141414;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-2-1-3-3"
+ width="19.162897"
+ height="16.162895"
+ x="0.41855145"
+ y="0.4185524" />
+ <rect
+ y="1.433857"
+ x="1.1897612"
+ height="14.132271"
+ width="17.62047"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-4-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ style="display:inline;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:1.05099201;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 5.0254962,6.0847612 v 4.1864298 h 5.1955998 l 4.7534,3.70336 V 3.0254612 l -4.7534,3.0593 z"
+ id="path2928-3-4"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-68.499222"
+ y="-17.588722"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-68.499222"
+ y="-17.588722">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="17"
+ sodipodi:docname="mutepatch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mutepatch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.73703451,0,0,0.95075864,-19.969373,40.870128)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.73703451,0,0,0.95075864,-23.260243,-0.81421872)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.939358"
+ inkscape:cx="-20.34913"
+ inkscape:cy="5.9404348"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-68.316399"
+ y="-14.572092"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-68.316399"
+ y="-14.572092">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2);fill-opacity:1;stroke:#141414;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-19"
+ width="19.162897"
+ height="16.162897"
+ x="3.7094209"
+ y="42.102898" />
+ <path
+ style="display:inline;fill:none;fill-opacity:1;stroke:#cccccc;stroke-width:1.05099201;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 8.3163694,47.769108 v 4.18643 H 13.51197 l 4.7534,3.70336 v -10.94909 l -4.7534,3.0593 z"
+ id="path2928-3-4-6"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:url(#linearGradient1811-6);fill-opacity:1;stroke:#141414;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-19-7"
+ width="19.162897"
+ height="16.162897"
+ x="0.41855145"
+ y="0.41855145" />
+ <rect
+ y="1.1579041"
+ x="0.98015118"
+ height="14.684192"
+ width="18.039698"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-3-2-2"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ style="display:inline;fill:#2ca05a;fill-opacity:1;stroke:#100000;stroke-width:1.051;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
+ d="m 5.0255,6.0847605 v 4.1864305 h 5.1956 l 4.7534,3.70336 V 3.0254605 l -4.7534,3.0593 z"
+ id="path2928-3-4-6-5"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="640"
+ height="585"
+ sodipodi:docname="new_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2059">Neophyte: new_bg</title>
+ <metadata
+ id="metadata8">
+ <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>Neophyte: new_bg</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-08: Überschneiden sich: new project ./. append to project.
+Übernommenen Maße passten nicht.
+Siehe auch: setformat_bg.</dc:description>
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>cinelerra</rdf:li>
+ <rdf:li>theme</rdf:li>
+ <rdf:li>neophyte</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#ffb8ff"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-bbox="true"
+ inkscape:zoom="1.082772"
+ inkscape:cx="302.44967"
+ inkscape:cy="270.85877"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4"
+ inkscape:showpageshadow="false"
+ borderlayer="true"
+ guidecolor="#ff00ff"
+ guideopacity="0.49803922">
+ <sodipodi:guide
+ position="585.22926,-296.9577"
+ orientation="0,1"
+ id="guide1299"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid1903" />
+ <sodipodi:guide
+ position="628.82677,18.68817"
+ orientation="1,0"
+ id="guide2029"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-3.3759275,565.22671"
+ orientation="0,1"
+ id="guide2031"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="275.8615,557.51031"
+ orientation="0,1"
+ id="guide2033"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="527.12696,333.73454"
+ orientation="1,0"
+ id="guide2041"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="sreenshots"
+ style="display:inline"
+ transform="translate(0,185)"
+ sodipodi:insensitive="true">
+ <image
+ y="-185"
+ x="0"
+ id="image1897"
+ xlink:href="data:image/png;base64,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 c819znXO+5zrfa47Wy+sl9Yr67X1xnprvbPeWx+sj9Yn67MNpAZaA6uB1yBqkDWoGnQNpgZbg6vB 1xBqiDWkGnIZcoaeYWf4GXFGnlFn9Blzxp5xZ/yZcCaeSWewRkIjpZHRyGkUNEoaFY2aRkOjpdHR 6GkMNEYaE42ZJmITtYnZxG0SNkmblE3aJmOTtcnZ5G0KNkWbkk3ZZlIzrZnVzGsWNcuaVc26ZlOz rdnV7GsONceaU825LDlLz7Kz/Kw4K8+qs/qsOWvPurP+bDgbz6azWAuhhdLCaOG0CFokLYoWTYuh xdLiaPG0BFoiLYmWzAviC+oL5gvuC+EL6QvlC+0L4wvrC+cL74vgi+iL5ItsK6mV1spq5bWKWmWt qlZdq6nV1upq9bWGWmOtqdZcjpyj59g5fk6ck+fUOX3OnLPn3Dl/LpyL59I5rI3QRmljtHHaBG2S NkWbps3QZmlztHnaAm2RtkRb5iXxJfUl8yX3pfCl9KXypfal8aX1pfOl92XwZfRl8mW2ndROa2e1 89pF7bJ2Vbuu3dRua3e1+9pD7bH2VHsOI2N0jI3xMTEmx9SYHjNjdsyN+bEwFsfSGNYx/++Y/3fM /zvm/x3z/475f8f8v2P+3zH/75j/d8z/O+b/HfP/jvl/x/y/Y/7fMf/vmP93zP875v8d8/+O+X/H /L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+3zH/75j/d8z/O+b/HfP/jvl/x/y/Y/7fMf/vmP93 zP875v8d8/+O+X/H/L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+3zH/75j/d8z/O+b/HfP/jvl/ x/z///z8X6vi8Ajw5/e/JxDUE2Z1QX9/5RUKgfA7wv/+5z/8998RKOgvv/v97195hUj8wx9effWP fySR/vSn1157/XUy+c9/fuONN9+kUN566y9/efttKvWdd/7613ffpdHee+/99//2Nzr9gw8+/PDv f2cwPvro448/+YTJ/PTTf/yjUycW67PP/vnPzp3Z7M8//+KLL7/kcL76qkuXr7/mcr/5pmvXb7/l 8b77rlu37t35/B49vv++Z88ffhAIfvyxV6/evYXCPn369u3XTyTq33/AgLw8sXjgwEGDBg+WSIYM GTp02DCpdPjw/PwRI2SykSNHjRo9Wi4fM2bs2IIChaKwcNy48eOVygkTJk6cNEmlmjy5qGjKFLV6 6tRp06ZP12hmzJg5c9YsrXb27Dlz5s7V6ebNmz+/uFivX7Bg4cJFi0pKDIbS0sWLlywxGpcuXbZs ucm0YsXKlT/9ZDavWlVWtnq1xVJevmbN2rVW67p169dv2GCzbdy4adPmzXb7li1bt27b5nBs315R sWOH07lz565du3e7XHv2/Pzz3r1ud2Xlvn3793s8Bw4cPHjokNd7+PCRI0eP+nzHjh0/fuKE33/y 5KlTp0+fORMInD1bVXXuXDB4/vyFCxcvhkLV1Zcu1dSEw5cvX7ly9Wokcu3a9es3bkSjN2/W1t66 FYvdvn3nzt278fi9e/fvP3iQSDx8+Msvjx4lk48fP3ny9Gkq9exZXd2vv6bTz5/X1zc0ZDKNjU1N zc3ZbEvLixetENVtbS9ftrdj6P5Ix/537H/H/v/fuv9S/I8kKhWODwxUSbmzOP1TUm6pv69ayixn 90pLqQ7bDxop0UPiZ6TE08bvtMMylzPfZIcl7im6mIZF0vEvycMimLizeVgAw1iEYR4MY1qGOTDs IyrCgSQVcyi/v01FLfT1pauIM1i97CpiifUHyqTMaiLfMSmxVfMdc1KkEvvGOSlyUt2FNSlQE/vC N8lzV9SZP8lRF+zkn+R4yWVyJlkwjBGYZMCwD4STNBj2XhBhn1BxRsLsJS5OFFh6hosj0wl8QXFk oZ4XKQ6Yc99Iiz121VfRYsfe6BeyYscJ4T9TxZZqTyd1seE255N0sSblZiiKNTk6PVOsgDW1xRIM eydbLMCwv5gQ9tSXBQaRu2NlnjE6nqbMoU5+Qyxz6JVfGcssKyNfkMoMmwT/NJVp9vg70cs0x/if 2MsUF10MSpnkFo1uKRM8Mb7HLBO0ZN5xlnFgTVYZA8Pe8JVRMOx1PkIeo8KSl+A6KgyjFV9xKzRF 8c+9FZr54n/yKhQm3z98FRIb6xNxhWC38+/hCsFRKl1QwTlvoEUqGFHsHWkFJal/K1pBaU69Iasg YNhrqe2wp39Ub4fO4JU0Qk7kiKJ/7HPlEclI0WfJIwKV9x+qIwId8+PUEc4yx9/1RxjrKX/DjlB2 mmmaIxRv7h3iEcI51VvGw9j15Bukw+lfpK+ZDqcbA3+kH47DmvbDYeAMymE/Yg6En1mrOf08/6BV M0YwPrZVUyba/86upsyh/81dTTCaaIwQtjZLdYTSO5RvcUPpg4k/e0Pxs5LXeKFwJPyqL+RP8F8R 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 Ttyo8mv9dk82ei/Yt28faWlpfPvtt2g0GmxsbFi3bt09f9yLFi2qMo/7+fnh7+8vAaC4+4GQyXz9 ByHYqNVnqKIP4J06lpKSEg4fPlzt+iaTiYyMDDIyMh7K67bWAaCDgwMRERG8+OKLlW6E105ya2lp ycCBA2nWrBmnT5/mv//9r1ma0NBQunXrho2NDVlZWaxfv57c3Fz69evHkiVL6NOnDy1btuTcuXPE xsZiMBhwdXWtcTlcbZ7u27cvQUFB5Ofns3r1as6dO1flxeHh4cETTzyBi4sL58+fZ82aNff9ZL1W VlZ06dIFHx8f0tLS+Omnn8jLy5PSWdwSrq6u9O/fn1OnTuHq6kpISAh79+5lw4YNFBQUEBoaSp8+ ffD29qaoqIidO3fy22+/0b9/f77++mtGjx5NUFAQe/bsITExkTZt2mBjY4O1tbWyD39/f/r06YON jQ25ublKHi7P/6tXr2bChAl4enqybt06fv/9d3Jzc3nyyScJDAzEwsKCnJwcLl68iIODAy1btsTR 0ZHp06ezb98+tm3bhlarZezYsYSFhZGTk0NMTAzHjh17KL5DGxsbHnvsMVq3bk1aWhrLly8nJydH WR4VFYWPjw/Ozs6o1WpSU1PZv38/iYmJStkeGhqKm5sbmZmZ/Pnnn4SEhNChQwfKysr49ddfKSgo ICQkhLKyMhISEnBzczNbfm03gjZt2tzU8hvVqFEjHnnkETZt2qR0Yerduzd//fUXZ8+evW56rVZL ly5dKC0t5cSJE5WWu7u7ExgYiNFo5MiRI3BNAOju7o6vry9lZWWcOHGCy5cvV0rfoUMHTCYThw8f fiAmkzfd5Z6QJrNaWOmVWetBIE2aNMFoNNYqY7z88su4u7uzb98+unfvTt++fZVlXbt2ZfLkyeze vZs1a9bg7+9PQEAABQUFREdHM3v2bPz9/dmzZw8dOnRg0KBBANddDjBjxgx8fX1ZvXo1KSkpvPPO O1VO0KnVapk7dy5paWmsXbsWg8GgdOp//vnnmTdv3n0Z/P3nP/8hNDSUzMxM2rZty8KFC7G1tZXI 5SZptVq0Wi16vR5bW9tav/R6vZL2fhMaGkqzZs3w9/enV69eWFtbU1BQQI8ePZg5cybt2rWjfv36 hIeHEx4eTteuXXn55ZfR6XR8++23WFpaEhQUhLOzM+Hh4XzxxRd4enpy/PhxevfuzUsvvcTp06fR 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 H39Mv3790OnK9hXTvHlzOnbsWC1sUVnXUli9PXv25O2335YPoFAm9OHh4f8QMwiCIFQvLl26RFhY 2FWts3PnzrRu3ZpJkyYxduxY/vjjD06fPg1AYGAgb775JgcOHCA9PR2AoUOH0rp1a3bt2sWgQYPo 1KkTtWvXJiAggHr16rF//35MJhPjxo1j3Lhx3HnnnRw7doy0tLRi2/D0008zfPhwOnToQEpKCufO nSMuLo5nn32W0aNH07JlS44ePUpISAjPPPMMmzZt4m9/+xtjx44lMjKSnTt3avUZjUbGjh3LY489 RseOHTl58iQXLlzQygcNGkRCQgK9e/emRo0a7Nmzp8hr8aRevXokJCSwZcsWEhISGDFiBDt37iQr K6vI67jrrrsKrXfixIkoisLJkycBymwz4cZEPICCIAhChTBgwACWLl2K3W5n2bJlDBgwQCvLycmh X79+XgKyUaNG3H777UXWpygKn3/+OXfeeSc//fQTFouFBQsWULNmzUL3HzZsGFOmTGHVqlXMnj2b 5s2b06JFC3x9ffnqq684ffo0c+fOxWw2Ex0dTWZmJkOHDuW7776jVq1arF69mrFjx/Loo49qdX74 4Yc0bdqUL774gqNHj/L1118TEhICwOTJk3n88cdZtWoV69ato2XLlqW2VWZmJsOHD+ebb74hJCSE iIgIxo0bV+x1FEXbtm1p2LDhFdlMuHGRpeAEQRCEchMcHEznzp15//33AViyZAmzZs3in//8JxaL Bbvdjt1u9zrGarVqr3/66Sdq1apF8+bNmTlzJgBt2rShadOmdOzYkezsbH799Vfi4uIYMWIE7733 nlddJpOJp556imeeeYYNGzYAMGnSJACCgoIICwtj9+7drF+/nlWrVgHO5fIADh48yAsvvACAw+Fg 9OjRfP7558THx3P33XfTtWtXLBYLBw4coE+fPtxzzz1s27aNUaNG0adPH44dOwbAvHnziryW/Fy8 eBFVVdm7dy+vvvoqt956K3Xq1Cn2OoqqNy8vT3t9xx13lNpmgghAQRAEQSgXvXr1wmazeXn9TCYT 3bp1Y+nSpVdUZ1xcHIcPHyY7O1t7b/fu3dSrV6/Avo0aNSIwMJCNGzcCEBUVRXx8PADnz59n6tSp TJs2DYfDwbJly3jvvffIysrC4XDwww8/aPUcOnSImJgYwBnRrCgKX331lde5dDodzZo149KlS5r4 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 vLwG+3U6ndx1113cc889kerTj370IwByc3OZPn06EyZMiFSPwtW/5vb96quvNvjDU15ezpo1a3jq qafIyMjg+uuv59FHH2XDhg3s3buXxx9/HIBLL72UAQMGMHz4cKqrq3n99dfp27cvU6dOZcWKFdx0 001MmTKFHTt2AJCUlERBQUGrjmnbtm0cPXr0rFdukpKSuO+++3jwwQdjXmttSLvooosYOHAgK1eu bPR1r9fL73//ezIzM+nXrx+///3vW318LbXdWmdjmMHXaWhDa36OWhMSoz9XBVABUETO0f+jD4VC vPDCC5HnSktLcblcTW5z3nnnYRgGf/rTn2Ket9lskfZeeuklAAoLCyksLGzQRp8+fXC5XLz77rsA ZGVlRZaIufDCCykvL2+067C5fTf1xzk80zl8S6vw11VVVTgcDgD69u3L7t27Y6o5H330Eb1796Zv 3774fL5I+GvrMYXD69n+w71w4UJ+/vOf88Ybb7Bx48ZG3+d0OpkxYwaDBw/m6NGjLFu2jD179nDd dddxySWXkJOTw+23305JSQlr1qxp1b7PO+88br31Vh555BFuvfVWhg4dyp49e3jiiSeorq5usu24 uDhmzJjBJZdcQkVFBc888wyffvpppL2f//znzJs3j549e/Loo49y6NChRqtJI0eO5LrrrosMM/jj H//Ili1bALjuuusYP348wWCQd955JxJAm9p32PTp0xk9ejTFxcUNqqqdLQCef/43MM2Tv38pqSer 8SkpXenT5xuRr4PBEF98sUf/8CoAisi5FAQb+zzMMIzI58ePH8fj8TBu3Lgmu29a6tZJTU2lqqoq 8r4ZM2ZQWlqKw+GgqqoKl8uFw+FoUJ1qzb5P5ZwrKipIS0uLeT09PR23243NZsM0zZjXsrKycDqd 7X5MHenLL7/kscceY9GiRVx99dWcOHGiwff42WefJRQK8ec//5mhQ4fy6quvMmbMmNPab0VFBdOm TaN///4UFxezYcMGZs2aRU1NDT//+c+b3O6pp57C5/PxzDPPcNlll7F69WpGjBgRae+iiy7i008/ JTMzk1mzZvHwww83aGPq1KnMmzePX/3qV5SVlUWq0lu2bOGBBx5g9OjRLF26FNM0GTRoUCQANrXv 8vJy7r33XiZOnMjSpUux2+384Ac/OKPjHM+1ANijey4P3P+TBr8jAMOvGsbwq4ZFtv3F47/m8893 6x9cBUAR+SrweDzk5uZiGAZ9+/Zl+/bt+P1+7rjjDpYsWUIwGKSgoICampoWJz6EQ9OBAwdITU2l X79+dO/enSFDhrB+/XpSU1MpLCyksrKS+fPn88QTT2CaJhMnTmTNmjWnte/mbN68mezsbL73ve/x 8ssvc8EFFzB+/Hhmz57Nzp07sSyLsWPH8vrrrzNmzBgmTpzIwYMHAVo8phEjRpCent7qillHWrVq FWPGjOGRRx5h3rx5Ma8NGTKEgoICLr/8cqqrq3nttdfo06cP06ZN44knnqB79+4MHDiQJUuWtGmf 0cMMfvKTnwDQpUsXRo4cCcCaNWsatN2vXz+uvPJKhg8fjsfj4dNPP+Waa66JdKtblsWOHTu4//77 +eY3v9nkMIP58+dz11138a9//QuoHcsJ0L17d2666SbGjh3Lnj21Falw+Gtu3++88w4333wz3//+ 99m+fTtQOxwgPHa1MwbAtza8jcNh56f3zm+yEm9ZFot/8/94/Y039Q+qAqCInEnp6em8/vrrOJ1O TNPkww8/jPnD2Jy3336b22+/na1bt7J//36uvfZa5s2bx6JFi5g5cyaGYXD8+HEWLFjQYlvJyckA 7N+/nxdffJGXX36ZoqIiZs2axWWXXcaYMWNwu93MmTOHRYsWceONN2KaJlu2bGHNmjW43e5T3ndz jh49yr333svChQu57777cDgcLF68mPfffx+Ahx9+mF/+8pcsXLiQI0eOMGfOHJYuXYrL5aKqqqrZ Y5oyZQrnn3/+OREAAe69917+/ve/M2HChJjn8/Pz+fzzz2O6wQsLC/nGN75xWvsLDwv4y1/+Enmu uLi42WEG4X3++c9/jnneNM1Ie+GJNdu2bWPbtm0N2ujbty8ulysyxjQ7OzuyRExBQQHl5eWR8Nfa ffft2xe/3x8Jf51NUxXuv7/2DwybjZ/+5EcxvQXhbX7z29/xyl/X6x9iBUAROdPKysq45JJLGn1t wIABMV+/+OKLvPjii5Gvd+/ezbBhw0hNTeXw4cMAfPjhh4wcOZLs7OxIgGqqvbCpU6fGfH3fffex ePFiysrKIhWicEjYtm0b3/nOd8jKyiIUClFaWhrZrrl91xfdfel2u2PWiNu8eTPf/OY3I1+/9tpr vPHGG2RlZVFSUhKz1t9f//pX/v73v5ORkcGRI0ewLCvmPJs7pnnz5kXGGp4LiouLefDBB1m4cCGF hYV88cUXAJw4caJBN3hmZmZMIKz/x/1Uw0Nrhhl4vV7GjBnTbsMMZs6cSUlJCXFxcZFhBnFxcfj9 /pjtmtv30KFDG3R1ZmdnExcX1yn+HWluQse6dX/HhsFPfnJ3zPfy6f9extoXX9E/wmeQloERkXbj 8XgaHWR/9OjR05rhWlpa2uwf8uLi4pjw1577buoP3JEjRxpd6DkQCDS5nmFzx+T1eqmsrDyr37/6 oeVvf/sbGzdu5Nvf/nbkuQ8++ICcnBwmTZoUCfITJkyITOiJHgrQ3ost12+7sLAQn8/H3LlzI8d+ 0UUXNVh+pzHx8fFA7ZjH1NRU+vfvz+jRoxk6dCjr1q0jNTWVrVu3UlFRwY9//GMcDgdOp5Prr78e oNl9f/rpp1iWxbhx4wAYO3Ys1157LVlZWZ0mADb3ePmv6/i/Tz4def9/P7OC5577ixaCVgAUEZGz ITz2MtpDDz0UqegCHDlyhHvuuYcHH3yQLVu28Pzzz7No0aLITO1//vOf5ObmsmPHDhYvXtygvfT0 dAoLC7nlllu48sorKSws5Morr2zV8dVvOzwM4Pvf/z47duxg586dLF26lIyMjBbbSkpKAmqHGaxd u5Z169bxwAMPcOedd7J3714uuOAC3G43t99+O6NHj2b79u3s2LEjEnyb2/eJEyd44IEHeOKJJ9iy ZQvz5s1j9uzZnHfeec12aXeWABgKhVj9lxd46umlLFv+B37/h5W6E8hZYOTn52t1RRGRTqaoqAi3 292qsNRo9cBmIzs7m5KSkgZr3CUkJESGArT3jOem2s7JyYkE1FORmZnZbKU5OzubUChESUlJg9ea 2ndcXBwZGRkdch3ONW63G7fbTV5eXoeFNZvN1qmW01EAFBGRcy4AijQVADvqHtimaSoAtiNNAhER EZF201GTmdQNrAAoIiIi5yCPx9Oh7asCqAAoIiIi55j6SwTJuUuzgEVEREQUAEVERETk60xdwCIi nVRiYiJut1sXQkQBUEREOgMFPxEFQBER6WTy8/N1EUQ6MY0BFBEREVEAFBEREREFQBERERFRABQR ERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERERBUARERERUQAUEREREQVA EREREVEAFBEREVEAFBEREREFQBERERFRABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREF QBERERFRABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBEREREFQBERERFRABQRERER BUARERERUQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERERBUARERERUQAUEREREQVAERER EVEAFBEREREFQBEREREFQBERERFRABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBER ERFRABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERFRABQRERERBUAR ERERUQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERERBUARERERUQAUEREREQVAEREREVEA FBEREREFQBERERFRABQRERFRABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBERERFR ABQRERERBUARERERUQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERERBUARERERBUARERER UQAUEREREQVAEREREVEAFBEREREFQBERERFRABQRERERBUARERERUQCU05GXl8fs2bO54YYbcDqd zb534sSJ5OfnN/n60KFDueqqq3RRRUREvobsHdaw3c4111zDZZddht1uZ8eOHbzyyiucOHGi01zc a665BqfTydq1azt8Xy6XizVr1rB582ZSUlJ444038Pl8Tb5/1qxZvPDCC3z22WeNvj5q1Ch69uzJ O++8027HeNttt/HRRx/xwQcf6DdPRETkLOqQCmBqaiovvPACt99+O+Xl5Xz55ZdMmDCBp59+usNO ZMSIEUybNu2curgTJ05k0qRJZ+Tchg0bxvHjx5k7dy7Tp0+nvLy82fd7vd5mX6+urm736/Ef//Ef jB49Wr91IiIiZ1mHVAB/9rOfUVlZydSpUyNB43e/+x29evXqsBMpKCigoKCAVatWnTMX984778Qw jDNybpmZmRw7dqzVbdbU1DT7ejAYbPfrcfXVV7cYPEVERKTjmenp6f/Vng1mZWXx6KOPcuedd3L4 8OGY18Ldv7179+buu+/mgw8+4O6772bq1Kls27aNqqoqHA4Ht912G7NmzWL48OF8+eWXlJaWRtoY MWIE8+fPZ8qUKVx11VUUFxdzxRVX8O1vf5vu3bvTpUsXevfuzaefftpiW2G9evXinnvu4b333uM/ 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 "
+ style="display:inline;image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="585"
+ width="640" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="logo"
+ style="display:inline"
+ transform="translate(0,185)">
+ <rect
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.03978348;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1327-4"
+ width="640"
+ height="585"
+ x="0"
+ y="-185"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/new_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="31.942932"
+ y="-322.45752"
+ id="text868"><tspan
+ sodipodi:role="line"
+ id="tspan866"
+ x="31.942932"
+ y="-322.45752">Überschneidet sich: new project ./. append to project.</tspan><tspan
+ sodipodi:role="line"
+ x="31.942932"
+ y="-297.45752"
+ id="tspan1582">Übernommenene Maße passten nicht. </tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot1584"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion1586"><rect
+ id="rect1588"
+ width="559.38995"
+ height="155.24155"
+ x="-155.24155"
+ y="0.4591924" /></flowRegion><flowPara
+ id="flowPara1590" /></flowRoot> <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86.73300934px;line-height:116.16028595px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:4.64641142"
+ x="439.74326"
+ y="-135.35042"
+ id="text1706"
+ transform="scale(1.2482481,0.80112279)"><tspan
+ sodipodi:role="line"
+ id="tspan1704"
+ x="439.74326"
+ y="-135.35042"
+ style="fill:#2ca089;stroke-width:4.64641142">C</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.28116989px;line-height:41.89442444px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.67577684"
+ x="566.96185"
+ y="-122.04941"
+ id="text1702"><tspan
+ sodipodi:role="line"
+ id="tspan1700"
+ x="566.96185"
+ y="-122.04941"
+ style="fill:#262626;fill-opacity:1;stroke-width:1.67577684">GG</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="new_bigbutton_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708-8">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710-3" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712-7" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708-8"
+ id="linearGradient3716-0"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.72"
+ inkscape:cx="-20.021187"
+ inkscape:cy="24.152542"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g4340"
+ transform="matrix(2.2727273,0,0,2.2727273,0,-3.6140986e-6)">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3870"
+ width="22"
+ height="22"
+ x="0"
+ y="1.3262033e-06" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(-12.999996,-14.482415)" />
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ transform="translate(-12.999996,-14.482415)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(-12.999996,-14.482415)" />
+ <g
+ transform="matrix(0.95238091,0,0,0.95238091,1,1)"
+ id="g4820">
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect3685-4"
+ style="fill:url(#linearGradient3716-0);fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911-7"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-1.3354962"
+ y="-13.422935"
+ id="text2877"><tspan
+ sodipodi:role="line"
+ id="tspan2875"
+ x="-1.3354962"
+ y="-13.422935">see: new_bigbutton_up</tspan></text>
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:#ffcc00;stroke-width:0.98231441;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-3-4-8"
+ width="49.017685"
+ height="49.017685"
+ x="0.49115753"
+ y="0.49115753" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="new_bigbutton_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ y2="1"
+ x2="12"
+ y1="23"
+ x1="12"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,0.94736798,0.94736764)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2980"
+ xlink:href="#linearGradient3708"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,1.655588,1.7671487)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2977"
+ xlink:href="#linearGradient3700"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26397332,-1.1050181,-0.03572144)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.72"
+ inkscape:cx="-111.75847"
+ inkscape:cy="25"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer7" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ id="g3362"
+ transform="scale(2.0833333)">
+ <rect
+ style="fill:url(#linearGradient2896);fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="24"
+ height="24"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:url(#linearGradient2980);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="1.8684211"
+ y="1.8684201"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 3.855931,2.5949876 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.49614 5.581316,2.405907 9.123375,2.405907 3.879981,0 7.350855,-1.089622 9.767377,-2.8456965 V 3.8884861 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="opacity:0.5;fill:url(#linearGradient2977);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="1.8684201"
+ x="1.8684211"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-5.2483683"
+ y="-20.414459"
+ id="text2877"><tspan
+ sodipodi:role="line"
+ id="tspan2875"
+ x="-5.2483683"
+ y="-20.414459">see: new_bigbutton_up</tspan></text>
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:#3771c8;stroke-width:0.98231441;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-3-4"
+ width="49.017685"
+ height="49.017685"
+ x="0.49115753"
+ y="0.49115753" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="new_bigbutton_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/new_bigbutton_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.72"
+ inkscape:cx="-90.36017"
+ inkscape:cy="-46.149268"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="50"
+ height="49.754684"
+ x="-36.016949"
+ y="-22.847904" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.00246227"
+ id="rect3597-3"
+ width="50"
+ height="50"
+ x="0"
+ y="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-1.6949173"
+ y="-22.245762"
+ id="text2877"><tspan
+ sodipodi:role="line"
+ id="tspan2875"
+ x="-1.6949173"
+ y="-22.245762">new_bigbutton_up</tspan></text>
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:#3771c8;stroke-width:0.98231441;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-3-4"
+ width="49.017685"
+ height="49.017685"
+ x="0.41388601"
+ y="65.610802" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-114.04736"
+ y="92.721138"
+ id="text2877-9"><tspan
+ sodipodi:role="line"
+ id="tspan2875-5"
+ x="-114.04736"
+ y="92.721138">new_bigbutton_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-113.62363"
+ y="160.94147"
+ id="text2877-5"><tspan
+ sodipodi:role="line"
+ id="tspan2875-0"
+ x="-113.62363"
+ y="160.94147">new_bigbutton_dn</tspan></text>
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:#ffcc00;stroke-width:0.98231441;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-3-4-8"
+ width="49.017685"
+ height="49.017685"
+ x="1.3386153"
+ y="135.23692" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="nextedit.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/nextedit.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible">
+ <path
+ id="path3615"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(1.1) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Tail"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Tail"
+ style="overflow:visible">
+ <g
+ id="g3633"
+ transform="scale(-1.2)">
+ <path
+ id="path3635"
+ d="M -3.8048674,-3.9585227 L 0.54352094,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3637"
+ d="M -1.2866832,-3.9585227 L 3.0617053,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3639"
+ d="M 1.3053582,-3.9585227 L 5.6537466,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3641"
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3643"
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3645"
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ </g>
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3621"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3752"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="44.750189"
+ inkscape:cx="2.2228227"
+ inkscape:cy="11.592389"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="g5044"
+ transform="matrix(1.1322407,0,0,1.7516247,17.584849,-6.9759748)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 11.992188,16 2.40625,-4 -2.40625,-3.9999998 h -1.46875 l 1.875,3.1249998 H 3.8671875 v 1.75 H 12.398438 L 10.492188,16 Z"
+ id="rect5024"
+ sodipodi:nodetypes="cccccccccc" />
+ <g
+ id="g937"
+ transform="translate(1.1328125)">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect5026"
+ width="14"
+ height="1.3216982"
+ x="5"
+ y="5" />
+ <rect
+ y="17.678301"
+ x="5"
+ height="1.3216982"
+ width="14"
+ id="rect5063"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <rect
+ transform="rotate(90)"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98552984"
+ id="rect5026-9"
+ width="13.597767"
+ height="1.3216982"
+ x="5.1960373"
+ y="-16.566114" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="nextlabel.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/nextlabel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.666667"
+ inkscape:cx="-26.345437"
+ inkscape:cy="9.0908798"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccz"
+ id="rect2818"
+ d="m 13.421721,8.4785815 c -0.0088,1.3035978 -1.191753,2.6007145 -1.919529,2.6188735 l -5.6734338,0.0059 V 5.8287193 H 11.48994 c 0.98634,0.036934 1.94056,1.3466085 1.931781,2.6498622 z"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.6574775;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc"
+ id="rect2825"
+ d="m 17.999777,7.9376402 v 0.9848009 6.1387319 h 0.999958 L 16.870792,17 14.870877,15.061173 h 1.032214 V 8.9224411 H 13.580608 V 7.9376402 h 2.322483 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.00822914" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.4096719;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 9.9307133,13.204836 v 1.174878 L 11.824194,16.0686 H 5.2048356 v 0.881159 h 6.6193584 l -1.8934807,1.670528 v 1.174877 L 13.295163,16.50918 Z"
+ id="rect3196"
+ sodipodi:nodetypes="cccccccccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="nexttip.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/nexttip.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.843022,0,0,1.020168,4.499298,1.381992)"
+ r="16.9562"
+ fy="32.797512"
+ fx="22.291636"
+ cy="32.797512"
+ cx="22.291636"
+ id="radialGradient2597"
+ xlink:href="#linearGradient2591"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8662"
+ id="radialGradient8668"
+ cx="24.837126"
+ cy="36.421127"
+ fx="24.837126"
+ fy="36.421127"
+ r="15.644737"
+ gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8650"
+ id="radialGradient8656"
+ cx="19.701141"
+ cy="2.8969381"
+ fx="19.701141"
+ fy="2.8969381"
+ r="17.171415"
+ gradientTransform="matrix(2.046729,0,0,1.55761,-19.51799,3.452086)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8650">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop8652" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop8654" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8662">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop8664" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop8666" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2591">
+ <stop
+ id="stop2593"
+ offset="0"
+ style="stop-color:#73d216" />
+ <stop
+ id="stop2595"
+ offset="1.0000000"
+ style="stop-color:#4e9a06" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective23"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.7428571"
+ inkscape:cx="-35.667373"
+ inkscape:cy="17.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ transform="matrix(0.50283167,0,0,0.51076489,5.7069729,5.6141461)">
+ <ellipse
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.29946522;fill:url(#radialGradient8668);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
+ id="path8660"
+ transform="matrix(1.271186,0,0,1.271186,-8.119376,-15.10179)"
+ cx="24.837126"
+ cy="36.421127"
+ rx="15.644737"
+ ry="8.3968935" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2597);fill-opacity:1;fill-rule:evenodd;stroke:#3a7304;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 8.5541875,15.517348 v 16.99442 H 21.538 v 8.545038 L 41.497835,24.150365 21.41919,7.1251168 v 8.3975352 l -12.8650025,-0.0053 z"
+ id="path8643"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5080214;fill:url(#radialGradient8656);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
+ d="M 21.962385,8.2485033 V 16.054978 H 9.1452151 v 9.040713 c 17.7499999,2 16.6335369,-7.455288 31.3835369,-0.955288 z"
+ id="path8645"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path8658"
+ d="m 9.537702,16.561892 v 14.98444 h 12.985367 v 7.395166 L 40.001083,24.145807 22.507108,9.3654066 v 7.2013824 l -12.969406,-0.0049 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.48128339;fill:none;stroke:#ffffff;stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 2">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5"
+ d="M 8.5046598,17.119671 7.4999998,8.286869 27.5,17.133025 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02"
+ d="M 8.5046598,17.880332 7.4999998,26.713131 27.5,17.866978 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path868-0"
+ d="M 8.4999998,17.504952 H 27.5"
+ style="display:inline;fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="ok.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ok.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ y2="23.494934"
+ x2="45.612747"
+ y1="23.494934"
+ x1="5"
+ gradientTransform="matrix(0.707108,-0.707108,0.707108,0.707108,-10.75536,24.49377)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4911"
+ xlink:href="#linearGradient2239-0"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2239-0">
+ <stop
+ style="stop-color:#cee14b;stop-opacity:1;"
+ offset="0"
+ id="stop2241-5" />
+ <stop
+ id="stop2243-6"
+ offset="1"
+ style="stop-color:#727e0a;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient51059"
+ cx="11.000066"
+ cy="11.500006"
+ fx="11.000066"
+ fy="11.500006"
+ r="9.9999895"
+ gradientTransform="matrix(2.4000025,0,0,2.0399997,-1.1054681,0.74004228)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="752"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.63"
+ inkscape:cx="8.0454255"
+ inkscape:cy="24.950495"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer45" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(1.000004,-0.435805)" />
+ <g
+ id="layer1-7"
+ inkscape:label="Layer 1"
+ transform="translate(1.000004,-0.435805)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(1.000004,-0.435805)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer44"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ id="g3079"
+ transform="translate(1.148518,-0.43290965)">
+ <g
+ inkscape:label="Shadow"
+ id="layer2-9" />
+ <g
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ inkscape:label="Error Box"
+ id="layer3-9" />
+ <g
+ inkscape:label="Glossy Shine"
+ id="layer4">
+ <g
+ transform="matrix(0.986431,0,0,0.986431,0.571463,-2.899481)"
+ id="g4906">
+ <path
+ style="fill:url(#linearGradient4911);fill-opacity:1;fill-rule:evenodd;stroke:#727e0a;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 47.413326,19.106757 38.980533,10.667614 19.643086,30.005066 8.5242589,18.886238 0.0882903,27.322205 19.643086,46.877 Z"
+ id="path2787-1"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eeeeec;fill-opacity:0.14814818;fill-rule:evenodd;stroke:none"
+ d="M 45.242378,18.947394 38.92375,12.88014 19.719855,31.318325 8.510661,20.519364 1.75,27.235328 c 0,0 4.8274712,5.447773 9.639862,7.716281 3.722405,1.7547 5.761893,2.041874 9.562258,1.552521 3.731352,-0.480467 6.448752,-1.974084 8.303663,-2.960828 2.956351,-1.57267 15.986595,-14.595908 15.986595,-14.595908 z"
+ id="path6779-4"
+ sodipodi:nodetypes="cccccszsc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#9db029;stroke-width:1.33522844;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 45.524529,19.120462 38.948338,12.537922 19.643086,31.843178 8.5242599,20.724349 1.9733297,27.324997 19.647931,44.997063 Z"
+ id="path2263-9"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer45"
+ inkscape:label="Layer 2">
+ <path
+ style="display:inline;fill:url(#radialGradient51059);fill-opacity:1;fill-rule:evenodd;stroke:#0f4a2c;stroke-width:1.38266575;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 48.603408,14.436031 c 0,0 -5.359519,-3.208248 -8.306697,-8.3447583 L 21.24842,26.131463 c 0,0 -6.32129,-6.79898 -10.95257,-11.851285 0,0 -2.9559911,4.715323 -8.8992597,8.3413 C 11.791332,29.467916 15.19705,33.203924 21.24842,43.90873 Z"
+ id="path2787-7"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="50"
+ height="50"
+ sodipodi:docname="openfolder.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/openfolder.png"
+ inkscape:export-xdpi="74"
+ inkscape:export-ydpi="74">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1164">
+ <stop
+ id="stop1160"
+ offset="0"
+ style="stop-color:#b0aea5;stop-opacity:1" />
+ <stop
+ id="stop1162"
+ offset="1.0000000"
+ style="stop-color:#d5d3cd;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3983">
+ <stop
+ id="stop3984"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:0.87628865;" />
+ <stop
+ id="stop3985"
+ offset="1.0000000"
+ style="stop-color:#fffffe;stop-opacity:0.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1789">
+ <stop
+ id="stop1790"
+ offset="0.0000000"
+ style="stop-color:#202020;stop-opacity:1.0000000;" />
+ <stop
+ id="stop1791"
+ offset="1.0000000"
+ style="stop-color:#b9b9b9;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient319">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop320" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop321" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3096">
+ <stop
+ style="stop-color:#424242;stop-opacity:1;"
+ offset="0"
+ id="stop3098" />
+ <stop
+ style="stop-color:#777777;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop3100" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9766">
+ <stop
+ id="stop9768"
+ offset="0"
+ style="stop-color:#969696;stop-opacity:1;" />
+ <stop
+ id="stop9770"
+ offset="1"
+ style="stop-color:#a0a0a0;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient9806"
+ inkscape:collect="always">
+ <stop
+ id="stop9808"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop9810"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ y2="609.50507"
+ x2="302.85715"
+ y1="366.64789"
+ x1="302.85715"
+ gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6715"
+ xlink:href="#linearGradient5048"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5048">
+ <stop
+ id="stop5050"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop5056" />
+ <stop
+ id="stop5052"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5060"
+ inkscape:collect="always">
+ <stop
+ id="stop5062"
+ offset="0"
+ style="stop-color:black;stop-opacity:1;" />
+ <stop
+ id="stop5064"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1164"
+ id="linearGradient5126"
+ gradientUnits="userSpaceOnUse"
+ x1="22.175976"
+ y1="36.987999"
+ x2="22.175976"
+ y2="30.69491"
+ gradientTransform="matrix(0.97961975,0,0,1.0498777,0.11615313,1.5832027)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3983"
+ id="linearGradient5131"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.4859303,0,0,0.74434019,-0.13162435,0.16959375)"
+ x1="6.2297964"
+ y1="13.773066"
+ x2="9.8980894"
+ y2="66.834053" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1164"
+ id="linearGradient5151"
+ gradientUnits="userSpaceOnUse"
+ x1="18.112709"
+ y1="31.36775"
+ x2="15.514889"
+ y2="6.1802502"
+ gradientTransform="matrix(0.97961975,0,0,1.0498777,0.73002273,1.5535068)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5048"
+ id="linearGradient5185"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060"
+ id="radialGradient5187"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5060"
+ id="radialGradient5189"
+ 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
+ inkscape:collect="always"
+ xlink:href="#linearGradient1789"
+ id="radialGradient5191"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.055022,-0.02734504,0.177703,1.190929,-73.443338,-4.7910375)"
+ cx="20.706017"
+ cy="37.517986"
+ fx="20.706017"
+ fy="37.517986"
+ r="30.905205" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3096"
+ id="linearGradient5193"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-69.871161,2.3342635)"
+ x1="18.112709"
+ y1="31.367750"
+ x2="15.514889"
+ y2="6.1802502" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3983"
+ id="linearGradient5195"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.516844,0,0,0.708978,-70.750734,1.0160975)"
+ x1="6.2297964"
+ y1="13.773066"
+ x2="9.8980894"
+ y2="66.834053" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9766"
+ id="linearGradient5197"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-69.871161,2.3342635)"
+ x1="22.175976"
+ y1="36.987999"
+ x2="22.065331"
+ y2="32.050499" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient319"
+ id="linearGradient5199"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.317489,0,0,0.816256,-70.750734,1.0160975)"
+ x1="13.035696"
+ y1="32.567184"
+ x2="12.853771"
+ y2="46.689312" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9806"
+ id="radialGradient5187-0"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9806"
+ id="radialGradient5189-6"
+ 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
+ inkscape:collect="always"
+ xlink:href="#linearGradient1164"
+ id="radialGradient5191-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0335204,-0.02870895,0.17408137,1.2503298,-2.7693524,-5.9271878)"
+ cx="20.706017"
+ cy="37.517986"
+ fx="20.706017"
+ fy="37.517986"
+ r="30.905205" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.5772053"
+ inkscape:cx="-5.8958444"
+ inkscape:cy="25"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="layer2"
+ inkscape:label="pattern"
+ transform="translate(-69.871161,2.3342635)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="g5157"
+ transform="matrix(0.97961975,0,0,1.0498777,70.660243,-2.8128594)">
+ <g
+ style="display:inline"
+ transform="matrix(0.02262383,0,0,0.02086758,-26.487731,38.703883)"
+ id="g6707">
+ <rect
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#linearGradient5185);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
+ id="rect6709"
+ width="1339.6335"
+ height="478.35718"
+ x="-1559.2523"
+ y="-150.69685" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient5187);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
+ d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z"
+ id="path6711"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path6713"
+ d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient5189);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ d="m -65.34938,41.021681 c 0.0218,0.416303 0.459904,0.832608 0.876209,0.832608 h 31.327021 c 0.416302,0 0.810812,-0.416305 0.789016,-0.832608 l -0.936443,-27.226735 c -0.0218,-0.416303 -0.459897,-0.832616 -0.876201,-0.832616 h -13.270873 c -0.485057,0 -1.234473,-0.315589 -1.401644,-1.106633 L -49.453686,8.9626263 C -49.609155,8.226953 -50.3359,7.9247401 -50.752204,7.9247401 h -14.77886 c -0.416312,0 -0.81082,0.4163041 -0.789024,0.8326083 z"
+ id="path216"
+ style="fill:url(#radialGradient5191);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5193);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccccccssssccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9788"
+ d="m -64.644568,24.896763 h 30.26558"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9784"
+ d="m -64.828987,20.896763 h 30.44693"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.890465,14.896764 h 30.507361"
+ id="path9778"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M -64.485003,34.896763 H -34.37628"
+ id="path9798"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9800"
+ d="m -64.362021,36.896763 h 29.987753"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.828987,18.896763 h 30.44693"
+ id="path9782"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9780"
+ d="m -64.859726,16.896763 h 30.477145"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9776"
+ d="m -64.949064,12.896764 h 15.280815"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.9898988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.997408,10.896763 h 14.783734"
+ id="path9774"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.546494,30.896763 h 30.169209"
+ id="path9794"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9792"
+ d="m -64.583097,28.896763 h 30.20512"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.644568,26.896763 h 30.26558"
+ id="path9790"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.675307,22.896763 h 30.295795"
+ id="path9786"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9796"
+ d="m -64.546494,32.896763 h 30.169209"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -64.362021,38.896763 h 29.987753"
+ id="path9802"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:0.45142858;fill:url(#linearGradient5195);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.21380496;marker:none"
+ d="m -63.802818,41.198287 c 0.01634,0.312227 -0.180911,0.520378 -0.498585,0.416302 v 0 c -0.317681,-0.104075 -0.536731,-0.312227 -0.553082,-0.624456 l -0.94772,-32.0644856 c -0.01634,-0.3122281 0.165186,-0.5007705 0.477414,-0.5007705 l 14.42205,-0.047694 c 0.312228,0 0.931943,0.3004727 1.132936,1.3221818 l 0.573489,2.8155353 c -0.427054,-0.465257 -0.419193,-0.479619 -0.637558,-1.156707 l -0.406095,-1.259182 c -0.21905,-0.7276468 -0.698201,-0.8319 -1.010429,-0.8319 h -12.887774 c -0.312228,0 -0.509482,0.2081522 -0.493131,0.5203887 l 0.938006,31.5148623 z"
+ id="path219"
+ sodipodi:nodetypes="cccccccccscccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ style="fill:#ffffff;fill-opacity:0.75706213;fill-rule:nonzero;stroke:none"
+ id="g220"
+ transform="matrix(1.040764,0,0.05449252,1.040764,-78.54136,5.0048575)"
+ inkscape:export-filename="/home/jimmac/ximian_art/icons/nautilus/suse93/gnome-fs-directory.png"
+ inkscape:export-xdpi="74.800003"
+ inkscape:export-ydpi="74.800003">
+ <path
+ style="fill:#ffffff;fill-opacity:0.50847461"
+ d="m 42.417183,8.5151772 c 0.0051,-0.097113 -0.128161,-0.2469882 -0.235117,-0.2470056 l -13.031401,-0.00212 c 0,0 0.911714,0.5879545 2.201812,0.5962436 l 11.053497,0.07102 c 0.01109,-0.2117278 0.0027,-0.2560322 0.01121,-0.4181395 z"
+ id="path221"
+ sodipodi:nodetypes="cscscs"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="color:#000000;display:block;visibility:visible;fill:url(#linearGradient5197);fill-opacity:1;fill-rule:nonzero;stroke:#6c6c6c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m -30.087629,41.844884 c 1.143894,-0.04406 1.963076,-1.0963 2.047035,-2.321005 0.791787,-11.548688 1.65936,-21.231949 1.65936,-21.231949 0.07215,-0.247484 -0.167911,-0.494967 -0.48014,-0.494967 h -34.371157 c 0,0 -1.850319,21.866891 -1.850319,21.866891 -0.114555,0.982067 -0.466007,1.804718 -1.549835,2.183713 l 34.545056,-0.0027 z"
+ id="path233"
+ sodipodi:nodetypes="cscccscc"
+ inkscape:export-filename="/home/jimmac/ximian_art/icons/nautilus/suse93/gnome-fs-directory.png"
+ inkscape:export-xdpi="74.800003"
+ inkscape:export-ydpi="74.800003"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccsscsc"
+ id="path304"
+ d="m -60.250917,18.798184 32.791099,0.06481 -1.574046,20.001979 c -0.08432,1.071511 -0.450678,1.428215 -1.872656,1.428215 -1.871502,0 -28.677968,-0.03241 -31.394742,-0.03241 0.233598,-0.32081 0.333756,-0.988622 0.335096,-1.004612 z"
+ style="opacity:0.46590911;fill:none;stroke:url(#linearGradient5199);stroke-width:0.98989868px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path323"
+ d="m -60.250913,18.557445 -1.166647,15.643271 c 0,0 8.296155,-4.148078 18.666348,-4.148078 10.370193,0 15.55529,-11.495193 15.55529,-11.495193 z"
+ style="fill:#ffffff;fill-opacity:0.0892857;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 2">
+ <g
+ id="g6707-7"
+ transform="matrix(0.02216275,0,0,0.02190841,78.2101,54.79314)"
+ style="display:inline">
+ <rect
+ y="-150.69685"
+ x="-1559.2523"
+ height="478.35718"
+ width="1339.6335"
+ id="rect6709-2"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#linearGradient6715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path6711-8"
+ d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient5187-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient5189-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none"
+ d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z"
+ id="path6713-2"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccccssssccc"
+ style="fill:url(#radialGradient5191-4);fill-opacity:1.0;fill-rule:nonzero;stroke:url(#linearGradient5151);stroke-width:1.01414049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path216-9"
+ d="m 5.1596487,42.170564 c 0.021356,0.437067 0.450531,0.874136 0.8583516,0.874136 H 36.706569 c 0.407817,0 0.794287,-0.437069 0.772935,-0.874136 L 36.562146,13.585822 c -0.02135,-0.437067 -0.450524,-0.874145 -0.858343,-0.874145 h -13.00041 c -0.475171,0 -1.209314,-0.33133 -1.373078,-1.161829 L 20.731384,8.5124771 C 20.579084,7.7401101 19.86715,7.4228235 19.459331,7.4228235 H 4.9816675 c -0.4078275,0 -0.7942953,0.4370684 -0.7729435,0.8741369 z"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g1213"
+ transform="translate(-38.763533,-2.2621684)">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9788-9"
+ d="m 44.725988,28.387398 h 29.64876"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9784-6"
+ d="M 44.545328,24.187887 H 74.371742"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414084;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 44.485103,17.888622 H 74.370716"
+ id="path9778-0"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414084;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 44.882301,38.886175 h 29.4951"
+ id="path9798-2"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9800-7"
+ d="M 45.002777,40.98593 H 74.379372"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414084;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 44.545328,22.088132 H 74.371742"
+ id="path9782-6"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9780-1"
+ d="M 44.515215,19.988376 H 74.371229"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9776-3"
+ d="M 44.427698,15.788867 H 59.397086"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.00389647;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 44.380339,13.68911 H 58.862777"
+ id="path9774-2"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414084;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 44.822064,34.686664 H 74.376417"
+ id="path9794-1"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9792-5"
+ d="M 44.786207,32.586909 H 74.375739"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 44.725988,30.487153 h 29.64876"
+ id="path9790-9"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414061;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 44.695876,26.287643 H 74.374235"
+ id="path9786-9"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path9796-1"
+ d="M 44.822064,36.78642 H 74.376417"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414084;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.11363633;fill:#51504e;fill-opacity:1;fill-rule:nonzero;stroke:#646360;stroke-width:1.01414073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 45.002777,43.085686 H 74.379372"
+ id="path9802-4"
+ sodipodi:nodetypes="cc" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccccccscccccc"
+ id="path219-9"
+ d="m 6.6746914,42.355978 c 0.016007,0.327801 -0.177224,0.546334 -0.4884237,0.437067 v 0 C 5.8750611,42.683779 5.6604754,42.465244 5.6444576,42.137442 L 4.7160524,8.4736538 C 4.7000454,8.1458525 4.8778719,7.947906 5.1837366,7.947906 L 19.311862,7.8978332 c 0.305864,0 0.912949,0.3154595 1.109846,1.3881291 l 0.561801,2.9559677 c -0.41835,-0.488463 -0.41065,-0.503541 -0.624564,-1.214401 L 19.961126,9.7055421 C 19.74654,8.9416019 19.277155,8.8321488 18.97129,8.8321488 H 6.346172 c -0.3058647,0 -0.4990986,0.2185344 -0.4830809,0.5463445 L 6.7819803,42.465244 Z"
+ style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:0.45142858;fill:url(#linearGradient5131);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.23096871;marker:none"
+ inkscape:connector-curvature="0" />
+ <g
+ inkscape:export-ydpi="74.800003"
+ inkscape:export-xdpi="74.800003"
+ inkscape:export-filename="/home/jimmac/ximian_art/icons/nautilus/suse93/gnome-fs-directory.png"
+ transform="matrix(1.019553,0,0.05338195,1.0926749,-7.7634754,4.3573039)"
+ id="g220-1"
+ style="fill:#ffffff;fill-opacity:0.75706213;fill-rule:nonzero;stroke:none">
+ <path
+ sodipodi:nodetypes="cscscs"
+ id="path221-0"
+ d="m 42.417183,8.5151772 c 0.0051,-0.097113 -0.128161,-0.2469882 -0.235117,-0.2470056 l -13.031401,-0.00212 c 0,0 0.911714,0.5879545 2.201812,0.5962436 l 11.053497,0.07102 c 0.01109,-0.2117278 0.0027,-0.2560322 0.01121,-0.4181395 z"
+ style="fill:#ffffff;fill-opacity:0.50847461"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:export-ydpi="74.800003"
+ inkscape:export-xdpi="74.800003"
+ inkscape:export-filename="/home/jimmac/ximian_art/icons/nautilus/suse93/gnome-fs-directory.png"
+ sodipodi:nodetypes="cscccscc"
+ id="path233-7"
+ d="m 39.088887,43.064522 c 1.120582,-0.04626 1.923068,-1.150981 2.005316,-2.436771 0.77565,-12.12471 1.625542,-22.29095 1.625542,-22.29095 0.07068,-0.259828 -0.164489,-0.519655 -0.470354,-0.519655 H 8.5787256 c 0,0 -1.812609,22.957561 -1.812609,22.957561 -0.1122204,1.031051 -0.4565097,1.894734 -1.518249,2.292632 l 33.8410194,-0.0028 z"
+ style="color:#000000;display:block;visibility:visible;fill:url(#linearGradient5126);fill-opacity:1;fill-rule:nonzero;stroke:#e6e4dd;stroke-width:1.01414049;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:none;stroke:#e6e4dd;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3496"
+ d="m -32.98907,10.109287 c -0.07102,0 -0.131908,0.07944 -0.131908,0.161484 0,5.02684 -0.03577,10.486863 -0.0408,15.609179 0.02415,0.766583 0.446068,1.289129 0.738684,1.29187 0.84087,0.0079 0.447755,-0.0034 0.870593,0 5.372286,-0.01379 11.274509,-0.06695 16.646793,-0.08074 0.04501,0.0059 -1.226109,-0.09226 -1.213555,-1.238043 1e-6,-4.002303 -0.416847,-9.581477 -0.416847,-13.583782 0,-0.160058 -0.01282,-0.249139 -0.02638,-0.322967 -0.01047,-0.05701 -0.02383,-0.08468 -0.05277,-0.107656 -0.02313,-0.02094 -0.04529,-0.04885 -0.07914,-0.05383 h -7.323318 c -0.676953,0 -0.832002,-1.706084 -1.838016,-1.706084 l -7.133334,0.03057 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3498"
+ d="m -30.645917,13.516063 c 8.776138,0 10.819114,3.94e-4 16.600509,-0.02359 0,1.34506 0.214345,13.738236 -0.401956,13.738236 -0.59287,0 -11.662035,-0.08081 -17.443429,-0.05683 1.221932,0 1.244876,-0.533373 1.244876,-13.657819 z" />
+ <rect
+ style="display:block;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+ id="rect2545"
+ y="11.334491"
+ x="-31.920967"
+ ry="0.42824191"
+ rx="0.44708198"
+ height="0.85648382"
+ width="5.8120656" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-4.0805831"
+ y="-10.392632"
+ id="text1217"><tspan
+ sodipodi:role="line"
+ id="tspan1215"
+ x="-4.0805831"
+ y="-10.392632">Nacharbeiten.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="out_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/out_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="69.111111"
+ inkscape:cx="3.494373"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer106" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer105"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#d40000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14.944568,2 C 15.533457,2 16,2.4250728 16,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 16,15.574928 15.533457,16 14.944568,16 H 3.055432 C 2.466543,16 2,15.574928 2,15.038384 v -1.30101 C 2,13.20083 2.466543,12.747475 3.055432,12.747475 h 9.405765 V 5.2242424 H 3.055432 C 2.466543,5.2242424 2,4.7991696 2,4.2626263 V 2.9616162 C 2,2.4250728 2.466543,2 3.055432,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer106"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 13,0.9999999 V 3.8333339 15.166667 18 H 10 5 v -2.833333 h 5 V 3.8333339 H 5 v -2.833334 h 5 z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="out_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/out_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="30.332443"
+ inkscape:cx="-3.5443242"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer104"
+ units="px" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer103"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-0.99999426)">
+ <path
+ style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14.944568,2 C 15.533457,2 16,2.4250728 16,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 16,15.574928 15.533457,16 14.944568,16 H 3.055432 C 2.466543,16 2,15.574928 2,15.038384 v -1.30101 C 2,13.20083 2.466543,12.747475 3.055432,12.747475 h 9.405765 V 5.2242424 H 3.055432 C 2.466543,5.2242424 2,4.7991696 2,4.2626263 V 2.9616162 C 2,2.4250728 2.466543,2 3.055432,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer104"
+ inkscape:label="Layer 2"
+ style="display:inline"
+ transform="translate(0,-0.99999426)">
+ <path
+ style="opacity:1;fill:#fff200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 13,0.9999996 V 3.8333336 15.166667 18 H 10 5.0000001 V 15.166667 H 10 V 3.8333336 H 5.0000001 V 0.9999996 H 10 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="out_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/out_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="24.434468"
+ inkscape:cx="9"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer108" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer107"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#005500;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14.944568,2 C 15.533457,2 16,2.4250728 16,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 16,15.574928 15.533457,16 14.944568,16 H 3.055432 C 2.466543,16 2,15.574928 2,15.038384 v -1.30101 C 2,13.20083 2.466543,12.747475 3.055432,12.747475 h 9.405765 V 5.2242424 H 3.055432 C 2.466543,5.2242424 2,4.7991696 2,4.2626263 V 2.9616162 C 2,2.4250728 2.466543,2 3.055432,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer108"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#2c5aa0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 13,1 V 3.833333 15.166667 18 H 10 5.0000001 V 15.166667 H 10 V 3.833333 H 5.0000001 V 1 H 10 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-25.402906"
+ y="-7.6197472"
+ id="text903"><tspan
+ sodipodi:role="line"
+ id="tspan901"
+ x="-25.402906"
+ y="-7.6197472">see: in_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="out_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//out_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="69.111111"
+ inkscape:cx="9"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer112" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer111"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1)">
+ <path
+ style="fill:#00d400;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14.944568,2 C 15.533457,2 16,2.4250728 16,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 16,15.574928 15.533457,16 14.944568,16 H 3.055432 C 2.466543,16 2,15.574928 2,15.038384 v -1.30101 C 2,13.20083 2.466543,12.747475 3.055432,12.747475 h 9.405765 V 5.2242424 H 3.055432 C 2.466543,5.2242424 2,4.7991696 2,4.2626263 V 2.9616162 C 2,2.4250728 2.466543,2 3.055432,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer112"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1)">
+ <path
+ style="opacity:1;fill:#d7e3f4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 13,0.9999997 V 3.8333337 15.166667 18 H 10 4.9999999 V 15.166667 H 10 V 3.8333337 H 4.9999999 V 0.9999997 H 10 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="17"
+ sodipodi:docname="out_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/out_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="69.111111"
+ inkscape:cx="9"
+ inkscape:cy="9"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer110" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer109"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="fill:#008000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14.944568,2 C 15.533457,2 16,2.4250728 16,2.9616162 V 3.5838384 4.2626263 14.416162 15.038384 C 16,15.574928 15.533457,16 14.944568,16 H 3.055432 C 2.466543,16 2,15.574928 2,15.038384 v -1.30101 C 2,13.20083 2.466543,12.747475 3.055432,12.747475 h 9.405765 V 5.2242424 H 3.055432 C 2.466543,5.2242424 2,4.7991696 2,4.2626263 V 2.9616162 C 2,2.4250728 2.466543,2 3.055432,2 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer110"
+ inkscape:label="Layer 2"
+ transform="translate(0,-1.0000002)">
+ <path
+ style="opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 13,1 V 3.833334 15.166667 18 H 10 5 v -2.833333 h 5 V 3.833334 H 5 V 1 h 5 z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="outpoint.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/outpoint.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="51.833333"
+ inkscape:cx="12"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer114" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer113"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 17,5 V 7.6723647 8.7492877 17.005698 19 H 7 v -3.749288 h 5.982906 V 8.7492877 H 7 V 5 Z"
+ id="rect2818"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer114"
+ inkscape:label="Layer 2">
+ <path
+ style="display:inline;opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68163037;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 16,3.4999999 V 6.3333338 17.666667 20.5 H 13 7.9999999 V 17.666667 H 13 V 6.3333338 H 7.9999999 V 3.4999999 H 13 Z"
+ id="rect175300"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="over.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.733333"
+ inkscape:cx="2.2160749"
+ inkscape:cy="13.267726"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer33" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer32"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ style="font-size:40px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:AlArabiya Bold"
+ id="text2818"
+ transform="matrix(0.16781383,0,0,0.16526791,13.177258,13.750889)">
+ <path
+ d="m -33.728153,-2.1196365 c -2.291682,2.42e-5 -4.069024,0.8463775 -5.332031,2.53906246 -1.263032,1.69272834 -1.894541,4.07553844 -1.894532,7.14843754 -9e-6,3.0599075 0.6315,5.4362065 1.894532,7.1289065 1.263007,1.692714 3.040349,2.539067 5.332031,2.539062 2.304668,5e-6 4.08852,-0.846348 5.351562,-2.539062 1.262997,-1.6927 1.894507,-4.068999 1.894532,-7.1289065 -2.5e-5,-3.0728991 -0.631535,-5.4557092 -1.894532,-7.14843754 -1.263042,-1.69268496 -3.046894,-2.53903826 -5.351562,-2.53906246 m 0,-5.4492188 c 4.687478,2.97e-5 8.359349,1.3411742 11.015625,4.0234375 2.656219,2.68231466 3.984343,6.386738 3.984375,11.1132813 -3.2e-5,4.7135515 -1.328156,8.4114645 -3.984375,11.0937495 -2.656276,2.682293 -6.328147,4.023437 -11.015625,4.023438 -4.674492,-1e-6 -8.346363,-1.341145 -11.015625,-4.023438 -2.656254,-2.682285 -3.984377,-6.380198 -3.984375,-11.0937495 -2e-6,-4.7265433 1.328121,-8.43096664 3.984375,-11.1132813 2.669262,-2.6822633 6.341133,-4.0234078 11.015625,-4.0234375"
+ id="path2823" />
+ <path
+ d="m -17.634403,-7.0415115 7.558594,0 7.7343745,21.5234375 7.7148438,-21.5234375 7.5585937,0 -10.8007812,29.1601565 -8.9648438,0 -10.800781,-29.1601565"
+ id="path2825" />
+ <path
+ d="m 16.779659,-7.0415115 20.292969,0 0,5.6835937 -12.773437,0 0,5.4296875 12.011718,0 0,5.6835938 -12.011718,0 0,6.6796875 13.203125,0 0,5.683594 -20.722657,0 0,-29.1601565"
+ id="path2827" />
+ <path
+ d="m 54.807003,5.888176 c 1.575505,1.62e-5 2.701806,-0.2929523 3.378906,-0.8789063 0.690086,-0.5859198 1.035138,-1.5494605 1.035157,-2.890625 -1.9e-5,-1.32810366 -0.345071,-2.27862354 -1.035157,-2.85156249 -0.6771,-0.57289321 -1.803401,-0.85935131 -3.378906,-0.85937501 l -3.164062,0 0,7.4804688 3.164062,0 m -3.164062,5.195312 0,11.035157 -7.519532,0 0,-29.1601565 11.484375,0 c 3.841127,2.91e-5 6.653624,0.6445597 8.4375,1.9335937 1.79685,1.2890885 2.695286,3.3268468 2.695313,6.1132813 -2.7e-5,1.9271025 -0.468776,3.5091322 -1.40625,4.7460937 -0.924503,1.2369943 -2.324242,2.1484517 -4.199219,2.734375 1.028624,0.2343884 1.946592,0.768242 2.753906,1.6015628 0.820289,0.820323 1.647111,2.070322 2.480469,3.75 l 4.082031,8.28125 -8.007812,0 -3.554688,-7.246094 c -0.716163,-1.458325 -1.445329,-2.454417 -2.1875,-2.988281 -0.729182,-0.533844 -1.705743,-0.800771 -2.929687,-0.800782 l -2.128906,0"
+ id="path2829" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer33"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-2.1926076"
+ y="-5.1830883"
+ id="text79969"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"><tspan
+ sodipodi:role="line"
+ id="tspan79967"
+ x="-2.1926076"
+ y="-5.1830883"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.33333302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000">Over</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.49526596px;line-height:22.64885139px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.90595412;"
+ x="-0.58037812"
+ y="19.087795"
+ id="text79969-5"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"
+ transform="scale(1.0330552,0.96800249)"><tspan
+ sodipodi:role="line"
+ id="tspan79967-4"
+ x="-0.58037812"
+ y="19.087795"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.49526596px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke-width:0.90595412;">over</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="overwrite.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/overwrite.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.666667"
+ inkscape:cx="-17.491525"
+ inkscape:cy="14.745763"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.03669441"
+ d="M 7.628088,8.5689819 V 10.369204 11.094668 16.65655 18 H 2.5 V 15.474315 H 5.5680868 V 11.094668 H 2.5 V 8.5689819 Z"
+ id="path2930"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2932"
+ d="M 16.371912,8.5689819 V 10.369204 11.094668 16.65655 18 H 21.5 V 15.474315 H 18.431914 V 11.094668 H 21.5 V 8.5689819 Z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.03669441"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#aa0000;stroke:#e6e4dd;stroke-width:0.98448902;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2934"
+ width="9.2822065"
+ height="8.4358969"
+ x="7.3588963"
+ y="9.0665426" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2818"
+ d="M 11.012301,3.9999996 V 10.264703 H 8.1930472 l 3.8165408,3.930033 3.797365,-3.930033 H 13.006877 V 3.9999996 Z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.03669441" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="pan_channel.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient87348">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1"
+ offset="0"
+ id="stop87344" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1"
+ offset="1"
+ id="stop87346" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-6"
+ 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" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient87348"
+ id="radialGradient87352"
+ cx="7.8078146"
+ cy="12"
+ fx="7.8078146"
+ fy="12"
+ r="8"
+ gradientTransform="matrix(0.75401909,0,0,1.125,2.9584176,-1.5)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="18.325851"
+ inkscape:cx="12"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer53" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer52"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="rect2820"
+ d="m 4,3 v 18 l 7.471092,-5.341339 V 8.5420238 Z m 9.600588,5.5420238 V 15.658661 H 20 V 8.5420238 Z"
+ style="fill:#ff0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer53"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccc"
+ id="rect2820-4"
+ d="m 4,3 v 18 l 7.471092,-5.341339 V 8.5420238 Z m 9.600588,5.5420238 V 15.658661 H 20 V 8.5420238 Z"
+ style="fill:url(#radialGradient87352);fill-opacity:1;stroke:#a40000;stroke-opacity:1;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="6"
+ height="6"
+ sodipodi:docname="pan_channel_small.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_channel_small.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient87979">
+ <stop
+ style="stop-color:#fff200;stop-opacity:1"
+ offset="0"
+ id="stop87975" />
+ <stop
+ style="stop-color:#ffcb00;stop-opacity:1"
+ offset="1"
+ id="stop87977" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient87979"
+ id="radialGradient87981"
+ cx="3"
+ cy="3"
+ fx="3"
+ fy="3"
+ r="3"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="73.303403"
+ inkscape:cx="3"
+ inkscape:cy="3"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer55" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer54"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="6"
+ height="6"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer55"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#radialGradient87981);fill-opacity:1;stroke:none"
+ id="rect2818-4"
+ width="6"
+ height="6"
+ x="-8.8817842e-16"
+ y="0"
+ ry="3" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="pan_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3602">
+ <stop
+ style="stop-color:#555555;stop-opacity:1;"
+ offset="0"
+ id="stop3604" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3606" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3602"
+ id="linearGradient3608"
+ x1="11.949154"
+ y1="26.949152"
+ x2="12.07627"
+ y2="-0.38135523"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-116.69492,4.5762711)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3602"
+ id="linearGradient3616"
+ x1="21.343794"
+ y1="0.0070035937"
+ x2="21.343794"
+ y2="30.078625"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-116.69492,4.5762711)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4-6-11"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1419407,0,0,1.7464969,-36.532463,-2.1097608)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8666667"
+ inkscape:cx="-28.219338"
+ inkscape:cy="16.90678"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient3608);fill-opacity:1;stroke:url(#linearGradient3616);stroke-width:2.79399228;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2818"
+ width="27.206009"
+ height="27.206007"
+ x="-115.29791"
+ y="5.973268"
+ ry="0" />
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4-6-11);fill-opacity:1;stroke:#141414;stroke-width:0.30954558;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5-8-39"
+ width="29.690454"
+ height="29.690454"
+ x="0.15477276"
+ y="0.15477276" />
+ <rect
+ y="0.83549786"
+ x="0.66154742"
+ height="28.502991"
+ width="28.502991"
+ id="rect3597-5-7-9-4-8-9-8-2-4-3-1-9-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.49700961;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-54.761478"
+ y="-24.185646"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-54.761478"
+ y="-24.185646">see: recordpatch_up</tspan></text>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="100"
+ height="100"
+ sodipodi:docname="pan_popup.svg">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient86739">
+ <stop
+ style="stop-color:#252525;stop-opacity:1"
+ offset="0"
+ id="stop86735" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop86737" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="30.078625"
+ x2="21.343794"
+ y1="0.0070035937"
+ x1="21.343794"
+ id="linearGradient3616"
+ xlink:href="#linearGradient3602"
+ inkscape:collect="always"
+ gradientTransform="matrix(3.3333332,0,0,3.3333332,5.04e-5,-3.874939e-6)" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.38135523"
+ x2="12.07627"
+ y1="26.949152"
+ x1="11.949154"
+ id="linearGradient3608"
+ xlink:href="#linearGradient3602"
+ inkscape:collect="always"
+ gradientTransform="matrix(3.3333332,0,0,3.3333332,5.04e-5,-3.874939e-6)" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3602">
+ <stop
+ id="stop3604"
+ offset="0"
+ style="stop-color:#555555;stop-opacity:1;" />
+ <stop
+ id="stop3606"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient86739"
+ id="radialGradient86733"
+ cx="50"
+ cy="50"
+ fx="50"
+ fy="50"
+ r="57.5"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.2200006"
+ inkscape:cx="49.999999"
+ inkscape:cy="49.999995"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer50"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ ry="0"
+ y="4.6566629"
+ x="4.6566534"
+ height="90.686684"
+ width="90.686691"
+ id="rect2818"
+ style="fill:url(#linearGradient3608);fill-opacity:1;stroke:url(#linearGradient3616);stroke-width:9.31330681;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer51"
+ inkscape:label="Layer 2" />
+ <circle
+ style="opacity:1;fill:url(#radialGradient86733);fill-opacity:1;fill-rule:evenodd;stroke:#595959;stroke-width:0.51452506;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path86713"
+ cx="50"
+ cy="50"
+ r="57.242737"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_popup.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="pan_stick.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: checkbox...</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient9647">
+ <stop
+ id="stop9649"
+ offset="0"
+ style="stop-color:#74fe47;stop-opacity:1;" />
+ <stop
+ style="stop-color:#2ac809;stop-opacity:1;"
+ offset="1"
+ id="stop3219" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient9647"
+ id="linearGradient3772"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.39339533,0.39339533,-0.39339533,0.39339533,-7.7482384,-24.686002)"
+ x1="48.907528"
+ y1="21.527676"
+ x2="94.546799"
+ y2="21.527676" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient87981"
+ cx="3"
+ cy="3"
+ fx="3"
+ fy="3"
+ r="3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.2389973,0,0,3.2389973,2.2830079,2.2830082)" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:0.69"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.41332"
+ inkscape:cx="-1.6504225"
+ inkscape:cy="11.999999"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer59" />
+ <g
+ id="layer2"
+ inkscape:label="Shadow"
+ transform="translate(-42.523054,-9.258339)" />
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ transform="translate(-42.523054,-9.258339)" />
+ <g
+ id="layer3"
+ inkscape:label="Error Box"
+ transform="translate(-42.523054,-9.258339)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer58"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ id="path2787"
+ d="M 22.694009,5.1724758 18.827525,1.305992 12,8.1335186 5.1724738,1.3059924 1.3059893,5.1724762 8.1335154,12.000002 1.3059896,18.827527 5.1724738,22.69401 12,15.866486 l 6.827525,6.827523 3.866484,-3.866482 -6.827526,-6.827525 6.827526,-6.8275262 z"
+ style="fill:url(#linearGradient3772);fill-opacity:1;fill-rule:evenodd;stroke:#16a400;stroke-width:0.61197954;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+ <path
+ sodipodi:nodetypes="ccccccczzcc"
+ id="path6779"
+ d="M 22.265534,5.1731571 18.825224,1.7334774 11.999981,8.5514822 5.1723254,1.7399798 1.78723,5.1905267 8.554459,11.992784 4.3114451,16.254547 c 0,0 2.2935677,-0.356273 4.0819305,-1.207175 1.7883634,-0.850903 1.2837216,-2.118729 4.6870144,-3.030517 3.409813,-0.916134 4.321472,-1.987255 4.321472,-1.987255 l 4.863634,-4.8564743 z"
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path6842"
+ d="M 21.862875,5.1757508 18.845566,2.1323594 11.99515,8.9740812 5.1635197,2.1424512 2.1419453,5.1640249 l 6.8403228,6.8403221 -6.8446723,6.809904 3.0390436,3.039042 6.8229446,-6.83163 6.866402,6.831626 2.992546,-3.009926 -6.801205,-6.870749 6.805557,-6.7968632 z"
+ style="fill:none;stroke:#4ddd43;stroke-width:0.58293271;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer59"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#radialGradient87981);fill-opacity:1;stroke:#0f4a2c;stroke-width:0.56601483;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2818-4"
+ width="19.433987"
+ height="19.433985"
+ x="2.2830067"
+ y="2.2830076"
+ ry="9.7169924" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="8"
+ height="8"
+ sodipodi:docname="pan_stick_small.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_stick_small.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055"
+ id="radialGradient87981"
+ cx="3"
+ cy="3"
+ fx="3"
+ fy="3"
+ r="3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2955989,0,0,1.2955989,0.11320306,0.11320305)" />
+ <linearGradient
+ id="linearGradient51055">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="106.84329"
+ inkscape:cx="1.5197319"
+ inkscape:cy="4"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer57" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer56"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ d="M 7.6666678,6.1591835 5.5433397,3.9986664 7.5864801,1.7352937 6.1136589,0.33333264 4.0109843,2.4901958 1.865687,0.33333264 0.33333208,1.7868602 2.478629,3.9894476 0.33333208,6.1568635 1.865687,7.6666679 4.0084948,5.401961 6.1562821,7.6666679 Z"
+ id="text1314"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:59.90107727px;line-height:125%;font-family:'Bitstream Vera Sans';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ff0000;fill-opacity:1;stroke:#550000;stroke-width:0.66666418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.6689509,1.7711204 6.1545421,1.271274 4.0550766,3.4462353 1.8512284,1.2840561 1.2757707,1.8149947"
+ id="path7076"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:59.90107727px;line-height:125%;font-family:'Bitstream Vera Sans';text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:0.29898993;fill:none;stroke:#800000;stroke-width:0.66666418;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 6.9660998,6.4079606 4.8964572,4.2658596 M 3.1272478,4.2617396 1.0542946,6.3888553"
+ id="path3165"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:59.90107727px;line-height:125%;font-family:'Bitstream Vera Sans';text-align:start;writing-mode:lr-tb;text-anchor:start;opacity:0.29898993;fill:none;stroke:#550000;stroke-width:0.66666418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer57"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#radialGradient87981);fill-opacity:1;stroke:#0f4a2c;stroke-width:0.22640592;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2818-4"
+ width="7.7735939"
+ height="7.7735939"
+ x="0.11320305"
+ y="0.11320305"
+ ry="3.886797" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="pan_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pan_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="30.078625"
+ x2="21.343794"
+ y1="0.0070035937"
+ x1="21.343794"
+ id="linearGradient3616"
+ xlink:href="#linearGradient3602"
+ inkscape:collect="always"
+ gradientTransform="translate(-118.2839,-45.572036)" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ y2="-0.38135523"
+ x2="12.07627"
+ y1="26.949152"
+ x1="11.949154"
+ id="linearGradient3608"
+ xlink:href="#linearGradient3602"
+ inkscape:collect="always"
+ gradientTransform="translate(-118.2839,-45.572036)" />
+ <inkscape:perspective
+ id="perspective10-4"
+ 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" />
+ <linearGradient
+ id="linearGradient3602">
+ <stop
+ id="stop3604"
+ offset="0"
+ style="stop-color:#555555;stop-opacity:1;" />
+ <stop
+ id="stop3606"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1419406,0,0,1.7464971,-36.532516,-2.1097762)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.733333"
+ inkscape:cx="2.5994182"
+ inkscape:cy="19.004237"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ ry="0"
+ y="-44.175037"
+ x="-116.8869"
+ height="27.206007"
+ width="27.206009"
+ id="rect2818"
+ style="fill:url(#linearGradient3608);fill-opacity:1;stroke:url(#linearGradient3616);stroke-width:2.79399228;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(1,-1)" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.30954558;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-0"
+ width="29.690454"
+ height="29.690454"
+ x="0.15477276"
+ y="0.15477276" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-50.884357"
+ y="-12.300053"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-50.884357"
+ y="-12.300053">see: recordpatch_up</tspan></text>
+</svg>
--- /dev/null
+<?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="17"
+ height="17"
+ viewBox="0 0 4.4979166 4.4979168"
+ version="1.1"
+ id="svg1636"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="pane.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pane.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1630">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16593208,0,0,0.25377842,-17.464666,-300.48548)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="71.35294"
+ inkscape:cx="10.069662"
+ inkscape:cy="4.1273701"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1633">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-292.50207)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-14.35508"
+ y="289.0582"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-14.35508"
+ y="289.0582"
+ style="stroke-width:0.26458335">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4-9);fill-opacity:1;stroke:#141414;stroke-width:0.13229167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0-20"
+ width="4.3142338"
+ height="4.3142338"
+ x="-12.133741"
+ y="-300.15643"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04583269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3584"
+ width="0.26458335"
+ height="3.4395833"
+ x="2.1166668"
+ y="293.03125" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.04583269;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3584-3"
+ width="0.26458335"
+ height="3.4395833"
+ x="294.61874"
+ y="-3.96875"
+ transform="rotate(90)" />
+ <rect
+ style="opacity:1;fill:#151414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.0127117;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3584-3-1"
+ width="0.26458335"
+ height="0.26458335"
+ x="294.61874"
+ y="-2.3812501"
+ transform="rotate(90)" />
+ </g>
+</svg>
--- /dev/null
+<?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="17"
+ height="17"
+ viewBox="0 0 4.4979166 4.4979168"
+ version="1.1"
+ id="svg1636"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="pane_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pane_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1630">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16593208,0,0,0.25377842,-9.7370005,-297.23719)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.838235"
+ inkscape:cx="-11.59728"
+ inkscape:cy="8.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1633">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-292.50207)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-14.35508"
+ y="289.0582"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-14.35508"
+ y="289.0582"
+ style="stroke-width:0.26458335">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4-9);fill-opacity:1;stroke:#141414;stroke-width:0.13229167;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0-20"
+ width="4.3142338"
+ height="4.3142338"
+ x="-4.4060755"
+ y="-296.90814"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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="17"
+ height="17"
+ viewBox="0 0 4.4979166 4.4979168"
+ version="1.1"
+ id="svg1636"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="pane_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pane_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1630">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16784985,0,0,0.25671149,-5.3256353,292.23614)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.838235"
+ inkscape:cx="-11.59728"
+ inkscape:cy="8.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1633">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-292.50207)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-14.35508"
+ y="289.0582"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-14.35508"
+ y="289.0582"
+ style="stroke-width:0.26458335">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1-4);fill-opacity:1;stroke:#141414;stroke-width:0.13382064;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6-5"
+ width="4.3640962"
+ height="4.3640962"
+ x="0.066910267"
+ y="292.56897" />
+ <rect
+ y="292.76437"
+ x="0.26229668"
+ height="3.9733233"
+ width="3.9733233"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1-8"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.26001003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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="17"
+ height="17"
+ viewBox="0 0 4.4979166 4.4979168"
+ version="1.1"
+ id="svg1636"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="pane_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs1630">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-09"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.16784985,0,0,0.25671149,-5.3256353,292.23614)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.838235"
+ inkscape:cx="8.5"
+ inkscape:cy="8.5"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1633">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-292.50207)">
+ <rect
+ style="fill:url(#linearGradient1811-8-5-09);fill-opacity:1;stroke:#141414;stroke-width:0.13382064;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-8"
+ width="4.3640962"
+ height="4.3640962"
+ x="0.066910267"
+ y="292.56897" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-14.35508"
+ y="289.0582"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-14.35508"
+ y="289.0582"
+ style="stroke-width:0.26458335">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="2"
+ height="26"
+ sodipodi:docname="panel_divider.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/panel_divider.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="23.230769"
+ inkscape:cx="-4.7036424"
+ inkscape:cy="13"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="2"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="2"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="2"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ y="1"
+ x="-23"
+ height="1"
+ width="20"
+ id="rect2827"
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ transform="rotate(-90)" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2829"
+ width="20"
+ height="1"
+ x="-23"
+ y="0"
+ transform="rotate(-90)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none"
+ id="rect3594-6"
+ width="2"
+ height="26"
+ x="0"
+ y="0" />
+ <rect
+ y="25"
+ x="0"
+ height="1"
+ width="2"
+ id="rect3592-2"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none" />
+ <rect
+ style="display:inline;fill:#474747;fill-opacity:1;stroke:none"
+ id="rect2818-8"
+ width="2"
+ height="1"
+ x="0"
+ y="7.1054274e-15" />
+ <rect
+ y="1"
+ x="-23"
+ height="1"
+ width="20"
+ id="rect2827-4"
+ style="display:inline;fill:#333333;fill-opacity:1;stroke:none"
+ transform="rotate(-90)" />
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none"
+ id="rect2829-7"
+ width="20"
+ height="1"
+ x="-23"
+ y="1.4083438e-15"
+ transform="rotate(-90)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-28.572634"
+ y="-18.872023"
+ id="text1553"><tspan
+ sodipodi:role="line"
+ id="tspan1551"
+ x="-28.572634"
+ y="-18.872023">see: mbutton_bg</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="pankeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pankeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-20.011078"
+ inkscape:cy="10"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccc"
+ id="rect2820"
+ d="m 10.923028,4.479714 v 11.04072 L 14.937639,12.2442 V 7.8790443 Z m 5.158899,3.3993303 V 12.2442 h 3.438742 V 7.8790443 Z"
+ style="fill:#27ae60;fill-opacity:1;stroke:#0b331e;stroke-width:0.95913178;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:#0b331e;stroke-width:0.95913178;stroke-linejoin:round;stroke-opacity:1"
+ d="m 9.0772067,4.479714 v 11.04072 L 5.0625956,12.2442 V 7.8790443 Z M 3.9183069,7.8790443 V 12.2442 H 0.47956589 V 7.8790443 Z"
+ id="path2874"
+ sodipodi:nodetypes="cccccccccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="paste.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/paste.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.110577,4.987330e-17,40.26648)"
+ r="21.011173"
+ fy="45.272587"
+ fx="24.647722"
+ cy="45.272587"
+ cx="24.647722"
+ id="radialGradient13752"
+ xlink:href="#linearGradient13746"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient13746"
+ inkscape:collect="always">
+ <stop
+ id="stop13748"
+ offset="0"
+ style="stop-color:#646459;stop-opacity:1;" />
+ <stop
+ id="stop13750"
+ offset="1"
+ style="stop-color:#646459;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient14484">
+ <stop
+ id="stop14486"
+ offset="0.0000000"
+ style="stop-color:#c68827;stop-opacity:1.0000000;" />
+ <stop
+ id="stop14488"
+ offset="1.0000000"
+ style="stop-color:#89601f;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15218">
+ <stop
+ id="stop15220"
+ offset="0.0000000"
+ style="stop-color:#f0f0ef;stop-opacity:1.0000000;" />
+ <stop
+ style="stop-color:#e8e8e8;stop-opacity:1;"
+ offset="0.59928656"
+ id="stop2269" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.82758623"
+ id="stop2267" />
+ <stop
+ id="stop15222"
+ offset="1.0000000"
+ style="stop-color:#d8d8d3;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15234">
+ <stop
+ id="stop15236"
+ offset="0.0000000"
+ style="stop-color:#97978a;stop-opacity:1.0000000;" />
+ <stop
+ style="stop-color:#c2c2b9;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop15242" />
+ <stop
+ id="stop15238"
+ offset="1.0000000"
+ style="stop-color:#7d7d6f;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2224">
+ <stop
+ id="stop2226"
+ offset="0"
+ style="stop-color:#7c7c7c;stop-opacity:1;" />
+ <stop
+ id="stop2228"
+ offset="1"
+ style="stop-color:#b8b8b8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5048">
+ <stop
+ id="stop5050"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop5056" />
+ <stop
+ id="stop5052"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective80"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="23.933203"
+ inkscape:cx="-15.202147"
+ inkscape:cy="8.6290994"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:0.3931748;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+ d="m 4.7463871,4.9404479 c -0.3074546,0 -0.5497997,0.2343159 -0.5497997,0.5315845 l 0,14.7997976 c 0,0.297268 0.2423451,0.531583 0.5497997,0.531583 l 14.5072209,0 c 0.307454,0 0.549799,-0.234315 0.549799,-0.531583 l 0,-14.7997976 c 0,-0.2972686 -0.242345,-0.5315845 -0.549799,-0.5315845 l -14.5072209,0 z m 1.2995274,0.7852953 11.9331565,0 c 0.125494,0 0.224919,0.096131 0.224919,0.2174663 l 0,13.4708355 c 0,0.121334 -0.09942,0.217465 -0.224919,0.217465 l -11.9331565,0 c -0.1254931,0 -0.2249185,-0.09613 -0.2249185,-0.217465 l 0,-13.4708355 c 0,-0.1213351 0.099425,-0.2174663 0.2249185,-0.2174663 z"
+ id="rect12368" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:0.39317489;stroke-opacity:1"
+ id="rect13756"
+ width="4.7982535"
+ height="1.5464275"
+ x="9.6095572"
+ y="3.1965778"
+ rx="0.39340693"
+ ry="0.380373" />
+ <rect
+ ry="0.53658575"
+ rx="0.55497307"
+ y="4.5497026"
+ x="8.2205915"
+ height="2.7062483"
+ width="7.5761929"
+ id="rect2285"
+ style="fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:0.39317495;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+ <path
+ style="color:#000000;fill:none;stroke:#e6e4dd;stroke-width:0.78634977;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m 14.488942,19.690056 c 0.716195,0.06482 3.594582,-1.689313 3.790956,-3.242861 -0.625076,0.936785 -1.981258,0.761071 -3.624164,0.822544 0,0 0.15809,2.227014 -0.166792,2.420317 z"
+ id="path2210"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="opacity:1;color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ id="rect2271"
+ width="8.3969431"
+ height="1.5464275"
+ x="8.0101404"
+ y="9.4535723" />
+ <rect
+ style="opacity:1;color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ id="rect2275"
+ width="7.1973805"
+ height="1.5464275"
+ x="8.0101404"
+ y="12.453572" />
+ <rect
+ style="opacity:1;color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+ id="rect2279"
+ width="5.1981087"
+ height="1.5464275"
+ x="8.0101404"
+ y="15.453572" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-50.404289"
+ y="-3.0747991" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="patch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ff6600;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ff6600;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient3706"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472058,-0.74709543)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.816306"
+ inkscape:cx="-53.568091"
+ inkscape:cy="-15.429267"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g6938"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.231815"
+ y="-10.795815"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.231815"
+ y="-10.795815">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-6-8);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-2"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.2108083"
+ x="1.2108088"
+ height="14.578383"
+ width="23.578382"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-4"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.42161635;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="patch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3874"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient3876"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.47206,-0.74708043)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.816306"
+ inkscape:cx="-53.568084"
+ inkscape:cy="7.1057523"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="5.3357905e-08"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4848"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient3874);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3876);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-55.414021"
+ y="-11.44412"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-55.414021"
+ y="-11.44412">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-1"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.4847803"
+ x="1.4847803"
+ height="14.030439"
+ width="23.030439"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.9695608;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="patch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.47206,-0.7470912)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.2201119"
+ inkscape:cx="13.572709"
+ inkscape:cy="-26.007968"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4386"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-50-11-3"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-62.633488"
+ y="-17.273331"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-62.633488"
+ y="-17.273331">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="patch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient3706"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332428,0,0,0.9439079,-30.472059,-0.74708805)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.816306"
+ inkscape:cx="-28.841401"
+ inkscape:cy="-11.884156"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="-7.5614306e-09"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3925"
+ transform="matrix(1.0833333,0,0,0.70885178,1.625,1.0570557)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-3-1);fill-opacity:1;stroke:#141414;stroke-width:0.95356679;stroke-opacity:1"
+ id="rect3597-2-1"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.2422156"
+ x="1.2422161"
+ height="14.515569"
+ width="23.515568"
+ id="rect3597-5-7-9-4-8-9-4-29"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.48443139;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="patch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.47206,-0.74710063)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.440224"
+ inkscape:cx="-35.412049"
+ inkscape:cy="8.1952191"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-51.48975"
+ y="-3.5436378"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-51.48975"
+ y="-3.5436378">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-87-3);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-00-5"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="160"
+ height="195"
+ sodipodi:docname="patchbay_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/patchbay_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: setformat_bg</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient876"
+ inkscape:collect="always">
+ <stop
+ id="stop872"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop874"
+ offset="1"
+ style="stop-color:#333333;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient6367">
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="0"
+ id="stop6363" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop6365" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="matrix(0.6,0,0,1,96.4,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="137.7524"
+ x2="241"
+ y1="137.82355"
+ x1="266"
+ id="linearGradient3600"
+ xlink:href="#linearGradient3594-0"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3594-0"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6367"
+ id="linearGradient6356"
+ x1="0"
+ y1="97.5"
+ x2="160"
+ y2="97.5"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6367"
+ id="linearGradient6378"
+ x1="0"
+ y1="97.5"
+ x2="160"
+ y2="97.5"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient876"
+ id="linearGradient870"
+ x1="-6.6730468e-06"
+ y1="160"
+ x2="-6.6730468e-06"
+ y2="157"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.22829446,24.198505)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.3804359"
+ inkscape:cx="66.198262"
+ inkscape:cy="133.78539"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5"
+ showborder="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer60"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="160"
+ height="195"
+ x="0"
+ y="0" />
+ <rect
+ transform="rotate(-90)"
+ y="157"
+ x="-195"
+ height="3"
+ width="195"
+ id="rect2820"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer61"
+ inkscape:label="Layer 2"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient6356);fill-opacity:1;stroke:none"
+ id="rect2818-6"
+ width="160"
+ height="195"
+ x="0"
+ y="0" />
+ <rect
+ transform="rotate(-90)"
+ y="157"
+ x="-195"
+ height="3"
+ width="195"
+ id="rect2820-5"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 3"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:url(#linearGradient6378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10337622;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect6370"
+ width="160"
+ height="195"
+ x="0"
+ y="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="8.7168875"
+ y="-59.726822"
+ id="text832"><tspan
+ sodipodi:role="line"
+ id="tspan830"
+ x="8.7168875"
+ y="-59.726822">Hintergrund Patchbay (Hauptfenster links).</tspan><tspan
+ sodipodi:role="line"
+ x="8.7168875"
+ y="-34.726822"
+ id="tspan834">Verlauf, dunkel rechts. </tspan></text>
+ <rect
+ transform="rotate(-90)"
+ y="181.1985"
+ x="-194.77171"
+ height="3"
+ width="195"
+ id="rect2820-8"
+ style="display:inline;fill:url(#linearGradient870);fill-opacity:1;stroke:none" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="pause.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pause.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-65.31811"
+ inkscape:cy="10.363353"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ id="path2762"
+ d="M 13.896708,4 V 20 H 20 V 4 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;stroke:none;stroke-width:0.76074231;marker:none;fill-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;stroke:none;stroke-width:0.76074231;marker:none;fill-opacity:1"
+ d="M 4.0000001,4 V 20 H 10.103291 V 4 Z"
+ id="path2852"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-39.772976"
+ y="-6.5473948" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="picture.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/picture.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title906">picture</title>
+ <metadata
+ id="metadata8">
+ <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>picture</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>cpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1003">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop999" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop1001" />
+ </linearGradient>
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1003"
+ id="linearGradient1005"
+ x1="23.500322"
+ y1="-0.49967766"
+ x2="23.500322"
+ y2="-24.499678"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.49967766,0.49967766)" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.913411"
+ inkscape:cx="-14.177361"
+ inkscape:cy="9.4775949"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <image
+ y="-2.0612283"
+ x="-32.047295"
+ id="image967"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A /wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIGwwDMumlJjQAAAAddEVYdENv bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAANFJREFUSMftlT1OAzEQhT87TrTjKDOJ 0tDkFHAgmpSciCPRcQguQEGx9g5FNrBBixAFUOBnPfnn2X5PdjHQ8B04+Ec+XeGz7eHGWT/PHfHp nfGnQzeDZtAM/oVB8k+EUKH/Ol+aTm5jRETemTPshOv7Dk1yoeWXA3L3iCw3iAhdd9Yyx+Mkx6Vd 8o0ZpoqqYuN4L4aZoXZaV1W2W0P3edynqNpbv1qtw+wTJWDpTppw4c6QhhMXAzVWaqyUUCkljIyU Euj7QN//5SeHEFrV/X28Ap5lUrRf3BWYAAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <rect
+ style="opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.82203197;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect970"
+ width="7.177968"
+ height="15.177968"
+ x="16.411016"
+ y="0.41101599" />
+ <rect
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:0.82203197;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect970-8"
+ width="7.177968"
+ height="15.177968"
+ x="8.4110165"
+ y="0.41101599" />
+ <rect
+ style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.82203197;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect970-7"
+ width="7.177968"
+ height="15.177968"
+ x="0.41101599"
+ y="0.41101599" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient1005);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.09088027;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect970-2"
+ width="8"
+ height="24"
+ x="16"
+ y="-24"
+ transform="rotate(90)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="play.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/play.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient2691">
+ <stop
+ style="stop-color:#99ff55;stop-opacity:1;"
+ offset="0"
+ id="stop2693" />
+ <stop
+ style="stop-color:#338000;stop-opacity:1;"
+ offset="1"
+ id="stop2695" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5075">
+ <stop
+ id="stop5077"
+ offset="0"
+ style="stop-color:#225000;stop-opacity:1;" />
+ <stop
+ id="stop5079"
+ offset="1"
+ style="stop-color:#112b00;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2691"
+ id="radialGradient3637"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.03009591,-0.47268452,1.1415095,0.07267321,-87.820342,59.640563)"
+ cx="107.5884"
+ cy="83.990814"
+ fx="107.5884"
+ fy="83.990814"
+ r="12.551644" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5075"
+ id="linearGradient3639"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.56525118,0,0,0.56525118,-27.384208,-41.636084)"
+ x1="71.288956"
+ y1="124.11652"
+ x2="70.826942"
+ y2="95" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#8c238c"
+ bordercolor="#c39ac3"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.4062891"
+ inkscape:cx="-51.988414"
+ inkscape:cy="10.213066"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:measure-start="3.00466,11.6197"
+ inkscape:measure-end="3.00466,12.3803"
+ borderlayer="true"
+ guidecolor="#ff857d"
+ guideopacity="1">
+ <inkscape:grid
+ type="xygrid"
+ id="grid870" />
+ <sodipodi:guide
+ position="2.7695313,11.527344"
+ orientation="1,0"
+ id="guide872"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="22,11.633023"
+ orientation="1,0"
+ id="guide874"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-30.661074,86.042408"
+ orientation="0,1"
+ id="guide1761"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-5.6040441,11.646895"
+ orientation="1,0"
+ id="guide2007"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="22,11.517019"
+ orientation="0,1"
+ id="guide2126"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="21.999999,12.317019"
+ orientation="0,1"
+ id="guide2128"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="67.179784,37.971182"
+ orientation="0,1"
+ id="guide2305"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-30.872314,11.599999"
+ orientation="1,0"
+ id="guide2429"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="54.261965,11.64871"
+ orientation="1,0"
+ id="guide2477"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="34.261966,19.557647"
+ orientation="1,0"
+ id="guide2479"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="34,20"
+ orientation="0,1"
+ id="guide2487"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(255,133,125)" />
+ <sodipodi:guide
+ position="79.381687,11.49456"
+ orientation="1,0"
+ id="guide2511"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64.089844,11.066406"
+ orientation="1,0"
+ id="guide2517"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-99.227349,-52.727504"
+ orientation="0,1"
+ id="guide2601"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-20.897028,12.326982"
+ orientation="1,0"
+ id="guide1007"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ id="layer4"
+ inkscape:label="contorno"
+ style="display:inline"
+ transform="translate(-45.577363,-12.45339)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3630"
+ transform="matrix(1.0094806,0,0,0.97891036,-0.31908626,0.00114793)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2682"
+ d="M 4.8353469,20.877446 V 3.6372852 L 19.571434,12.012657 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:1.13050139;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient3637);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none"
+ d="M 5.1176673,19.923014 V 4.2025392 L 18.742079,12.062777 Z"
+ id="path3375"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient3639);stroke-width:0.56525141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 5.1176673,19.923014 V 4.2025392 L 18.742079,12.062777 Z"
+ id="path2479"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#99ff55;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 5.4002929,4.6968429 V 19.428702 L 18.171437,12.062772 Z M 5.9655441,5.6860325 17.02327,12.062772 5.9655441,18.439512 Z"
+ id="path2481"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none"
+ d="M 5.9305211,5.6509926 V 12.257366 C 8.3436903,12.232054 11.110571,12.062035 15.575119,11.19752 Z"
+ id="path2339"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <g
+ id="g883"
+ transform="translate(5.0000001e-8,82)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path868"
+ d="M 3,12.004951 H 22"
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none"
+ x="-193.3891"
+ y="-75.473068"
+ id="text878"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan876"
+ x="-193.3891"
+ y="-75.473068">reverse</tspan></text>
+ <g
+ transform="rotate(-180,-36.678202,52.966322)"
+ style="display:inline"
+ id="g883-3">
+ <path
+ inkscape:connector-curvature="0"
+ id="path868-1"
+ d="M 3,12.004951 H 22"
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-1"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-0"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none"
+ x="-192.07892"
+ y="-109.81438"
+ id="text966"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan964"
+ x="-192.07892"
+ y="-109.81438">fastrev</tspan></text>
+ <g
+ id="g1009"
+ transform="matrix(0.64763995,0,0,0.64763995,-125.00308,86.564287)">
+ <g
+ id="g883-3-1"
+ style="display:inline"
+ transform="rotate(-180,14.720339,12)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-1-9"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-1-6"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-0-9"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ id="g883-3-3"
+ style="display:inline"
+ transform="rotate(-180,9.279661,12)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-1-3"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-1-3"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-0-7"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ </g>
+ <g
+ id="g1009-3"
+ transform="matrix(-0.64763995,0,0,-0.64763995,53.27168,103.02168)">
+ <g
+ id="g883-3-38"
+ style="display:inline"
+ transform="rotate(-180,14.720339,12)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-1-0"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-1-5"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-0-6"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ id="g883-3-3-6"
+ style="display:inline"
+ transform="rotate(-180,9.279661,12)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-1-3-4"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10975266;stroke-miterlimit:4;stroke-dasharray:none;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-1-3-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-0-7-0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-93.590004"
+ y="47.770622"
+ id="text1069"
+ inkscape:transform-center-x="0.59093399"
+ inkscape:transform-center-y="-0.88640099"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-93.590004"
+ y="47.770622">see: play</tspan></text>
+ <g
+ id="g1155"
+ transform="translate(38.082645,27.097521)">
+ <g
+ id="g883-5"
+ style="display:inline"
+ transform="matrix(0.75978514,0,0,0.75978514,20.821095,58.360264)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-6"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-8"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ transform="translate(17.938516,54.817673)"
+ id="g1002">
+ <path
+ style="fill:#ff0000;stroke:#ffcc00;stroke-width:1.97248852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 21.543427,4.660013 v 16"
+ id="path968"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#aa0000;stroke:#aa0000;stroke-width:0.50658721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 22.303889,4.6600128 V 20.660013"
+ id="path970"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970"
+ id="use972"
+ transform="matrix(0,-1,0.125,0,19.974681,42.710608)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970"
+ id="use972-2"
+ transform="matrix(0,-1,0.125,0,19.974681,27.217196)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="g1155-7"
+ transform="matrix(-1,0,0,1,-110.43967,26.145455)">
+ <g
+ id="g883-5-2"
+ style="display:inline"
+ transform="matrix(0.75978514,0,0,0.75978514,20.821095,58.360264)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-6-8"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-9-2"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-8-9"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ transform="translate(17.938516,54.817673)"
+ id="g1002-9">
+ <path
+ style="fill:#ff0000;stroke:#ffcc00;stroke-width:1.97248852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 21.543427,4.660013 v 16"
+ id="path968-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#aa0000;stroke:#aa0000;stroke-width:0.50658721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 22.303889,4.6600128 V 20.660013"
+ id="path970-0"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970-0"
+ id="use972-27"
+ transform="matrix(0,-1,0.125,0,19.974681,42.710608)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970-0"
+ id="use972-2-6"
+ transform="matrix(0,-1,0.125,0,19.974681,27.217196)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,-75.729382,82.308555)"
+ style="display:inline"
+ id="g1420-4">
+ <g
+ id="g883-5-2-3-5-2"
+ style="display:inline"
+ transform="matrix(-0.75978514,0,0,0.75978514,-50.967205,3.0647946)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-6-8-2-8-2"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-9-2-1-7-2"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-8-9-5-0-0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ transform="translate(-19.801915,-0.131736)"
+ id="g1306-4-5"
+ style="display:inline">
+ <path
+ style="fill:#aa0000;stroke:#aa0000;stroke-width:0.50658721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -49.571359,4.2578518 V 20.257852"
+ id="path970-0-1-8-5"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970-0-1-8-5"
+ id="use972-27-4-04-2"
+ transform="matrix(0,1,-0.125,0,-47.292421,69.575917)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path970-0-1-8-5"
+ id="use972-2-6-9-2-9"
+ transform="matrix(0,1,-0.125,0,-47.292421,54.082505)"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ transform="translate(-5.8615809,0.20487)"
+ id="g1322-9-0"
+ style="display:inline">
+ <path
+ style="display:inline;fill:#aa0000;stroke:#aa0000;stroke-width:0.50658721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -44.134119,4.1626818 V 20.162682"
+ id="path970-0-1-1-6-2"
+ inkscape:connector-curvature="0" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#path970-0-1-1-6-2"
+ id="use972-27-4-0-1-8"
+ transform="matrix(0,-1,0.125,0,-46.401161,-24.224731)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#path970-0-1-1-6-2"
+ id="use972-2-6-9-7-0-3"
+ transform="matrix(0,-1,0.125,0,-46.401161,-39.718143)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ id="g1627"
+ transform="translate(0,82)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9"
+ d="M -50.239863,4.252023 V 20.252024"
+ style="fill:#ff0000;stroke:#ffcc00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g883-5-2-3-5"
+ style="display:inline"
+ transform="matrix(-0.75978514,0,0,0.75978514,-50.967205,3.1346017)">
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.79991585;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 3,12.004951 H 22"
+ id="path868-6-8-2-8"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,11.61967 1.9999999,2.786869 22,11.633024 Z"
+ id="path3375-6-7-2-1-6-7-9-1-9-2-1-7"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ d="M 3.0046596,12.380331 1.9999999,21.213131 22,12.366977 Z"
+ id="path3375-6-7-2-1-6-7-9-1-7-8-9-5-0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9"
+ d="M -69.12616,4.2520228 V 20.252024"
+ style="display:inline;fill:#ff0000;stroke:#aa0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1082">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5"
+ d="M 3.00466,11.607717 2,2.2935961 22,11.621799 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.19356728;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02"
+ d="M 3.00466,12.435881 2,21.750002 22,12.4218 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.19356728;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="opacity:1;fill:#171716;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.46142292;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2404"
+ width="19"
+ height="0.80000001"
+ x="2.9999993"
+ y="11.621799" />
+ </g>
+ <path
+ style="fill:none;stroke:#00ffff;stroke-width:0.00998356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -2.1581588,7.4154716 -34.465608,-7.7465084"
+ id="path1922"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <text
+ transform="rotate(-90)"
+ id="text2299"
+ y="78.695389"
+ x="13.145226"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none;stroke-width:0.99999994;"
+ xml:space="preserve"><tspan
+ style="fill:#afc6e9;stroke-width:0.99999994;"
+ y="78.695389"
+ x="13.145226"
+ id="tspan2297"
+ sodipodi:role="line">end</tspan></text>
+ <text
+ transform="rotate(-90)"
+ id="text2303"
+ y="-11.183634"
+ x="9.2492695"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none;stroke-width:0.99999994;"
+ xml:space="preserve"><tspan
+ style="fill:#afc6e9;stroke-width:0.99999994;"
+ y="-11.183634"
+ x="9.2492695"
+ id="tspan2301"
+ sodipodi:role="line">framfwd</tspan></text>
+ <g
+ id="g2434">
+ <rect
+ y="4.1829805"
+ x="-46.672314"
+ height="7.5"
+ width="15.8"
+ id="rect2166"
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12841129;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="12.482981"
+ x="-46.672314"
+ height="7.5"
+ width="15.8"
+ id="rect2166-7"
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12841129;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="11.682981"
+ x="-46.672314"
+ height="0.80000001"
+ width="15.8"
+ id="rect2198"
+ style="opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00714421;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1013">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4"
+ d="M -24.208156,4.5829803 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4"
+ d="M -20.897028,11.682981 -21.705871,5.0833674 -5.6040441,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6"
+ d="m -20.897028,12.482981 -0.808843,6.599611 16.1018269,-6.599611 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41023231;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="-20.897028"
+ height="0.80000001"
+ width="15.292984"
+ id="rect2198-0"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99085301;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1005">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4-7"
+ d="M 81.847301,4.5829805 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435859;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-6"
+ d="M 64.087238,11.682981 63.27967,5.0833679 79.381687,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-5"
+ d="M 64.087238,12.482981 63.27967,19.082592 79.381687,12.482981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="64.089844"
+ height="0.80000001"
+ width="15.291842"
+ id="rect2198-0-2"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.990816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none;"
+ x="-188.78836"
+ y="-137.62166"
+ id="text2591"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan2589"
+ x="-188.78836"
+ y="-137.62166">rewind</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#afc6e9;fill-opacity:1;stroke:none"
+ x="-296.85168"
+ y="98.316719"
+ id="text2595"><tspan
+ sodipodi:role="line"
+ id="tspan2593"
+ x="-296.85168"
+ y="98.316719">In der End-Größe irritierend</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none"
+ x="-241.21796"
+ y="-0.49545532"
+ id="text2599"><tspan
+ sodipodi:role="line"
+ id="tspan2597"
+ x="-241.21796"
+ y="-0.49545532">Klar und schlicht.</tspan></text>
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:9.36088085;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-75"
+ width="131.07092"
+ height="62.217209"
+ x="-183.93512"
+ y="-202.55003" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:9.36088085;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="131.07092"
+ height="62.217209"
+ x="-183.93512"
+ y="-133.69632" />
+ <rect
+ style="opacity:1;fill:#171716;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.35489368;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2198-5"
+ width="131.07092"
+ height="6.6365027"
+ x="-183.93512"
+ y="-140.33282" />
+ <g
+ style="display:inline"
+ id="g1680-2"
+ transform="rotate(-90,12.885484,-159.68918)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-9"
+ d="m -23.277234,-55.492873 -1.00466,-8.832801 20,8.846155 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-9"
+ d="m -23.277234,-54.666165 -1.00466,8.8328 20,-8.846154 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.72957367;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2404-0-6"
+ width="19"
+ height="2"
+ x="-42.277233"
+ y="-56.079517" />
+ <rect
+ style="opacity:1;fill:#171716;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.64740872;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2404-0"
+ width="37.403507"
+ height="0.80000001"
+ x="-41.685402"
+ y="-55.479519" />
+ </g>
+ <g
+ id="g1040">
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,11.682981 34.261966,4 49.478782,11.693852 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4"
+ d="M 40.961584,11.672995 40.258129,4.7045372 54.261965,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.44976163;marker:none"
+ d="M 35,12.482981 34.261966,20.165962 49.478782,12.47211 Z"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-47"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ y="11.682981"
+ x="35"
+ height="0.80000001"
+ width="19.261965"
+ id="rect2198-0-6"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.11202204;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-7-4-1"
+ d="m 40.961584,12.492967 -0.703455,6.968458 14.003836,-6.978444 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.25038004;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-10.158898"
+ inkscape:cy="4.970339"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-72"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472059,-0.74709828)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-31.913135"
+ inkscape:cy="8.5"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1811-2-6-72);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-4"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.2108231"
+ x="1.2108088"
+ height="14.578383"
+ width="23.578382"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-37"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.42161635;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M 6.4999996,14.250002 V 2.7500017 l 13.0000014,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-6"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4758"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient4760"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ id="linearGradient2691">
+ <stop
+ style="stop-color:#99ff55;stop-opacity:1;"
+ offset="0"
+ id="stop2693" />
+ <stop
+ style="stop-color:#338000;stop-opacity:1;"
+ offset="1"
+ id="stop2695" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5075">
+ <stop
+ id="stop5077"
+ offset="0"
+ style="stop-color:#225000;stop-opacity:1;" />
+ <stop
+ id="stop5079"
+ offset="1"
+ style="stop-color:#112b00;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2691"
+ id="radialGradient3637"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.03009591,-0.47268452,1.1415095,0.07267321,-87.820342,59.640563)"
+ cx="107.5884"
+ cy="83.990814"
+ fx="107.5884"
+ fy="83.990814"
+ r="12.551644" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5075"
+ id="linearGradient3639"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.56525118,0,0,0.56525118,-27.384208,-41.636084)"
+ x1="71.288956"
+ y1="124.11652"
+ x2="70.826942"
+ y2="95" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.47206,-0.74709819)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-10.375"
+ inkscape:cy="-6.0066891"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g4750"
+ transform="translate(13.144068,-11.957627)">
+ <g
+ transform="translate(-13.144068,11.957627)"
+ id="g4743">
+ <rect
+ y="0"
+ x="5.3357905e-08"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4848"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient4758);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient4760);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.75107197,0,0,0.72128765,3.9871098,-0.15546776)"
+ id="g3050">
+ <g
+ id="layer4"
+ inkscape:label="contorno"
+ style="display:inline"
+ transform="translate(-45.577363,-12.45339)" />
+ <g
+ id="g3630"
+ transform="matrix(1.0094806,0,0,0.97891036,-0.31908626,0.00114793)">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2682"
+ d="M 4.8353469,20.877446 V 3.6372852 L 19.571434,12.012657 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:1.13050139;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient3637);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none"
+ d="M 5.1176673,19.923014 V 4.2025392 L 18.742079,12.062777 Z"
+ id="path3375"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient3639);stroke-width:0.56525141;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 5.1176673,19.923014 V 4.2025392 L 18.742079,12.062777 Z"
+ id="path2479"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#99ff55;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 5.4002929,4.6968429 V 19.428702 L 18.171437,12.062772 Z M 5.9655441,5.6860325 17.02327,12.062772 5.9655441,18.439512 Z"
+ id="path2481"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none"
+ d="M 5.9305211,5.6509926 V 12.257366 C 8.3436903,12.232054 11.110571,12.062035 15.575119,11.19752 Z"
+ id="path2339"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-1-3"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.4847794"
+ x="1.4847803"
+ height="14.030439"
+ width="23.030439"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-47"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.9695608;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#37c871;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M 6.5,14.250001 V 2.7500018 l 13.000001,5.75 z"
+ id="path3375-6-7-2-1-6-7-9"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4048"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472062,-0.74710879)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-33.029661"
+ inkscape:cy="9.7966098"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ id="g4041"
+ transform="translate(17.754237,3.4576271)">
+ <g
+ transform="translate(-17.754237,-3.4576271)"
+ id="g4035">
+ <rect
+ y="0"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4386"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient4048);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2682"
+ d="M 7.4135772,14.586423 V 2.4135598 L 18.586369,8.3272084 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:0.8271544;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c6b8b8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none"
+ d="M 7.6276305,13.912521 V 2.8126721 L 17.957558,8.362597 Z"
+ id="path3375"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#646464;stroke-width:0.41357771;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 7.6276305,13.912521 V 2.8126721 L 17.957558,8.362597 Z"
+ id="path2479"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#aaaaaa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 7.8419151,3.161688 V 13.563499 L 17.524902,8.3625934 Z M 8.2704844,3.860131 16.65437,8.3625934 8.2704844,12.865056 Z"
+ id="path2481"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-56.278427"
+ y="-15.405986"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-56.278427"
+ y="-15.405986">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-4);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-50-11-3-0"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffd42a;fill-opacity:1;fill-rule:evenodd;stroke:#ffd42a;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;marker:none;stroke-opacity:1"
+ d="M 6.7634748,14.031511 V 3.0315112 l 12.0000002,5.5 z"
+ id="path3375-6-7-2-1-6-7-0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4072"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient4074"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332428,0,0,0.9439079,-30.472061,-0.74709095)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-12.824152"
+ inkscape:cy="8.5"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="g4064"
+ transform="translate(17.322034,-2.9533899)">
+ <g
+ transform="translate(-17.322034,2.9533899)"
+ id="g4057">
+ <rect
+ y="-7.5614306e-09"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3925"
+ transform="matrix(1.0833333,0,0,0.70885178,1.625,1.0570557)">
+ <rect
+ style="fill:url(#linearGradient4072);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient4074);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="g21870">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path2682"
+ d="M 7.4135772,14.586423 V 2.4135598 L 18.586369,8.3272084 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:0.8271544;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none"
+ d="M 7.6276305,13.912521 V 2.8126721 L 17.957558,8.362597 Z"
+ id="path3375"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#646464;stroke-width:0.41357771;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 7.6276305,13.912521 V 2.8126721 L 17.957558,8.362597 Z"
+ id="path2479"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 7.8419151,3.161688 V 13.563499 L 17.524902,8.3625934 Z M 8.2704844,3.860131 16.65437,8.3625934 8.2704844,12.865056 Z"
+ id="path2481"
+ sodipodi:nodetypes="cccccccc" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-3-1-7);fill-opacity:1;stroke:#141414;stroke-width:0.95356679;stroke-opacity:1"
+ id="rect3597-2-1-6"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.2421951"
+ x="1.2422161"
+ height="14.515569"
+ width="23.515568"
+ id="rect3597-5-7-9-4-8-9-4-29-4"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.48443139;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m 6.4999997,14.249999 v -11.5 L 19.5,8.499999 Z"
+ id="path3375-6-7-2-1-6-7-9-9"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-50.587749"
+ y="-8.634799"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-50.587749"
+ y="-8.634799">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="playpatch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/playpatch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="40-20">
+ <stop
+ id="stop1631"
+ offset="0"
+ style="stop-color:#999999;stop-opacity:1" />
+ <stop
+ id="stop1633"
+ offset="1"
+ style="stop-color:#cccccc;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811-26"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472086,-0.7471063)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4"
+ inkscape:cx="-65.070488"
+ inkscape:cy="8.2130717"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="26"
+ height="17"
+ x="0"
+ y="0" />
+ <g
+ style="fill:#cccccc"
+ transform="matrix(1.9436696,0,0,1.6124484,84.1538,-4.103414)"
+ id="g4429">
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:0.46723187;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M -39.482133,11.590967 V 4.0416634 l 5.748298,3.6674963 z"
+ id="path2682"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375"
+ d="M -39.372005,11.17303 V 4.2891828 l 5.314652,3.441924 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2479"
+ d="M -39.372005,11.17303 V 4.2891828 l 5.314652,3.441924 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#646464;stroke-width:0.23361622;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path2481"
+ d="m -39.261757,4.5056337 v 6.4509423 l 4.981807,-3.2254714 z m 0.220495,0.4331568 4.313431,2.7923141 -4.313431,2.7923144 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-36.385418"
+ y="-28.921875"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-36.385418"
+ y="-28.921875">see: recordpatch_up</tspan></text>
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-26);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-9-6"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M 6.4999994,14.250003 V 2.7500037 L 19.5,8.5000037 Z"
+ id="path3375-6-7-2-1-6-7-9-0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="93"
+ height="18"
+ sodipodi:docname="plugin_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-5"
+ id="linearGradient1811-8-5-0-7-3-2-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.91632,-1.3729317)" />
+ <linearGradient
+ id="linearGradient1817-5">
+ <stop
+ id="stop1852-6"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854-2"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient895-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.5769228,0,0,0.52941163,-159.59297,-73.634019)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-0-7-3-2-5-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.5769228,0,0,0.52941163,-163.23962,54.261106)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-5"
+ id="linearGradient1811-8-5-0-7-3-2-2-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.49633,-35.281635)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.2267692"
+ inkscape:cx="42.331542"
+ inkscape:cy="9.4795341"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ ry="2.6849899"
+ y="0.91812956"
+ x="0.91812956"
+ height="16.16374"
+ width="91.163742"
+ id="rect2818"
+ style="fill:#683818;fill-opacity:1;stroke:#d07030;stroke-width:1.83625913;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="3.0034139" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2);fill-opacity:1;stroke:none;stroke-width:0.42704147;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-7"
+ width="93"
+ height="18"
+ x="0"
+ y="0"
+ inkscape:transform-center-x="18.520099"
+ inkscape:transform-center-y="-34.342165" />
+ <rect
+ ry="0"
+ y="24.065426"
+ x="0.17078727"
+ height="16.970814"
+ width="91.97081"
+ id="rect2818-5"
+ style="fill:#784421;fill-opacity:1;stroke:#c87137;stroke-width:1.02918708;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ rx="0" />
+ <rect
+ style="display:inline;fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.49900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4-7"
+ width="92.50132"
+ height="17.501316"
+ x="0.24934006"
+ y="0.24934196"
+ inkscape:transform-center-x="18.420788"
+ inkscape:transform-center-y="-33.390726" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-5-8);fill-opacity:1;stroke:none;stroke-width:0.30191955;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4-1"
+ width="93"
+ height="9"
+ x="-48.323315"
+ y="54.947563"
+ inkscape:transform-center-x="18.520099"
+ inkscape:transform-center-y="-17.171083" />
+ <rect
+ style="display:inline;fill:url(#linearGradient895-9);fill-opacity:1;stroke:none;stroke-width:0.30191955;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4-0-3"
+ width="93"
+ height="9"
+ x="-44.676685"
+ y="-72.947563"
+ inkscape:transform-center-x="-18.520102"
+ inkscape:transform-center-y="17.171084"
+ transform="scale(-1)" />
+ <rect
+ style="display:inline;fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.49900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4-7-1"
+ width="92.50132"
+ height="17.501316"
+ x="-48.073975"
+ y="55.196907"
+ inkscape:transform-center-x="18.420788"
+ inkscape:transform-center-y="-33.390726" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.76801819"
+ id="rect3611-3-64-8-2"
+ width="93"
+ height="18"
+ x="0"
+ y="0" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2-0);fill-opacity:1;stroke:none;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-7-0"
+ width="93"
+ height="18"
+ x="0.41999695"
+ y="-33.908703"
+ inkscape:transform-center-x="18.520099"
+ inkscape:transform-center-y="-34.342165" />
+ <rect
+ style="display:inline;fill:none;fill-opacity:1;stroke:#3771c8;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-4-7-3"
+ width="92.50132"
+ height="17.501316"
+ x="0.66933697"
+ y="-33.659359"
+ inkscape:transform-center-x="18.420788"
+ inkscape:transform-center-y="-33.390726" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.499;stroke-miterlimit:4;stroke-dasharray:none"
+ id="rect3611-3-64-8-2-9"
+ width="93"
+ height="18"
+ x="0.41999695"
+ y="-33.908703" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18"
+ height="18"
+ sodipodi:docname="plugin_on.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_on.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-15.716102"
+ inkscape:cy="-0.019142464"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g3789-5"
+ style="stroke:#000000"
+ transform="translate(-1.090527,0.07249855)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-6"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-9"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="M 8.970913,7.7659182 8.970693,3.9973285"
+ id="path10581-8"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-7"
+ d="m 6.316363,4.9887282 c -4.44875,2.36801 -2.43703,9.1537308 2.64896,9.1537308 5.03301,0 7.28872,-6.4331808 2.64895,-9.1537308" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000185"
+ height="18.046276"
+ sodipodi:docname="plugin_ondn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_ondn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.3101911"
+ inkscape:cx="-33.077335"
+ inkscape:cy="9.0000468"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g3789-5-2-3"
+ style="stroke:#000000"
+ transform="translate(-1.0898079,-0.397266)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-5-8"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-4-0"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 8.9716221,7.296154 -2.1e-4,-3.76859"
+ id="path10581-0-4-4"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffcc00;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffcc00;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-9-0"
+ d="m 6.3170821,4.518964 c -4.44875,2.36801 -2.43704,9.15373 2.64895,9.15373 5.0330199,0 7.2887299,-6.43318 2.6489599,-9.15373" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000185"
+ height="18"
+ sodipodi:docname="plugin_onhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-10.804992"
+ inkscape:cy="-0.72917293"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ y="0.86965942"
+ x="0.86975193"
+ height="16.260681"
+ width="16.260681"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-3-0"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.73900002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g3789-5"
+ style="stroke:#000000"
+ transform="translate(-1.0907514,-0.42140848)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 8.9706786,7.2720116 -2.1e-4,-3.76859"
+ id="path10581-0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#aa0000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-4"
+ d="m 6.3161386,4.4948316 c -4.44875,2.36801 -2.43704,9.1537194 2.64895,9.1537194 5.0330204,0 7.2887304,-6.4331694 2.6489604,-9.1537194" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18"
+ height="18.000093"
+ sodipodi:docname="plugin_onselect.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselect.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-6.2287191"
+ inkscape:cy="6.877768"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g3789-5-9-5"
+ style="stroke:#000000"
+ transform="translate(-1.0898658,-0.4203672)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-6-5"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-1-2"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 8.9715642,7.2730528 -2.1e-4,-3.76859"
+ id="path10581-0-0-9"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-4-0"
+ d="m 6.3170242,4.4958728 c -4.44875,2.36801 -2.43704,9.1537202 2.64895,9.1537202 5.0330208,0 7.2887308,-6.4331702 2.6489608,-9.1537202" />
+ <rect
+ y="0.68905449"
+ x="0.68901062"
+ height="16.622002"
+ width="16.622004"
+ id="rect3597-5-7-9-4-8-9-8-0-0-2"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.37799758;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000185"
+ height="18"
+ sodipodi:docname="plugin_onselecthi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_onselecthi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.166599"
+ inkscape:cx="-24.740588"
+ inkscape:cy="9.0000469"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g3789-5-9-5-5"
+ style="stroke:#000000;stroke-opacity:1"
+ transform="translate(-1.0897878,-0.4204071)">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 10.061436,8.6934229 10.061218,4.9248322"
+ id="path3791-8-6-5-0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3793-7-1-2-2"
+ d="m 7.4068911,5.9162338 c -4.4487487,2.3680098 -2.4370357,9.1537252 2.6489549,9.1537252 5.033013,0 7.288727,-6.4331744 2.648954,-9.1537252" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 8.9716426,7.2730129 -2.1e-4,-3.76859"
+ id="path10581-0-0-9-9"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:1.99466479;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:#37c871;stroke-width:1.71508026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3783-8-4-0-4"
+ d="m 6.3171022,4.4958329 c -4.44875,2.36801 -2.43704,9.1537201 2.6489504,9.1537201 5.0330204,0 7.2887304,-6.4331701 2.6489604,-9.1537201" />
+ <rect
+ y="0.86967182"
+ x="0.86975193"
+ height="16.260681"
+ width="16.260681"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-3-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.73900002;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot2080"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion2082"><rect
+ id="rect2084"
+ width="28.101412"
+ height="37.747032"
+ x="-4.3291364"
+ y="-8.6583662" /></flowRegion><flowPara
+ id="flowPara2086" /></flowRoot></svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18"
+ height="18.000093"
+ sodipodi:docname="plugin_show.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_show.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-4.3641751"
+ inkscape:cy="-1.412112"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ d="m 7.1778547,3.6827237 c -2.334926,0 -4.230662,1.8362841 -4.230661,4.0979182 0,2.2616361 1.895735,4.0979191 4.230661,4.0979191 0.865868,0 1.68861,-0.249897 2.359406,-0.682988 l 5.5934203,5.46389 0.793252,-1.045821 -5.654441,-5.058367 c 0.704283,-0.7320541 1.139024,-1.6960961 1.139024,-2.7746331 0,-2.2616341 -1.8957363,-4.0979182 -4.2306613,-4.0979182 z m 0.06102,0.2561199 c 2.089773,0 3.7831853,1.6468743 3.7831853,3.6710515 0,2.0241768 -1.6934113,3.6710509 -3.7831853,3.6710509 -2.089774,0 -3.783188,-1.6468731 -3.783188,-3.6710509 0,-2.0241772 1.693414,-3.6710515 3.783188,-3.6710515 z"
+ id="path15529" />
+ <path
+ id="path11112-1"
+ d="m 7.1778547,2.6823585 c -2.334926,0 -4.230662,1.8362841 -4.230661,4.0979182 0,2.261636 1.895735,4.0979193 4.230661,4.0979193 0.865868,0 1.68861,-0.249897 2.359406,-0.682988 l 5.5934203,5.46389 0.793252,-1.045821 -5.654441,-5.0583673 c 0.704283,-0.732054 1.139024,-1.696096 1.139024,-2.774633 0,-2.2616341 -1.8957363,-4.0979182 -4.2306613,-4.0979182 z m 0.06102,0.2561199 c 2.089773,0 3.7831853,1.6468743 3.7831853,3.6710515 0,2.0241768 -1.6934113,3.6710511 -3.7831853,3.6710511 -2.089774,0 -3.783188,-1.6468733 -3.783188,-3.6710511 0,-2.0241772 1.693414,-3.6710515 3.783188,-3.6710515 z"
+ style="fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#e6e4dd;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m 2.1440678,35.445009 v -11.5 l 13.0000002,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000462"
+ height="18.000093"
+ sodipodi:docname="plugin_showdn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showdn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="11.8"
+ inkscape:cx="-7.2455321"
+ inkscape:cy="12.644115"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 6.7425309,3.0118728 c -2.334926,0 -4.2306615,1.836284 -4.2306605,4.0979179 0,2.2616361 1.8957345,4.0979193 4.2306605,4.0979193 0.865868,0 1.68861,-0.249897 2.359406,-0.682988 l 5.5934201,5.46389 0.793252,-1.045821 L 9.8341682,9.8844238 C 10.538451,9.1523697 10.973192,8.1883277 10.973192,7.1097907 c 0,-2.2616339 -1.8957361,-4.0979179 -4.2306611,-4.0979179 z m 0.06102,0.25612 c 2.089773,0 3.7831851,1.646874 3.7831851,3.6710511 0,2.0241768 -1.6934111,3.6710511 -3.7831851,3.6710511 -2.089774,0 -3.7831876,-1.6468733 -3.7831876,-3.6710511 0,-2.0241771 1.6934136,-3.6710511 3.7831876,-3.6710511 z"
+ id="path15529-6" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-1"
+ d="m 6.7425309,2.0115078 c -2.334926,0 -4.2306615,1.836284 -4.2306605,4.0979177 0,2.261636 1.8957345,4.0979195 4.2306605,4.0979195 0.865868,0 1.68861,-0.2498972 2.359406,-0.6829882 L 14.695357,14.988247 15.488609,13.942426 9.8341682,8.8840585 c 0.7042828,-0.732054 1.1390238,-1.696096 1.1390238,-2.774633 0,-2.2616337 -1.8957361,-4.0979177 -4.2306611,-4.0979177 z m 0.06102,0.256119 c 2.089773,0 3.7831851,1.646875 3.7831851,3.6710519 0,2.0241768 -1.6934111,3.6710511 -3.7831851,3.6710511 -2.089774,0 -3.7831876,-1.6468733 -3.7831876,-3.6710511 0,-2.0241769 1.6934136,-3.6710519 3.7831876,-3.6710519 z"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000185"
+ height="18"
+ sodipodi:docname="plugin_showhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.166599"
+ inkscape:cx="-14.677384"
+ inkscape:cy="10.289619"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 6.7423925,3.0118258 c -2.334926,0 -4.2306616,1.836284 -4.2306606,4.0979179 0,2.2616361 1.8957346,4.0979193 4.2306606,4.0979193 0.865868,0 1.68861,-0.249897 2.359406,-0.682988 l 5.5934205,5.46389 0.793252,-1.045821 L 9.8340298,9.8843768 C 10.538313,9.1523227 10.973054,8.1882807 10.973054,7.1097437 c 0,-2.2616339 -1.8957365,-4.0979179 -4.2306615,-4.0979179 z m 0.06102,0.25612 c 2.089773,0 3.7831855,1.646874 3.7831855,3.6710511 0,2.0241768 -1.6934115,3.6710511 -3.7831855,3.6710511 -2.089774,0 -3.7831876,-1.6468733 -3.7831876,-3.6710511 0,-2.0241771 1.6934136,-3.6710511 3.7831876,-3.6710511 z"
+ id="path15529-6" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-1"
+ d="m 6.7423925,2.0114608 c -2.334926,0 -4.2306616,1.836284 -4.2306606,4.0979177 0,2.261636 1.8957346,4.0979195 4.2306606,4.0979195 0.865868,0 1.68861,-0.2498972 2.359406,-0.6829882 L 14.695219,14.9882 15.488471,13.942379 9.8340298,8.8840115 c 0.7042832,-0.732054 1.1390242,-1.696096 1.1390242,-2.774633 0,-2.2616337 -1.8957365,-4.0979177 -4.2306615,-4.0979177 z m 0.06102,0.256119 c 2.089773,0 3.7831855,1.646875 3.7831855,3.6710519 0,2.0241768 -1.6934115,3.6710511 -3.7831855,3.6710511 -2.089774,0 -3.7831876,-1.6468733 -3.7831876,-3.6710511 0,-2.0241769 1.6934136,-3.6710519 3.7831876,-3.6710519 z"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000462"
+ height="18.000093"
+ sodipodi:docname="plugin_showselect.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselect.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.166599"
+ inkscape:cx="-24.702475"
+ inkscape:cy="9.0000467"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 6.7425301,3.0118748 c -2.33493,0 -4.23066,1.83628 -4.23066,4.09792 0,2.26163 1.89573,4.0979202 4.23066,4.0979202 0.86587,0 1.68861,-0.2499 2.3594,-0.68299 l 5.5934299,5.46389 0.79325,-1.04582 L 9.8341701,9.8844247 C 10.53845,9.1523748 10.97319,8.1883248 10.97319,7.1097948 c 0,-2.26164 -1.8957399,-4.09792 -4.2306599,-4.09792 z m 0.061,0.25612 c 2.08977,0 3.7831799,1.64687 3.7831799,3.67105 0,2.02418 -1.6934099,3.6710502 -3.7831799,3.6710502 -2.08977,0 -3.78319,-1.6468702 -3.78319,-3.6710502 0,-2.02418 1.69342,-3.67105 3.78319,-3.67105 z"
+ id="path15529-1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-4"
+ d="m 6.7425301,2.0115048 c -2.33493,0 -4.23066,1.83629 -4.23066,4.09792 0,2.26164 1.89573,4.0979202 4.23066,4.0979202 0.86587,0 1.68861,-0.2499003 2.3594,-0.6829902 L 14.69536,14.988245 15.48861,13.942425 9.8341701,8.8840648 c 0.7042799,-0.73206 1.1390199,-1.6961 1.1390199,-2.77464 0,-2.26163 -1.8957399,-4.09792 -4.2306599,-4.09792 z m 0.061,0.25612 c 2.08977,0 3.7831799,1.64688 3.7831799,3.67106 0,2.02417 -1.6934099,3.67105 -3.7831799,3.67105 -2.08977,0 -3.78319,-1.64688 -3.78319,-3.67105 0,-2.02418 1.69342,-3.67106 3.78319,-3.67106 z"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.000185"
+ height="18"
+ sodipodi:docname="plugin_showselecthi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/plugin_showselecthi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.9"
+ inkscape:cx="-87.211788"
+ inkscape:cy="-1.6251608"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;fill:#fff6d5;fill-opacity:1;fill-rule:evenodd;stroke:#ffeeaa;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 6.7423917,3.0118278 c -2.33492,0 -4.23066,1.8362801 -4.23066,4.0979201 0,2.26163 1.89574,4.0979201 4.23066,4.0979201 0.86587,0 1.68861,-0.2499 2.35941,-0.68299 l 5.5934193,5.46389 0.79325,-1.04582 -5.6544393,-5.0583701 c 0.7042803,-0.73205 1.1390203,-1.6961 1.1390203,-2.77463 0,-2.26164 -1.8957303,-4.0979201 -4.2306603,-4.0979201 z m 0.061,0.25612 c 2.08977,0 3.7831903,1.6468701 3.7831903,3.6710501 0,2.02418 -1.6934103,3.6710501 -3.7831903,3.6710501 -2.08977,0 -3.78319,-1.6468701 -3.78319,-3.6710501 0,-2.02418 1.69342,-3.6710501 3.78319,-3.6710501 z"
+ id="path15529-69" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11112-1-42"
+ d="m 6.7423917,2.0114579 c -2.33492,0 -4.23066,1.8362899 -4.23066,4.09792 0,2.26164 1.89574,4.0979201 4.23066,4.0979201 0.86587,0 1.68861,-0.2499001 2.35941,-0.6829901 l 5.5934193,5.4638901 0.79325,-1.04582 -5.6544393,-5.0583601 c 0.7042803,-0.73206 1.1390203,-1.6961 1.1390203,-2.77464 0,-2.2616301 -1.8957303,-4.09792 -4.2306603,-4.09792 z m 0.061,0.25612 c 2.08977,0 3.7831903,1.6468799 3.7831903,3.67106 0,2.02417 -1.6934103,3.67105 -3.7831903,3.67105 -2.08977,0 -3.78319,-1.64688 -3.78319,-3.67105 0,-2.0241801 1.69342,-3.67106 3.78319,-3.67106 z"
+ style="display:inline;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.02326047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="38"
+ height="38"
+ sodipodi:docname="pot_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pot_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.2105263"
+ inkscape:cx="-112.38983"
+ inkscape:cy="19"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="0"
+ x="-1.110223e-16"
+ height="38"
+ width="38"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="2.5099602"
+ y="1.5"
+ x="1.5"
+ height="35"
+ width="35"
+ id="rect3685"
+ style="fill:none;stroke:none" />
+ <ellipse
+ style="fill:none;stroke:#000000;stroke-width:1.60101998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4547"
+ transform="matrix(1.2025866,0,0,1.1957923,54.016449,-10.977696)"
+ cx="-29.949152"
+ cy="24.233051"
+ rx="14.169492"
+ ry="14.25" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ y="0"
+ x="0"
+ height="38"
+ width="38"
+ id="rect3870-3"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ <circle
+ r="17.513374"
+ cy="18.5"
+ cx="18.5"
+ style="fill:#141414;fill-opacity:1;stroke:#ffcc00;stroke-width:1.97324955;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4547-0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="38"
+ height="38"
+ sodipodi:docname="pot_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pot_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.2105263"
+ inkscape:cx="-29.949153"
+ inkscape:cy="10.305085"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ y="0"
+ x="0"
+ height="38"
+ width="38"
+ id="rect3870-3"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <circle
+ r="17.513374"
+ cy="18.5"
+ cx="18.5"
+ style="fill:#141414;fill-opacity:1;stroke:#3771c8;stroke-width:1.97324955;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4547-0" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="-1.110223e-16"
+ height="38"
+ width="38"
+ id="rect3870"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="2.5099602"
+ y="1.5"
+ x="1.5"
+ height="35"
+ width="35"
+ id="rect3685"
+ style="fill:none;stroke:none" />
+ <ellipse
+ style="fill:none;stroke:#cccccc;stroke-width:1.60101998;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4547"
+ transform="matrix(1.2025866,0,0,1.1957923,54.016449,-10.977696)"
+ cx="-29.949152"
+ cy="24.233051"
+ rx="14.169492"
+ ry="14.25" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="38"
+ height="38"
+ sodipodi:docname="pot_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/pot_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.5505411"
+ inkscape:cx="102.53732"
+ inkscape:cy="22.414652"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer5"
+ inkscape:showpageshadow="false" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="matrix(1.7272727,0,0,1.7272727,-72.903691,-20.616778)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ y="0"
+ x="0"
+ height="38"
+ width="38"
+ id="rect3870-3"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ <rect
+ ry="2.5099602"
+ y="1.5000001"
+ x="-87.220337"
+ height="35"
+ width="35"
+ id="rect3685-4"
+ style="fill:none;stroke:none" />
+ <circle
+ cy="18.5"
+ cx="18.5"
+ style="fill:#141414;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.97324955;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4547-0"
+ r="17.513374" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M 79.706864,21.42534 V 9.9253401 l 13,5.7499999 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-7.2457628"
+ y="-28.822035"
+ id="text1409"><tspan
+ sodipodi:role="line"
+ id="tspan1407"
+ x="-7.2457628"
+ y="-28.822035">Vorsicht, Programmierung. Stehen zu dicht zueinander.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-6.9237285"
+ y="-19.576269"
+ id="text1413"><tspan
+ sodipodi:role="line"
+ id="tspan1411"
+ x="-6.9237285"
+ y="-19.576269">Weglassen des Hintergrunds macht es nicht besser.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="140.72881"
+ y="-31.237288"
+ id="text1417"><tspan
+ sodipodi:role="line"
+ id="tspan1415"
+ x="140.72881"
+ y="-15.989812" /></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="750"
+ height="77"
+ sodipodi:docname="preferences_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferences_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-85" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895-6" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607-1"
+ xlink:href="#linearGradient3601-1"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601-1">
+ <stop
+ id="stop3603-5"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605-9"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.020055,0,0,1.5515391,-441.05897,-113.20995)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:menu-tooltip="Drop shadow under the cut-out of the shape"
+ inkscape:menu="Shadows and Glows"
+ height="1"
+ width="1"
+ y="0"
+ x="0"
+ inkscape:label="Cutout"
+ id="filter2855">
+ <feGaussianBlur
+ stdDeviation="4.2"
+ in="SourceAlpha"
+ id="feGaussianBlur2857" />
+ <feOffset
+ result="result91"
+ dx="5"
+ dy="5"
+ id="feOffset2859" />
+ <feComposite
+ in="SourceGraphic"
+ operator="out"
+ in2="result91"
+ id="feComposite2861" />
+ </filter>
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:menu-tooltip="Adds a colorizable drop shadow inside"
+ inkscape:menu="Shadows and Glows"
+ inkscape:label="Inner Shadow"
+ id="filter3632">
+ <feGaussianBlur
+ result="result8"
+ stdDeviation="4"
+ id="feGaussianBlur3634" />
+ <feOffset
+ result="result11"
+ dy="4"
+ dx="4"
+ id="feOffset3636" />
+ <feComposite
+ operator="in"
+ in="SourceGraphic"
+ result="result6"
+ in2="result11"
+ id="feComposite3638" />
+ <feFlood
+ flood-color="rgb(0,0,0)"
+ flood-opacity="1"
+ in="result6"
+ result="result10"
+ id="feFlood3640" />
+ <feBlend
+ result="result12"
+ in="result6"
+ mode="normal"
+ in2="result10"
+ id="feBlend3642" />
+ <feComposite
+ operator="in"
+ result="result2"
+ in2="SourceGraphic"
+ id="feComposite3644" />
+ </filter>
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:menu-tooltip="Inner colorized shadow, outer black shadow"
+ inkscape:menu="Shadows and Glows"
+ inkscape:label="In and Out"
+ id="filter8106">
+ <feGaussianBlur
+ stdDeviation="4"
+ in="SourceAlpha"
+ result="result0"
+ id="feGaussianBlur8108" />
+ <feOffset
+ result="result4"
+ dy="5"
+ dx="5"
+ id="feOffset8110" />
+ <feComposite
+ result="result3"
+ operator="xor"
+ in="SourceGraphic"
+ in2="result4"
+ id="feComposite8112" />
+ </filter>
+ <filter
+ color-interpolation-filters="sRGB"
+ x="-0.25"
+ y="-0.25"
+ width="1.5"
+ height="1.5"
+ inkscape:menu-tooltip="Strongly raised border around a flat surface"
+ inkscape:menu="Bevels"
+ inkscape:label="Raised border"
+ id="filter8082">
+ <feGaussianBlur
+ result="result1"
+ stdDeviation="4"
+ id="feGaussianBlur8084" />
+ <feComposite
+ operator="in"
+ result="result4"
+ in="result1"
+ in2="result1"
+ id="feComposite8086" />
+ <feGaussianBlur
+ in="result4"
+ result="result6"
+ stdDeviation="2"
+ id="feGaussianBlur8088" />
+ <feComposite
+ result="result8"
+ in="result6"
+ operator="xor"
+ in2="result4"
+ id="feComposite8090" />
+ <feComposite
+ in="result4"
+ result="fbSourceGraphic"
+ operator="atop"
+ in2="result8"
+ id="feComposite8092" />
+ <feSpecularLighting
+ in="fbSourceGraphic"
+ result="result1"
+ lighting-color="#ffffff"
+ surfaceScale="3"
+ specularConstant="1.29999995"
+ specularExponent="10"
+ id="feSpecularLighting8094">
+ <feDistantLight
+ elevation="55"
+ azimuth="235"
+ id="feDistantLight8096" />
+ </feSpecularLighting>
+ <feComposite
+ in="result1"
+ result="result2"
+ operator="atop"
+ in2="fbSourceGraphic"
+ id="feComposite8098" />
+ <feComposite
+ k4="0"
+ k1="0"
+ in="fbSourceGraphic"
+ result="result4"
+ operator="arithmetic"
+ k2="1"
+ k3="1"
+ in2="result2"
+ id="feComposite8100" />
+ <feComposite
+ result="result9"
+ in="result4"
+ operator="over"
+ in2="SourceGraphic"
+ id="feComposite8102" />
+ <feBlend
+ mode="multiply"
+ in2="result2"
+ id="feBlend8104" />
+ </filter>
+ <linearGradient
+ y2="15.76232"
+ x2="40.867283"
+ y1="43.375023"
+ x1="41.195095"
+ gradientTransform="matrix(1,0,0,0.99208547,467.42198,-26.672132)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3419"
+ xlink:href="#linearGradient2817"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2817">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop2819" />
+ <stop
+ id="stop2827"
+ offset="0.5"
+ style="stop-color:#323232;stop-opacity:1;" />
+ <stop
+ id="stop2825"
+ offset="0.5"
+ style="stop-color:#969696;stop-opacity:1;" />
+ <stop
+ style="stop-color:#c8c8c8;stop-opacity:1;"
+ offset="1"
+ id="stop2821" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-9" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2817"
+ id="linearGradient2823"
+ x1="41.195095"
+ y1="43.375023"
+ x2="40.867283"
+ y2="15.76232"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.99208547,0,0.12475137)" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.1050113,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-1"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601-1"
+ id="linearGradient3038"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.020055,0,0,1.5515391,-20.57345,-103.04903)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.084"
+ inkscape:cx="375"
+ inkscape:cy="21.919539"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="750"
+ height="77"
+ x="0"
+ y="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,27 V 77 H 750 V 27 Z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818-5"
+ width="130"
+ height="100"
+ x="420.48553"
+ y="10.160921" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,26 v 1 h 750 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3611-8"
+ width="750"
+ height="77"
+ x="0"
+ y="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ d="M -2.45e-6,27.000004 V 77 H 750 V 27.000004 Z"
+ id="rect2818-4"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ id="path3042-2"
+ d="m 0,26 v 1 h 750 v -1 z"
+ style="fill:#404040;fill-opacity:1;stroke:none" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="129"
+ height="22"
+ sodipodi:docname="preferencesbutton_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1004">
+ <stop
+ id="stop1002"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000"
+ offset="1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004"
+ id="linearGradient998"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.5675029"
+ inkscape:cx="36.241813"
+ inkscape:cy="16.266566"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.77798724;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="118.22201"
+ height="20.222013"
+ x="4.8889937"
+ y="0.88899362"
+ ry="1.4501842" />
+ <rect
+ ry="1.5253752"
+ y="0.75148147"
+ x="4.5212827"
+ height="21.270512"
+ width="117.95779"
+ id="rect3685"
+ style="fill:none;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,21 v 1 h 129 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient998);fill-opacity:1;stroke:none"
+ id="rect3611-3-64"
+ width="129"
+ height="22"
+ x="-3.2065964e-06"
+ y="-2.4816895e-06" />
+ <path
+ style="fill:#000000;stroke:#000000;stroke-width:0.67643523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 8.9419086e-4,21.338212 128.99911,21.661782"
+ id="path1588-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.31900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.94068,22.050092 V 0.1094078 H 0.05931795 V 22.050092"
+ id="rect3611-3-6-8-5-5-2-8"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="129"
+ height="22"
+ sodipodi:docname="preferencesbutton_dnhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700-1"
+ inkscape:collect="always">
+ <stop
+ id="stop3702-0"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704-5"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ gradientTransform="matrix(5.2708418,0,0,0.86899372,0.97674708,0.29101291)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3096"
+ xlink:href="#linearGradient3700-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient1004-2">
+ <stop
+ id="stop1002-1"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000-5"
+ offset="1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(0.2696455,-110.83631)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1304"
+ id="linearGradient1306"
+ x1="60.780979"
+ y1="110.97555"
+ x2="60.780979"
+ y2="132.5325"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient1304">
+ <stop
+ style="stop-color:#5f8dd3;stop-opacity:0.53117651"
+ offset="0"
+ id="stop1300" />
+ <stop
+ style="stop-color:#3771c8;stop-opacity:0.31999999"
+ offset="1"
+ id="stop1302" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(4.5e-6,-4.9985695e-6)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004-2"
+ id="linearGradient998-3-1-7"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.5775194"
+ inkscape:cx="3.562826"
+ inkscape:cy="11"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient3096);fill-opacity:1;stroke:none"
+ d="m 14.483277,1.1600067 c -4.6069244,0 -8.235686,0.5982674 -8.235686,1.3578023 v 6.653233 c 14.559716,1.570518 34.260207,2.525513 56.002692,2.525513 23.816778,0 45.122317,-1.143791 59.955817,-2.9871654 V 2.517809 c 0,-0.7595349 -3.62875,-1.3578023 -8.23567,-1.3578023 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.77798724;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="118.22201"
+ height="20.222013"
+ x="4.8889937"
+ y="0.88899362"
+ ry="1.4501842" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,21 v 1 h 129 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient998-3-1-7);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-9-1-3"
+ width="129"
+ height="22"
+ x="-2.822876e-06"
+ y="-9.7712746e-06" />
+ <rect
+ style="fill:url(#linearGradient1306);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-8-0-2"
+ width="129"
+ height="22"
+ x="-2.822876e-06"
+ y="-9.7712746e-06" />
+ <path
+ style="fill:#000000;stroke:#000000;stroke-width:0.67643523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 8.925e-4,21.338205 128.9991,21.661775"
+ id="path1588-6-0-1"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.31900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.94068,22.050095 V 0.109405 H 0.0593175 v 21.94069"
+ id="rect3611-3-6-8-5-5-2-8-9-7-5"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="129"
+ height="22"
+ sodipodi:docname="preferencesbutton_dnlo.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_dnlo.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1004">
+ <stop
+ id="stop1002"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000"
+ offset="1"
+ style="stop-color:#141414;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004"
+ id="linearGradient998-0"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(2.380127e-5,5.4789429e-6)" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.5347789"
+ inkscape:cx="35.176661"
+ inkscape:cy="24.54848"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <rect
+ ry="1.5253752"
+ y="0.75148147"
+ x="4.5212827"
+ height="21.270512"
+ width="117.95779"
+ id="rect3685"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,21 v 1 h 129 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.77798724;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="118.22201"
+ height="20.222013"
+ x="4.8889937"
+ y="0.88899362"
+ ry="1.4501842" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient998-0);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-4-2"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.51899999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.94068,22.100095 V 0.159405 H 0.05932 v 21.94069"
+ id="rect3611-3-6-8-5-5-2-8-6-20"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-2.246809"
+ y="-16.150911"
+ id="text1181-1"><tspan
+ sodipodi:role="line"
+ id="tspan1179-5"
+ x="-2.246809"
+ y="-16.150911">see: preferencesbutton_up</tspan><tspan
+ sodipodi:role="line"
+ x="-2.246809"
+ y="8.8490887"
+ id="tspan1437" /></text>
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.70853,22.000016 V 0.2914845 H 0.291472 V 22.000016"
+ id="rect3611-3-6-8-5-5-2-8-6-3-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="129"
+ height="22"
+ sodipodi:docname="preferencesbutton_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="dnlo-1">
+ <stop
+ style="stop-color:#5f8dd3;stop-opacity:0.53117651"
+ offset="0"
+ id="stop1300" />
+ <stop
+ style="stop-color:#3771c8;stop-opacity:0.31999999"
+ offset="1"
+ id="stop1302" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004"
+ id="linearGradient998"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-128.99999,-21.999996)" />
+ <linearGradient
+ id="linearGradient1004">
+ <stop
+ id="stop1002"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-0.65190283,78.468349)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004-2"
+ id="linearGradient998-3"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1004-2">
+ <stop
+ id="stop1002-1"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000-5"
+ offset="1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-0.26964022,110.83631)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004-2"
+ id="linearGradient998-3-1"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#dnlo-1"
+ id="linearGradient1306"
+ x1="60.780979"
+ y1="110.97555"
+ x2="60.780979"
+ y2="132.5325"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1004-0"
+ id="linearGradient998-0-8"
+ x1="67.760078"
+ y1="22.142033"
+ x2="67.760078"
+ y2="0.10556406"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-0.46056783,146.30378)" />
+ <linearGradient
+ id="linearGradient1004-0">
+ <stop
+ id="stop1002-5"
+ offset="0"
+ style="stop-color:#262626;stop-opacity:1" />
+ <stop
+ id="stop1000-6"
+ offset="1"
+ style="stop-color:#141414;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.045"
+ inkscape:cx="64.5"
+ inkscape:cy="-98.757515"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="92.780683,55.98292"
+ orientation="0,1"
+ id="guide1373"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="185.92031,-217.94486"
+ orientation="0,1"
+ id="guide1375"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <rect
+ ry="1.5253752"
+ y="0.75148147"
+ x="4.5212827"
+ height="21.270512"
+ width="117.95779"
+ id="rect3685"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,21 v 1 h 129 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.77798724;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="118.22201"
+ height="20.222013"
+ x="4.8889937"
+ y="0.88899362"
+ ry="1.4501842" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="all">
+ <rect
+ style="fill:url(#linearGradient998-3-1);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-9-1"
+ width="129"
+ height="22"
+ x="-0.26964864"
+ y="110.8363" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-119.49512"
+ y="93.228149"
+ id="text1181"><tspan
+ sodipodi:role="line"
+ id="tspan1179"
+ x="-119.49512"
+ y="93.228149">preferencesbutton_dn</tspan></text>
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3611-3-64-2"
+ width="129"
+ height="22"
+ x="-0.8004083"
+ y="45.921467" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none"
+ id="rect3611-3-64-8"
+ width="129"
+ height="22"
+ x="-0.8004083"
+ y="45.921467" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-128.34929"
+ y="58.970509"
+ id="text1238"><tspan
+ sodipodi:role="line"
+ id="tspan1236"
+ x="-128.34929"
+ y="58.970509">preferencesbutton_uphi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-128.45346"
+ y="127.48579"
+ id="text1321"><tspan
+ sodipodi:role="line"
+ id="tspan1319"
+ x="-128.45346"
+ y="127.48579">preferencesbutton_dnhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-127.57206"
+ y="160.80652"
+ id="text1325"><tspan
+ sodipodi:role="line"
+ id="tspan1323"
+ x="-127.57206"
+ y="160.80652">preferencesbutton_dnlo</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="7.9742541"
+ y="-9.6059685"
+ id="text1181-1"><tspan
+ sodipodi:role="line"
+ id="tspan1179-5"
+ x="7.9742541"
+ y="-9.6059685">preferencesbutton_up</tspan><tspan
+ sodipodi:role="line"
+ x="7.9742541"
+ y="15.394032"
+ id="tspan1437" /></text>
+ <rect
+ style="fill:url(#linearGradient1306);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-8-0"
+ width="129"
+ height="22"
+ x="-0.26964864"
+ y="110.8363" />
+ <rect
+ style="fill:url(#linearGradient998);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-4"
+ width="129"
+ height="22"
+ x="-129"
+ y="-21.999998"
+ transform="scale(-1)" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.519;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.94068,22.050092 V 0.109408 H 0.0593185 v 21.940684"
+ id="rect3611-3-6-8-5-5-2-8-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.51584888;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 127.94167,67.921468 V 46.179392 H -0.54248658 v 21.742076"
+ id="rect3611-3-6-8-5-5-2-8-6-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient998-3);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-9"
+ width="129"
+ height="22"
+ x="-0.65191078"
+ y="78.468338" />
+ <path
+ style="fill:#000000;stroke:#000000;stroke-width:0.67643523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M -0.65100283,99.806557 128.34721,100.13013"
+ id="path1588-6"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.31900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.28878,100.51845 V 78.577757 H -0.59258283 v 21.940693"
+ id="rect3611-3-6-8-5-5-2-8-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:#000000;stroke:#000000;stroke-width:0.67643523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M -0.2687523,132.17452 128.72945,132.49809"
+ id="path1588-6-0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.31900001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.67103,132.88641 V 110.94572 H -0.2103273 v 21.94069"
+ id="rect3611-3-6-8-5-5-2-8-9-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="24.109127"
+ y="-35.849518"
+ id="text1817-2"><tspan
+ sodipodi:role="line"
+ id="tspan1815-7"
+ x="24.109127"
+ y="-35.849518">s.a: menubar_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="151.67183"
+ y="12.214721"
+ id="text2448"><tspan
+ sodipodi:role="line"
+ id="tspan2446"
+ x="151.67183"
+ y="12.214721">Flach u. unten offen wenn oben</tspan></text>
+ <rect
+ style="fill:url(#linearGradient998-0-8);fill-opacity:1;stroke:none"
+ id="rect3611-3-64-4-2-6"
+ width="129"
+ height="22"
+ x="-0.46059215"
+ y="146.30379" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.51899999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.48009,168.40387 V 146.46318 H -0.40127083 v 21.94069"
+ id="rect3611-3-6-8-5-5-2-8-6-20-4"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.24794,168.30379 V 146.59526 H -0.16911883 v 21.70853"
+ id="rect3611-3-6-8-5-5-2-8-6-3-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="129"
+ height="22"
+ sodipodi:docname="preferencesbutton_uphi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preferencesbutton_uphi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3700-1"
+ inkscape:collect="always">
+ <stop
+ id="stop3702-0"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704-5"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ y2="-0.12475099"
+ x2="12"
+ y1="24.066484"
+ x1="12"
+ gradientTransform="matrix(5.2708418,0,0,0.86899372,0.53998477,0.74965215)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3096"
+ xlink:href="#linearGradient3700-1"
+ inkscape:collect="always" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.7712435"
+ inkscape:cx="-24.274307"
+ inkscape:cy="19.540884"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="129"
+ height="22"
+ x="0"
+ y="0" />
+ <rect
+ ry="1.5253752"
+ y="0.75148147"
+ x="4.5212827"
+ height="21.270512"
+ width="117.95779"
+ id="rect3685"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,21 v 1 h 129 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient3096);fill-opacity:1;stroke:none"
+ d="m 14.046515,1.6186459 c -4.6069236,0 -8.2356852,0.5982674 -8.2356852,1.3578023 V 9.6296808 C 20.370545,11.200198 40.071037,12.155194 61.813522,12.155194 c 23.816778,0 45.122318,-1.143792 59.955818,-2.9871652 V 2.9764482 c 0,-0.7595349 -3.62875,-1.3578023 -8.23567,-1.3578023 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#4d4d4d;stroke-width:1.77798724;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="118.22201"
+ height="20.222013"
+ x="4.8889937"
+ y="0.88899362"
+ ry="1.4501842" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3611-3-64-2"
+ width="129"
+ height="22"
+ x="-1.6054687e-06"
+ y="5.0904464e-07" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none"
+ id="rect3611-3-64-8"
+ width="129"
+ height="22"
+ x="-1.6054687e-06"
+ y="5.0904464e-07" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.51584888;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 128.74208,22 V 0.25792393 H 0.2579215 V 22"
+ id="rect3611-3-6-8-5-5-2-8-6-2"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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="18"
+ height="18"
+ id="svg2902"
+ sodipodi:version="0.32"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ version="1.0"
+ sodipodi:docname="preset_edit0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit0.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs2904">
+ <filter
+ id="filter2826-2"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur2828-1"
+ stdDeviation="2.40001"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ id="filter2826-2-2"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur2828-1-1"
+ stdDeviation="2.40001"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ id="filter2826-2-22"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur2828-1-0"
+ stdDeviation="2.40001"
+ inkscape:collect="always" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.3751956"
+ inkscape:cx="-190.59101"
+ inkscape:cy="39.943734"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:document-units="px"
+ inkscape:grid-bbox="true"
+ inkscape:window-width="1440"
+ inkscape:window-height="747"
+ inkscape:window-x="0"
+ inkscape:window-y="44"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata2907">
+ <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:source>kapptemplate (Teil des KDE Software Development Kits)</dc:source>
+ <dc:description>Neu angelegt.</dc:description>
+ <dc:date>2018-08-08</dc:date>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ transform="translate(0,-110)">
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path3206"
+ d="m 57.755914,-66.786653 v -1.084093 z"
+ style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="layer4"
+ inkscape:label="box"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <g
+ id="layer5"
+ inkscape:label="zip_app"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect1327"
+ width="0.42642391"
+ height="0"
+ x="98.898239"
+ y="-34.571198" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect2482"
+ width="0.42642391"
+ height="0"
+ x="83.919319"
+ y="-45.249413" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ id="g4640" />
+ <g
+ id="g4646"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ style="opacity:0.40163933" />
+ <g
+ id="g4730"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ style="opacity:0.40163933" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ id="g4748" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect141157"
+ width="1"
+ height="0"
+ x="91.532806"
+ y="-4.5525904" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path2197"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="Frame_copy"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g3978">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image3980" />
+ <g
+ id="g3982">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3984" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="Frame_copy_1_"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="Frame_copy_2"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3988" />
+ <g
+ style="display:inline"
+ id="Frame_copy_2_1_"
+ display="inline" />
+ </g>
+ <g
+ id="Foreground_Grid_1_"
+ transform="matrix(0.333692,0,0,0.333692,-701.82355,-198.62451)" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path5382"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="g5388"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g5390">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image5392" />
+ <g
+ id="g5394">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5396" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="g5398"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="g5400"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5402" />
+ <g
+ style="display:inline"
+ id="g5404"
+ display="inline" />
+ </g>
+ <g
+ id="g5675"
+ transform="matrix(0.333692,0,0,0.333692,-1912.0652,-230.23105)" />
+ <g
+ transform="matrix(0.5,0,0,0.5,-118.96009,-154.70786)"
+ id="Livello_1" />
+ <path
+ d="m 265.71479,-171.21229 v -12.002 l -12.439,-0.415 c -0.552,-4.127 -1.622,-8.089 -3.153,-11.816 l 10.555,-6.572 -6,-10.394 -10.981,5.861 c -2.503,-3.236 -5.408,-6.142 -8.645,-8.645 l 5.861,-10.981 -10.393,-5.999 -6.572,10.555 c -3.728,-1.532 -7.689,-2.603 -11.817,-3.155 l -0.416,-12.439 h -12 l -0.415,12.439 c -4.128,0.552 -8.09,1.623 -11.817,3.154 l -6.572,-10.554 -10.393,6 5.861,10.981 c -3.236,2.503 -6.142,5.409 -8.646,8.646 l -10.981,-5.861 -6,10.392 10.556,6.573 c -1.532,3.727 -2.603,7.689 -3.154,11.817 l -12.439,0.413 -0.001,12 12.44,0.415 c 0.552,4.128 1.623,8.09 3.154,11.817 l -10.555,6.573 5.999,10.393 10.983,-5.862 c 2.503,3.236 5.409,6.143 8.646,8.646 l -5.862,10.982 10.392,6 6.573,-10.557 c 3.727,1.531 7.689,2.603 11.817,3.154 l 0.414,12.439 h 12 l 0.415,-12.439 c 4.128,-0.552 8.09,-1.622 11.816,-3.154 l 6.572,10.556 10.393,-6 -5.861,-10.983 c 3.235,-2.503 6.142,-5.409 8.645,-8.645 l 10.981,5.861 6.001,-10.393 -10.556,-6.572 c 1.531,-3.727 2.603,-7.688 3.154,-11.816 z m -60,23.998 c -16.542,0 -30,-13.458 -30,-30 0,-16.542 13.458,-30 30,-30 16.542,0 30,13.458 30,30 0,16.542 -13.458,30 -30,30 z"
+ id="path6-9"
+ style="filter:url(#filter2826-2)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.14037062,0,0,0.13543115,-19.876243,143.00034)" />
+ <path
+ d="m 17.422309,119.67744 v -1.62545 l -1.74607,-0.0561 c -0.07748,-0.55892 -0.227682,-1.09551 -0.442589,-1.60026 l 1.481613,-0.89005 -0.842225,-1.40768 -1.541409,0.79376 c -0.351349,-0.43825 -0.759125,-0.83181 -1.213504,-1.1708 l 0.822711,-1.48717 -1.45887,-0.81245 -0.922517,1.42948 c -0.523301,-0.20748 -1.07931,-0.35253 -1.6587598,-0.42729 l -0.05839,-1.68464 H 8.1578481 l -0.058255,1.68464 c -0.57945,0.0748 -1.1355985,0.21981 -1.6587596,0.42717 l -0.9225159,-1.42936 -1.4588714,0.81258 0.8227116,1.48717 c -0.454239,0.33899 -0.8621561,0.73255 -1.2136447,1.17095 l -1.5414092,-0.79376 -0.8422237,1.4074 1.4817524,0.89018 c -0.2150489,0.50475 -0.3653849,1.04133 -0.4427298,1.6004 l -1.74606947,0.0559 -1.4051e-4,1.62518 1.74620998,0.0561 c 0.077485,0.55907 0.2278214,1.09565 0.4427298,1.60039 l -1.4816118,0.8902 0.8420831,1.40753 1.5416902,-0.7939 c 0.3513481,0.43826 0.7592653,0.83196 1.2136447,1.17094 l -0.8228522,1.48732 1.458731,0.81258 0.9226563,-1.42976 c 0.5231612,0.20736 1.0793097,0.35253 1.6587596,0.42716 l 0.058113,1.68463 h 1.6844467 l 0.05826,-1.68463 c 0.5794498,-0.0748 1.1355978,-0.21968 1.6586188,-0.42716 l 0.922516,1.42962 1.458871,-0.81259 -0.822713,-1.48744 c 0.4541,-0.33898 0.862157,-0.73255 1.213505,-1.1708 l 1.541409,0.79376 0.842364,-1.40753 -1.481753,-0.89006 c 0.214909,-0.50474 0.365387,-1.04119 0.442731,-1.60026 z m -8.4222371,3.25008 c -2.322011,0 -4.2111189,-1.82264 -4.2111189,-4.06294 0,-2.2403 1.8891079,-4.06293 4.2111189,-4.06293 2.3220111,0 4.2111181,1.82263 4.2111181,4.06293 0,2.2403 -1.889107,4.06294 -4.2111181,4.06294 z"
+ id="path13-9"
+ style="fill:#e6e4dd;fill-opacity:1;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -128.5433,91.928639 -10.03985,6.031313 0.41616,0.694394 9.9204,-5.959511 c -0.10772,-0.251305 -0.19487,-0.513002 -0.29671,-0.766196 z"
+ id="path53-9"
+ style="fill:#ffffff;stroke-width:0.96182883"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.5183188,111.55658 0.9225158,1.42948 c 0.5231613,-0.20748 1.0793097,-0.35254 1.6587598,-0.42716 l 0.058255,-1.68476 h 1.6844488 l 0.05826,1.68462 c 0.5794498,0.0748 1.1355978,0.21982 1.6587598,0.4273 l 0.922516,-1.42948 1.401458,0.78089 0.05726,-0.10371 -1.458591,-0.81271 -0.922516,1.42949 c -0.5233,-0.20749 -1.07931,-0.35255 -1.6587578,-0.42731 l -0.05839,-1.68462 H 8.1578481 l -0.058255,1.68462 c -0.57945,0.0748 -1.1355985,0.21982 -1.6587596,0.42716 l -0.9225159,-1.42934 -1.4588714,0.81258 0.057271,0.1037 z"
+ id="path55-9"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.16992,113.76248 -0.05194,0.094 c 0.454239,0.33898 0.862154,0.73254 1.213503,1.1708 l 1.541409,-0.79377 0.782568,1.308 0.05966,-0.0359 -0.842224,-1.40767 -1.541409,0.79376 c -0.337732,-0.42092 -0.728524,-0.79945 -1.161568,-1.12923 z"
+ id="path57-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 4.8303623,124.10239 -0.7707745,1.3933 0.057269,0.0318 0.7655822,-1.38384 c -0.017827,-0.0132 -0.034391,-0.0281 -0.052078,-0.0413 z"
+ id="path59-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.173713,119.05202 c -0.05532,3.23991 -2.802641,5.8597 -6.1736411,5.8597 -3.371141,0 -6.1183348,-2.61979 -6.1736407,-5.8597 -5.735e-4,0.033 -0.00266,0.066 -0.00266,0.0992 0,3.28583 2.7706351,5.95898 6.1763072,5.95898 3.4056726,0 6.1763066,-2.67315 6.1763066,-5.95898 0,-0.0332 -0.0021,-0.0662 -0.0027,-0.0992 z"
+ id="path61-9"
+ style="opacity:0.5;fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.676239,117.99593 c -0.072,-0.51912 -0.209012,-1.01763 -0.400057,-1.49042 l -0.04267,0.0256 c 0.214908,0.50475 0.365244,1.04119 0.442589,1.60025 l 1.74621,0.056 v -0.13544 z"
+ id="path63-3"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.233368,121.46919 1.422097,0.85431 0.05966,-0.0995 -1.439079,-0.86459 c -0.01488,0.0362 -0.02723,0.0737 -0.04267,0.10982 z"
+ id="path65-1"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 2.1272456,114.23338 1.5414092,0.79377 c 0.3513481,-0.43827 0.7592653,-0.83183 1.2136446,-1.17095 l -0.052077,-0.094 c -0.4329031,0.32977 -0.8239751,0.70829 -1.1615673,1.12934 l -1.5414092,-0.79375 -0.8422236,1.40739 0.059657,0.0359 z"
+ id="path67-4"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.117843,124.14369 0.76544,1.3837 0.05727,-0.0319 -0.770775,-1.39318 c -0.01755,0.0132 -0.0341,0.0282 -0.05194,0.0413 z"
+ id="path69-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -143.51642,69.801544 12.18041,-0.392073 c 0.53955,-3.899947 1.58926,-7.643064 3.08844,-11.164164 l -0.2967,-0.178559 c -1.33271,3.298138 -2.29038,6.776724 -2.79174,10.397968 l -12.18041,0.392074 -9.8e-4,11.337054 v 0 z"
+ id="path71-9"
+ style="fill:#ffffff;stroke-width:0.96182883"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -44.277411,109.37407 V 97.874071 l 13,5.749999 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+ <path
+ d="m 265.71479,-171.21229 v -12.002 l -12.439,-0.415 c -0.552,-4.127 -1.622,-8.089 -3.153,-11.816 l 10.555,-6.572 -6,-10.394 -10.981,5.861 c -2.503,-3.236 -5.408,-6.142 -8.645,-8.645 l 5.861,-10.981 -10.393,-5.999 -6.572,10.555 c -3.728,-1.532 -7.689,-2.603 -11.817,-3.155 l -0.416,-12.439 h -12 l -0.415,12.439 c -4.128,0.552 -8.09,1.623 -11.817,3.154 l -6.572,-10.554 -10.393,6 5.861,10.981 c -3.236,2.503 -6.142,5.409 -8.646,8.646 l -10.981,-5.861 -6,10.392 10.556,6.573 c -1.532,3.727 -2.603,7.689 -3.154,11.817 l -12.439,0.413 -0.001,12 12.44,0.415 c 0.552,4.128 1.623,8.09 3.154,11.817 l -10.555,6.573 5.999,10.393 10.983,-5.862 c 2.503,3.236 5.409,6.143 8.646,8.646 l -5.862,10.982 10.392,6 6.573,-10.557 c 3.727,1.531 7.689,2.603 11.817,3.154 l 0.414,12.439 h 12 l 0.415,-12.439 c 4.128,-0.552 8.09,-1.622 11.816,-3.154 l 6.572,10.556 10.393,-6 -5.861,-10.983 c 3.235,-2.503 6.142,-5.409 8.645,-8.645 l 10.981,5.861 6.001,-10.393 -10.556,-6.572 c 1.531,-3.727 2.603,-7.688 3.154,-11.816 z m -60,23.998 c -16.542,0 -30,-13.458 -30,-30 0,-16.542 13.458,-30 30,-30 16.542,0 30,13.458 30,30 0,16.542 -13.458,30 -30,30 z"
+ id="path6-9-0"
+ style="filter:url(#filter2826-2-2)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.14037062,0,0,0.13543115,-19.906745,167.93439)" />
+ <path
+ d="m 17.391807,144.61149 v -1.62545 l -1.74607,-0.0561 c -0.07748,-0.55892 -0.227682,-1.09551 -0.442589,-1.60026 l 1.481613,-0.89005 -0.842225,-1.40768 -1.54141,0.79376 c -0.351349,-0.43825 -0.759125,-0.83181 -1.213504,-1.1708 l 0.822711,-1.48717 -1.45887,-0.81245 -0.922517,1.42948 c -0.523301,-0.20748 -1.07931,-0.35253 -1.6587587,-0.42729 l -0.05839,-1.68464 H 8.1273459 l -0.058255,1.68464 c -0.57945,0.0748 -1.1355985,0.21981 -1.6587596,0.42717 l -0.9225159,-1.42936 -1.4588714,0.81258 0.8227116,1.48717 c -0.454239,0.33899 -0.8621561,0.73255 -1.2136447,1.17095 l -1.5414092,-0.79376 -0.8422237,1.4074 1.4817524,0.89018 c -0.2150489,0.50475 -0.3653849,1.04133 -0.4427298,1.6004 l -1.74606949,0.0559 -1.405e-4,1.62518 1.74620999,0.0561 c 0.077485,0.55907 0.2278214,1.09565 0.4427298,1.60039 l -1.4816118,0.8902 0.8420831,1.40753 1.5416902,-0.7939 c 0.3513481,0.43826 0.7592653,0.83196 1.2136447,1.17094 l -0.8228522,1.48732 1.458731,0.81258 0.9226563,-1.42976 c 0.5231612,0.20736 1.0793097,0.35253 1.6587596,0.42716 l 0.058113,1.68463 h 1.684447 l 0.05826,-1.68463 c 0.5794487,-0.0748 1.1355967,-0.21968 1.6586177,-0.42716 l 0.922516,1.42962 1.458871,-0.81259 -0.822713,-1.48744 c 0.4541,-0.33898 0.862157,-0.73255 1.213505,-1.1708 l 1.54141,0.79376 0.842364,-1.40753 -1.481753,-0.89006 c 0.214909,-0.50474 0.365387,-1.04119 0.442731,-1.60026 z m -8.4222377,3.25008 c -2.3220106,0 -4.2111185,-1.82264 -4.2111185,-4.06294 0,-2.2403 1.8891079,-4.06293 4.2111185,-4.06293 2.3220107,0 4.2111177,1.82263 4.2111177,4.06293 0,2.2403 -1.889107,4.06294 -4.2111177,4.06294 z"
+ id="path13-9-8"
+ style="fill:#5f8dd3;fill-opacity:1;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.4878166,136.49063 0.9225158,1.42948 c 0.5231613,-0.20748 1.0793097,-0.35254 1.6587598,-0.42716 l 0.058255,-1.68476 h 1.6844491 l 0.05826,1.68462 c 0.5794487,0.0748 1.1355967,0.21982 1.6587587,0.4273 l 0.922516,-1.42948 1.401458,0.78089 0.05726,-0.10371 -1.458591,-0.81271 -0.922516,1.42949 c -0.5233,-0.20749 -1.07931,-0.35255 -1.6587567,-0.42731 l -0.05839,-1.68462 H 8.1273459 l -0.058255,1.68462 c -0.57945,0.0748 -1.1355985,0.21982 -1.6587596,0.42716 l -0.9225159,-1.42934 -1.4588714,0.81258 0.057271,0.1037 z"
+ id="path55-9-9"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.139417,138.69653 -0.05194,0.094 c 0.454239,0.33898 0.862154,0.73254 1.213503,1.1708 l 1.54141,-0.79377 0.782568,1.308 0.05966,-0.0359 -0.842224,-1.40767 -1.54141,0.79376 c -0.337732,-0.42092 -0.728524,-0.79945 -1.161568,-1.12923 z"
+ id="path57-0-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 4.7998601,149.03644 -0.7707745,1.3933 0.057269,0.0318 0.7655822,-1.38384 c -0.017827,-0.0132 -0.034391,-0.0281 -0.052078,-0.0413 z"
+ id="path59-8-1"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.143211,143.98607 c -0.05532,3.23991 -2.802642,5.8597 -6.1736417,5.8597 -3.3711406,0 -6.1183344,-2.61979 -6.1736403,-5.8597 -5.735e-4,0.033 -0.00266,0.066 -0.00266,0.0992 0,3.28583 2.7706351,5.95898 6.1763073,5.95898 3.4056717,0 6.1763067,-2.67315 6.1763067,-5.95898 0,-0.0332 -0.0021,-0.0662 -0.0027,-0.0992 z"
+ id="path61-9-3"
+ style="opacity:0.5;fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.645737,142.92998 c -0.072,-0.51912 -0.209012,-1.01763 -0.400057,-1.49042 l -0.04267,0.0256 c 0.214908,0.50475 0.365244,1.04119 0.442589,1.60025 l 1.74621,0.056 v -0.13544 z"
+ id="path63-3-4"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.202866,146.40324 1.422097,0.85431 0.05966,-0.0995 -1.439079,-0.86459 c -0.01488,0.0362 -0.02723,0.0737 -0.04267,0.10982 z"
+ id="path65-1-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 2.0967434,139.16743 1.5414092,0.79377 c 0.3513481,-0.43827 0.7592653,-0.83183 1.2136446,-1.17095 l -0.052077,-0.094 c -0.4329031,0.32977 -0.8239751,0.70829 -1.1615673,1.12934 l -1.5414092,-0.79375 -0.8422236,1.40739 0.059657,0.0359 z"
+ id="path67-4-5"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.08734,149.07774 0.76544,1.3837 0.05727,-0.0319 -0.770775,-1.39318 c -0.01755,0.0132 -0.0341,0.0282 -0.05194,0.0413 z"
+ id="path69-8-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 265.71479,-171.21229 v -12.002 l -12.439,-0.415 c -0.552,-4.127 -1.622,-8.089 -3.153,-11.816 l 10.555,-6.572 -6,-10.394 -10.981,5.861 c -2.503,-3.236 -5.408,-6.142 -8.645,-8.645 l 5.861,-10.981 -10.393,-5.999 -6.572,10.555 c -3.728,-1.532 -7.689,-2.603 -11.817,-3.155 l -0.416,-12.439 h -12 l -0.415,12.439 c -4.128,0.552 -8.09,1.623 -11.817,3.154 l -6.572,-10.554 -10.393,6 5.861,10.981 c -3.236,2.503 -6.142,5.409 -8.646,8.646 l -10.981,-5.861 -6,10.392 10.556,6.573 c -1.532,3.727 -2.603,7.689 -3.154,11.817 l -12.439,0.413 -0.001,12 12.44,0.415 c 0.552,4.128 1.623,8.09 3.154,11.817 l -10.555,6.573 5.999,10.393 10.983,-5.862 c 2.503,3.236 5.409,6.143 8.646,8.646 l -5.862,10.982 10.392,6 6.573,-10.557 c 3.727,1.531 7.689,2.603 11.817,3.154 l 0.414,12.439 h 12 l 0.415,-12.439 c 4.128,-0.552 8.09,-1.622 11.816,-3.154 l 6.572,10.556 10.393,-6 -5.861,-10.983 c 3.235,-2.503 6.142,-5.409 8.645,-8.645 l 10.981,5.861 6.001,-10.393 -10.556,-6.572 c 1.531,-3.727 2.603,-7.688 3.154,-11.816 z m -60,23.998 c -16.542,0 -30,-13.458 -30,-30 0,-16.542 13.458,-30 30,-30 16.542,0 30,13.458 30,30 0,16.542 -13.458,30 -30,30 z"
+ id="path6-9-6"
+ style="filter:url(#filter2826-2-22)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.14037062,0,0,0.13543115,-20.223316,191.99375)" />
+ <path
+ d="m 17.075236,168.67085 v -1.62545 l -1.74607,-0.0561 c -0.07748,-0.55892 -0.227682,-1.09551 -0.442589,-1.60026 l 1.481613,-0.89005 -0.842225,-1.40768 -1.541409,0.79376 c -0.351349,-0.43825 -0.759125,-0.83181 -1.213504,-1.1708 l 0.822711,-1.48717 -1.45887,-0.81245 -0.922517,1.42948 c -0.523301,-0.20748 -1.07931,-0.35253 -1.6587592,-0.42729 l -0.05839,-1.68464 H 7.8107754 l -0.058255,1.68464 c -0.57945,0.0748 -1.1355985,0.21981 -1.6587596,0.42717 l -0.9225159,-1.42936 -1.4588714,0.81258 0.8227116,1.48717 c -0.454239,0.33899 -0.8621561,0.73255 -1.2136447,1.17095 l -1.5414092,-0.79376 -0.84222369,1.4074 1.48175239,0.89018 c -0.2150489,0.50475 -0.3653849,1.04133 -0.4427298,1.6004 l -1.74606956,0.0559 -1.4e-4,1.62518 1.74620956,0.0561 c 0.077485,0.55907 0.2278214,1.09565 0.4427298,1.60039 l -1.48161179,0.8902 0.84208309,1.40753 1.5416902,-0.7939 c 0.3513481,0.43826 0.7592653,0.83196 1.2136447,1.17094 l -0.8228522,1.48732 1.458731,0.81258 0.9226563,-1.42976 c 0.5231612,0.20736 1.0793097,0.35253 1.6587596,0.42716 l 0.058113,1.68463 h 1.684447 l 0.05826,-1.68463 c 0.5794492,-0.0748 1.1355972,-0.21968 1.6586182,-0.42716 l 0.922516,1.42962 1.458871,-0.81259 -0.822713,-1.48744 c 0.4541,-0.33898 0.862157,-0.73255 1.213505,-1.1708 l 1.541409,0.79376 0.842364,-1.40753 -1.481753,-0.89006 c 0.214909,-0.50474 0.365387,-1.04119 0.442731,-1.60026 z m -8.4222372,3.25008 c -2.3220106,0 -4.2111185,-1.82264 -4.2111185,-4.06294 0,-2.2403 1.8891079,-4.06293 4.2111185,-4.06293 2.3220112,0 4.2111182,1.82263 4.2111182,4.06293 0,2.2403 -1.889107,4.06294 -4.2111182,4.06294 z"
+ id="path13-9-3"
+ style="fill:#ffcc00;fill-opacity:1;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.1712461,160.54999 0.9225158,1.42948 c 0.5231613,-0.20748 1.0793097,-0.35254 1.6587598,-0.42716 l 0.058255,-1.68476 h 1.6844491 l 0.05826,1.68462 c 0.5794492,0.0748 1.1355972,0.21982 1.6587592,0.4273 l 0.922516,-1.42948 1.401458,0.78089 0.05726,-0.10371 -1.458591,-0.81271 -0.922516,1.42949 c -0.5233,-0.20749 -1.07931,-0.35255 -1.6587572,-0.42731 l -0.05839,-1.68462 H 7.8107754 l -0.058255,1.68462 c -0.57945,0.0748 -1.1355985,0.21982 -1.6587596,0.42716 l -0.9225159,-1.42934 -1.4588714,0.81258 0.057271,0.1037 z"
+ id="path55-9-6"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 12.822847,162.75589 -0.05194,0.094 c 0.454239,0.33898 0.862154,0.73254 1.213503,1.1708 l 1.541409,-0.79377 0.782568,1.308 0.05966,-0.0359 -0.842224,-1.40767 -1.541409,0.79376 c -0.337732,-0.42092 -0.728524,-0.79945 -1.161568,-1.12923 z"
+ id="path57-0-1"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 4.4832896,173.0958 -0.7707745,1.3933 0.057269,0.0318 0.7655822,-1.38384 c -0.017827,-0.0132 -0.034391,-0.0281 -0.052078,-0.0413 z"
+ id="path59-8-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 14.82664,168.04543 c -0.05532,3.23991 -2.802641,5.8597 -6.1736412,5.8597 -3.3711406,0 -6.1183344,-2.61979 -6.1736403,-5.8597 -5.735e-4,0.033 -0.00266,0.066 -0.00266,0.0992 0,3.28583 2.7706351,5.95898 6.1763073,5.95898 3.4056722,0 6.1763062,-2.67315 6.1763062,-5.95898 0,-0.0332 -0.0021,-0.0662 -0.0027,-0.0992 z"
+ id="path61-9-5"
+ style="opacity:0.5;fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.329166,166.98934 c -0.072,-0.51912 -0.209012,-1.01763 -0.400057,-1.49042 l -0.04267,0.0256 c 0.214908,0.50475 0.365244,1.04119 0.442589,1.60025 l 1.74621,0.056 v -0.13544 z"
+ id="path63-3-7"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 14.886295,170.4626 1.422097,0.85431 0.05966,-0.0995 -1.439079,-0.86459 c -0.01488,0.0362 -0.02723,0.0737 -0.04267,0.10982 z"
+ id="path65-1-4"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 1.7801729,163.22679 1.5414092,0.79377 c 0.3513481,-0.43827 0.7592653,-0.83183 1.2136446,-1.17095 l -0.052077,-0.094 c -0.4329031,0.32977 -0.8239751,0.70829 -1.1615673,1.12934 l -1.5414092,-0.79375 -0.84222359,1.40739 0.059657,0.0359 z"
+ id="path67-4-2"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 12.77077,173.1371 0.76544,1.3837 0.05727,-0.0319 -0.770775,-1.39318 c -0.01755,0.0132 -0.0341,0.0282 -0.05194,0.0413 z"
+ id="path69-8-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-70.489693"
+ y="143.93405"
+ id="text1492"><tspan
+ sodipodi:role="line"
+ id="tspan1490"
+ x="-70.489693"
+ y="143.93405">preset_edit1</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-69.856552"
+ y="165.35532"
+ id="text1496"><tspan
+ sodipodi:role="line"
+ id="tspan1494"
+ x="-69.856552"
+ y="165.35532">preset_edit2</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="39.465786"
+ y="159.97362"
+ id="text3626"><tspan
+ sodipodi:role="line"
+ id="tspan3624"
+ x="39.465786"
+ y="175.2211" /></text>
+ </g>
+</svg>
--- /dev/null
+<?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="18"
+ height="18"
+ id="svg2902"
+ sodipodi:version="0.32"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ version="1.0"
+ sodipodi:docname="preset_edit1.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit1.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs2904">
+ <filter
+ id="filter2826-2-2"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur2828-1-1"
+ stdDeviation="2.40001"
+ inkscape:collect="always" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.9448202"
+ inkscape:cx="-258.7207"
+ inkscape:cy="39.943734"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:document-units="px"
+ inkscape:grid-bbox="true"
+ inkscape:window-width="1440"
+ inkscape:window-height="747"
+ inkscape:window-x="0"
+ inkscape:window-y="44"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata2907">
+ <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:source>kapptemplate (Teil des KDE Software Development Kits)</dc:source>
+ <dc:description>Neu angelegt.</dc:description>
+ <dc:date>2018-08-08</dc:date>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ transform="translate(0,-110)">
+ <g
+ id="layer4"
+ inkscape:label="box"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <g
+ id="layer5"
+ inkscape:label="zip_app"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect1327"
+ width="0.42642391"
+ height="0"
+ x="98.898239"
+ y="-34.571198" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect2482"
+ width="0.42642391"
+ height="0"
+ x="83.919319"
+ y="-45.249413" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ id="g4640" />
+ <g
+ id="g4646"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ style="opacity:0.40163933" />
+ <g
+ id="g4730"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ style="opacity:0.40163933" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ id="g4748" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect141157"
+ width="1"
+ height="0"
+ x="91.532806"
+ y="-4.5525904" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path2197"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="Frame_copy"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g3978">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image3980" />
+ <g
+ id="g3982">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3984" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="Frame_copy_1_"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="Frame_copy_2"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3988" />
+ <g
+ style="display:inline"
+ id="Frame_copy_2_1_"
+ display="inline" />
+ </g>
+ <g
+ id="Foreground_Grid_1_"
+ transform="matrix(0.333692,0,0,0.333692,-701.82355,-198.62451)" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path5382"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="g5388"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g5390">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image5392" />
+ <g
+ id="g5394">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5396" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="g5398"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="g5400"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5402" />
+ <g
+ style="display:inline"
+ id="g5404"
+ display="inline" />
+ </g>
+ <g
+ id="g5675"
+ transform="matrix(0.333692,0,0,0.333692,-1912.0652,-230.23105)" />
+ <g
+ transform="matrix(0.5,0,0,0.5,-118.96009,-154.70786)"
+ id="Livello_1" />
+ <path
+ d="m 265.71479,-171.21229 v -12.002 l -12.439,-0.415 c -0.552,-4.127 -1.622,-8.089 -3.153,-11.816 l 10.555,-6.572 -6,-10.394 -10.981,5.861 c -2.503,-3.236 -5.408,-6.142 -8.645,-8.645 l 5.861,-10.981 -10.393,-5.999 -6.572,10.555 c -3.728,-1.532 -7.689,-2.603 -11.817,-3.155 l -0.416,-12.439 h -12 l -0.415,12.439 c -4.128,0.552 -8.09,1.623 -11.817,3.154 l -6.572,-10.554 -10.393,6 5.861,10.981 c -3.236,2.503 -6.142,5.409 -8.646,8.646 l -10.981,-5.861 -6,10.392 10.556,6.573 c -1.532,3.727 -2.603,7.689 -3.154,11.817 l -12.439,0.413 -0.001,12 12.44,0.415 c 0.552,4.128 1.623,8.09 3.154,11.817 l -10.555,6.573 5.999,10.393 10.983,-5.862 c 2.503,3.236 5.409,6.143 8.646,8.646 l -5.862,10.982 10.392,6 6.573,-10.557 c 3.727,1.531 7.689,2.603 11.817,3.154 l 0.414,12.439 h 12 l 0.415,-12.439 c 4.128,-0.552 8.09,-1.622 11.816,-3.154 l 6.572,10.556 10.393,-6 -5.861,-10.983 c 3.235,-2.503 6.142,-5.409 8.645,-8.645 l 10.981,5.861 6.001,-10.393 -10.556,-6.572 c 1.531,-3.727 2.603,-7.688 3.154,-11.816 z m -60,23.998 c -16.542,0 -30,-13.458 -30,-30 0,-16.542 13.458,-30 30,-30 16.542,0 30,13.458 30,30 0,16.542 -13.458,30 -30,30 z"
+ id="path6-9-0"
+ style="filter:url(#filter2826-2-2)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.14037062,0,0,0.13543115,-19.876243,143.00034)" />
+ <path
+ d="m 17.422309,119.67744 v -1.62545 l -1.74607,-0.0561 c -0.07748,-0.55892 -0.227682,-1.09551 -0.442589,-1.60026 l 1.481613,-0.89005 -0.842225,-1.40768 -1.54141,0.79376 c -0.351349,-0.43825 -0.759125,-0.83181 -1.213504,-1.1708 l 0.822711,-1.48717 -1.45887,-0.81245 -0.922517,1.42948 c -0.523301,-0.20748 -1.07931,-0.35253 -1.6587585,-0.42729 l -0.05839,-1.68464 H 8.1578481 l -0.058255,1.68464 c -0.57945,0.0748 -1.1355985,0.21981 -1.6587596,0.42717 l -0.9225159,-1.42936 -1.4588714,0.81258 0.8227116,1.48717 c -0.454239,0.33899 -0.8621561,0.73255 -1.2136447,1.17095 l -1.5414092,-0.79376 -0.8422237,1.4074 1.4817524,0.89018 c -0.2150489,0.50475 -0.3653849,1.04133 -0.4427298,1.6004 l -1.74606947,0.0559 -1.405e-4,1.62518 1.74620997,0.0561 c 0.077485,0.55907 0.2278214,1.09565 0.4427298,1.60039 l -1.4816118,0.8902 0.8420831,1.40753 1.5416902,-0.7939 c 0.3513481,0.43826 0.7592653,0.83196 1.2136447,1.17094 l -0.8228522,1.48732 1.458731,0.81258 0.9226563,-1.42976 c 0.5231612,0.20736 1.0793097,0.35253 1.6587596,0.42716 l 0.058113,1.68463 h 1.684447 l 0.05826,-1.68463 c 0.5794485,-0.0748 1.1355965,-0.21968 1.6586175,-0.42716 l 0.922516,1.42962 1.458871,-0.81259 -0.822713,-1.48744 c 0.4541,-0.33898 0.862157,-0.73255 1.213505,-1.1708 l 1.54141,0.79376 0.842364,-1.40753 -1.481753,-0.89006 c 0.214909,-0.50474 0.365387,-1.04119 0.442731,-1.60026 z m -8.4222375,3.25008 c -2.3220106,0 -4.2111185,-1.82264 -4.2111185,-4.06294 0,-2.2403 1.8891079,-4.06293 4.2111185,-4.06293 2.3220105,0 4.2111175,1.82263 4.2111175,4.06293 0,2.2403 -1.889107,4.06294 -4.2111175,4.06294 z"
+ id="path13-9-8"
+ style="fill:#5f8dd3;fill-opacity:1;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.5183188,111.55658 0.9225158,1.42948 c 0.5231613,-0.20748 1.0793097,-0.35254 1.6587598,-0.42716 l 0.058255,-1.68476 h 1.6844491 l 0.05826,1.68462 c 0.5794485,0.0748 1.1355965,0.21982 1.6587585,0.4273 l 0.922516,-1.42948 1.401458,0.78089 0.05726,-0.10371 -1.458591,-0.81271 -0.922516,1.42949 c -0.5233,-0.20749 -1.07931,-0.35255 -1.6587565,-0.42731 l -0.05839,-1.68462 H 8.1578481 l -0.058255,1.68462 c -0.57945,0.0748 -1.1355985,0.21982 -1.6587596,0.42716 l -0.9225159,-1.42934 -1.4588714,0.81258 0.057271,0.1037 z"
+ id="path55-9-9"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.169919,113.76248 -0.05194,0.094 c 0.454239,0.33898 0.862154,0.73254 1.213503,1.1708 l 1.54141,-0.79377 0.782568,1.308 0.05966,-0.0359 -0.842224,-1.40767 -1.54141,0.79376 c -0.337732,-0.42092 -0.728524,-0.79945 -1.161568,-1.12923 z"
+ id="path57-0-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 4.8303623,124.10239 -0.7707745,1.3933 0.057269,0.0318 0.7655822,-1.38384 c -0.017827,-0.0132 -0.034391,-0.0281 -0.052078,-0.0413 z"
+ id="path59-8-1"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.173713,119.05202 c -0.05532,3.23991 -2.802642,5.8597 -6.1736415,5.8597 -3.3711406,0 -6.1183344,-2.61979 -6.1736403,-5.8597 -5.735e-4,0.033 -0.00266,0.066 -0.00266,0.0992 0,3.28583 2.7706351,5.95898 6.1763073,5.95898 3.4056715,0 6.1763065,-2.67315 6.1763065,-5.95898 0,-0.0332 -0.0021,-0.0662 -0.0027,-0.0992 z"
+ id="path61-9-3"
+ style="opacity:0.5;fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.676239,117.99593 c -0.072,-0.51912 -0.209012,-1.01763 -0.400057,-1.49042 l -0.04267,0.0256 c 0.214908,0.50475 0.365244,1.04119 0.442589,1.60025 l 1.74621,0.056 v -0.13544 z"
+ id="path63-3-4"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.233368,121.46919 1.422097,0.85431 0.05966,-0.0995 -1.439079,-0.86459 c -0.01488,0.0362 -0.02723,0.0737 -0.04267,0.10982 z"
+ id="path65-1-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 2.1272456,114.23338 1.5414092,0.79377 c 0.3513481,-0.43827 0.7592653,-0.83183 1.2136446,-1.17095 l -0.052077,-0.094 c -0.4329031,0.32977 -0.8239751,0.70829 -1.1615673,1.12934 l -1.5414092,-0.79375 -0.8422236,1.40739 0.059657,0.0359 z"
+ id="path67-4-5"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.117842,124.14369 0.76544,1.3837 0.05727,-0.0319 -0.770775,-1.39318 c -0.01755,0.0132 -0.0341,0.0282 -0.05194,0.0413 z"
+ id="path69-8-8"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-70.700737"
+ y="118.81946"
+ id="text1492"><tspan
+ sodipodi:role="line"
+ x="-70.700737"
+ y="118.81946"
+ id="tspan3620">preset_edit1</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="18"
+ height="18"
+ id="svg2902"
+ sodipodi:version="0.32"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ version="1.0"
+ sodipodi:docname="preset_edit2.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/preset_edit2.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <defs
+ id="defs2904">
+ <filter
+ id="filter2826-2-22"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur2828-1-0"
+ stdDeviation="2.40001"
+ inkscape:collect="always" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9954591"
+ inkscape:cx="-19.737329"
+ inkscape:cy="59.966465"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:document-units="px"
+ inkscape:grid-bbox="true"
+ inkscape:window-width="1440"
+ inkscape:window-height="747"
+ inkscape:window-x="0"
+ inkscape:window-y="44"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata2907">
+ <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:source>kapptemplate (Teil des KDE Software Development Kits)</dc:source>
+ <dc:description>Neu angelegt.</dc:description>
+ <dc:date>2018-08-08</dc:date>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ transform="translate(0,-110)">
+ <g
+ id="layer4"
+ inkscape:label="box"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <g
+ id="layer5"
+ inkscape:label="zip_app"
+ style="display:inline"
+ transform="matrix(0.4264239,0,0,0.3879092,135.77085,-10.702116)" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect1327"
+ width="0.42642391"
+ height="0"
+ x="98.898239"
+ y="-34.571198" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect2482"
+ width="0.42642391"
+ height="0"
+ x="83.919319"
+ y="-45.249413" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ id="g4640" />
+ <g
+ id="g4646"
+ transform="matrix(-0.3338878,0,0,0.252482,-974.37772,192.65591)"
+ style="opacity:0.40163933" />
+ <g
+ id="g4730"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ style="opacity:0.40163933" />
+ <g
+ style="opacity:0.40163933"
+ transform="matrix(0.4264239,0,0,0.252482,390.58932,195.49843)"
+ id="g4748" />
+ <rect
+ style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
+ id="rect141157"
+ width="1"
+ height="0"
+ x="91.532806"
+ y="-4.5525904" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path2197"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="Frame_copy"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g3978">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image3980" />
+ <g
+ id="g3982">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3984" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="Frame_copy_1_"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="Frame_copy_2"
+ display="none"
+ transform="translate(951.03228,-327.22202)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle3988" />
+ <g
+ style="display:inline"
+ id="Frame_copy_2_1_"
+ display="inline" />
+ </g>
+ <g
+ id="Foreground_Grid_1_"
+ transform="matrix(0.333692,0,0,0.333692,-701.82355,-198.62451)" />
+ <path
+ style="fill:#000000"
+ d=""
+ id="path5382"
+ inkscape:connector-curvature="0" />
+ <g
+ style="display:none"
+ id="g5388"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <g
+ style="display:inline"
+ display="inline"
+ id="g5390">
+ <image
+ style="opacity:0.75"
+ width="571"
+ height="571"
+ xlink:href="data:image/png;base64,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"
+ id="image5392" />
+ <g
+ id="g5394">
+ <circle
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5396" />
+ </g>
+ </g>
+ <g
+ style="display:inline"
+ id="g5398"
+ display="inline" />
+ </g>
+ <g
+ style="display:none"
+ id="g5400"
+ display="none"
+ transform="translate(-259.20941,-358.82856)">
+ <circle
+ style="display:inline;fill:#ffffff"
+ display="inline"
+ cx="279.51501"
+ cy="278.93399"
+ r="275.909"
+ id="circle5402" />
+ <g
+ style="display:inline"
+ id="g5404"
+ display="inline" />
+ </g>
+ <g
+ id="g5675"
+ transform="matrix(0.333692,0,0,0.333692,-1912.0652,-230.23105)" />
+ <g
+ transform="matrix(0.5,0,0,0.5,-118.96009,-154.70786)"
+ id="Livello_1" />
+ <path
+ d="m 265.71479,-171.21229 v -12.002 l -12.439,-0.415 c -0.552,-4.127 -1.622,-8.089 -3.153,-11.816 l 10.555,-6.572 -6,-10.394 -10.981,5.861 c -2.503,-3.236 -5.408,-6.142 -8.645,-8.645 l 5.861,-10.981 -10.393,-5.999 -6.572,10.555 c -3.728,-1.532 -7.689,-2.603 -11.817,-3.155 l -0.416,-12.439 h -12 l -0.415,12.439 c -4.128,0.552 -8.09,1.623 -11.817,3.154 l -6.572,-10.554 -10.393,6 5.861,10.981 c -3.236,2.503 -6.142,5.409 -8.646,8.646 l -10.981,-5.861 -6,10.392 10.556,6.573 c -1.532,3.727 -2.603,7.689 -3.154,11.817 l -12.439,0.413 -0.001,12 12.44,0.415 c 0.552,4.128 1.623,8.09 3.154,11.817 l -10.555,6.573 5.999,10.393 10.983,-5.862 c 2.503,3.236 5.409,6.143 8.646,8.646 l -5.862,10.982 10.392,6 6.573,-10.557 c 3.727,1.531 7.689,2.603 11.817,3.154 l 0.414,12.439 h 12 l 0.415,-12.439 c 4.128,-0.552 8.09,-1.622 11.816,-3.154 l 6.572,10.556 10.393,-6 -5.861,-10.983 c 3.235,-2.503 6.142,-5.409 8.645,-8.645 l 10.981,5.861 6.001,-10.393 -10.556,-6.572 c 1.531,-3.727 2.603,-7.688 3.154,-11.816 z m -60,23.998 c -16.542,0 -30,-13.458 -30,-30 0,-16.542 13.458,-30 30,-30 16.542,0 30,13.458 30,30 0,16.542 -13.458,30 -30,30 z"
+ id="path6-9-6"
+ style="filter:url(#filter2826-2-22)"
+ inkscape:connector-curvature="0"
+ transform="matrix(0.14037062,0,0,0.13543115,-19.876243,143.00034)" />
+ <path
+ d="m 17.422309,119.67744 v -1.62545 l -1.74607,-0.0561 c -0.07748,-0.55892 -0.227682,-1.09551 -0.442589,-1.60026 l 1.481613,-0.89005 -0.842225,-1.40768 -1.541409,0.79376 c -0.351349,-0.43825 -0.759125,-0.83181 -1.213504,-1.1708 l 0.822711,-1.48717 -1.45887,-0.81245 -0.922517,1.42948 c -0.523301,-0.20748 -1.07931,-0.35253 -1.6587587,-0.42729 l -0.05839,-1.68464 H 8.1578487 l -0.058255,1.68464 c -0.57945,0.0748 -1.1355985,0.21981 -1.6587596,0.42717 l -0.9225159,-1.42936 -1.4588714,0.81258 0.8227116,1.48717 c -0.454239,0.33899 -0.8621561,0.73255 -1.2136447,1.17095 l -1.5414092,-0.79376 -0.8422237,1.4074 1.4817524,0.89018 c -0.2150489,0.50475 -0.3653849,1.04133 -0.4427298,1.6004 l -1.74606963,0.0559 -1.4e-4,1.62518 1.74620963,0.0561 c 0.077485,0.55907 0.2278214,1.09565 0.4427298,1.60039 l -1.4816118,0.8902 0.8420831,1.40753 1.5416902,-0.7939 c 0.3513481,0.43826 0.7592653,0.83196 1.2136447,1.17094 l -0.8228522,1.48732 1.458731,0.81258 0.9226563,-1.42976 c 0.5231612,0.20736 1.0793097,0.35253 1.6587596,0.42716 l 0.058113,1.68463 h 1.6844472 l 0.05826,-1.68463 c 0.5794487,-0.0748 1.1355967,-0.21968 1.6586177,-0.42716 l 0.922516,1.42962 1.458871,-0.81259 -0.822713,-1.48744 c 0.4541,-0.33898 0.862157,-0.73255 1.213505,-1.1708 l 1.541409,0.79376 0.842364,-1.40753 -1.481753,-0.89006 c 0.214909,-0.50474 0.365387,-1.04119 0.442731,-1.60026 z m -8.4222369,3.25008 c -2.3220106,0 -4.2111185,-1.82264 -4.2111185,-4.06294 0,-2.2403 1.8891079,-4.06293 4.2111185,-4.06293 2.3220109,0 4.2111179,1.82263 4.2111179,4.06293 0,2.2403 -1.889107,4.06294 -4.2111179,4.06294 z"
+ id="path13-9-3"
+ style="fill:#ffcc00;fill-opacity:1;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 5.5183194,111.55658 0.9225158,1.42948 c 0.5231613,-0.20748 1.0793097,-0.35254 1.6587598,-0.42716 l 0.058255,-1.68476 h 1.6844493 l 0.05826,1.68462 c 0.5794487,0.0748 1.1355967,0.21982 1.6587587,0.4273 l 0.922516,-1.42948 1.401458,0.78089 0.05726,-0.10371 -1.458591,-0.81271 -0.922516,1.42949 c -0.5233,-0.20749 -1.07931,-0.35255 -1.6587567,-0.42731 l -0.05839,-1.68462 H 8.1578487 l -0.058255,1.68462 c -0.57945,0.0748 -1.1355985,0.21982 -1.6587596,0.42716 l -0.9225159,-1.42934 -1.4588714,0.81258 0.057271,0.1037 z"
+ id="path55-9-6"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.16992,113.76248 -0.05194,0.094 c 0.454239,0.33898 0.862154,0.73254 1.213503,1.1708 l 1.541409,-0.79377 0.782568,1.308 0.05966,-0.0359 -0.842224,-1.40767 -1.541409,0.79376 c -0.337732,-0.42092 -0.728524,-0.79945 -1.161568,-1.12923 z"
+ id="path57-0-1"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 4.8303629,124.10239 -0.7707745,1.3933 0.057269,0.0318 0.7655822,-1.38384 c -0.017827,-0.0132 -0.034391,-0.0281 -0.052078,-0.0413 z"
+ id="path59-8-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.173713,119.05202 c -0.05532,3.23991 -2.802641,5.8597 -6.1736409,5.8597 -3.3711406,0 -6.1183344,-2.61979 -6.1736403,-5.8597 -5.735e-4,0.033 -0.00266,0.066 -0.00266,0.0992 0,3.28583 2.7706351,5.95898 6.1763073,5.95898 3.4056719,0 6.1763059,-2.67315 6.1763059,-5.95898 0,-0.0332 -0.0021,-0.0662 -0.0027,-0.0992 z"
+ id="path61-9-5"
+ style="opacity:0.5;fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.676239,117.99593 c -0.072,-0.51912 -0.209012,-1.01763 -0.400057,-1.49042 l -0.04267,0.0256 c 0.214908,0.50475 0.365244,1.04119 0.442589,1.60025 l 1.74621,0.056 v -0.13544 z"
+ id="path63-3-7"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 15.233368,121.46919 1.422097,0.85431 0.05966,-0.0995 -1.439079,-0.86459 c -0.01488,0.0362 -0.02723,0.0737 -0.04267,0.10982 z"
+ id="path65-1-4"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 2.1272462,114.23338 1.5414092,0.79377 C 4.0200035,114.58888 4.4279207,114.19532 4.8823,113.8562 l -0.052077,-0.094 c -0.4329031,0.32977 -0.8239751,0.70829 -1.1615673,1.12934 l -1.5414092,-0.79375 -0.8422236,1.40739 0.059657,0.0359 z"
+ id="path67-4-2"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 13.117843,124.14369 0.76544,1.3837 0.05727,-0.0319 -0.770775,-1.39318 c -0.01755,0.0132 -0.0341,0.0282 -0.05194,0.0413 z"
+ id="path69-8-0"
+ style="fill:#ffffff;stroke-width:0.13787878"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-70.278641"
+ y="123.56801"
+ id="text1496"><tspan
+ sodipodi:role="line"
+ id="tspan1494"
+ x="-70.278641"
+ y="123.56801">preset_edit2</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="prevedit.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/prevedit.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-09</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-09: neu.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible">
+ <path
+ id="path3615"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(1.1) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Tail"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Tail"
+ style="overflow:visible">
+ <g
+ id="g3633"
+ transform="scale(-1.2)">
+ <path
+ id="path3635"
+ d="M -3.8048674,-3.9585227 L 0.54352094,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3637"
+ d="M -1.2866832,-3.9585227 L 3.0617053,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3639"
+ d="M 1.3053582,-3.9585227 L 5.6537466,0"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3641"
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3643"
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ <path
+ id="path3645"
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round" />
+ </g>
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3621"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3752"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="44.750189"
+ inkscape:cx="2.2228227"
+ inkscape:cy="11.592389"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="g5044"
+ transform="matrix(-1.1322407,0,0,-1.7516247,6.415151,30.975974)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 12.007812,7.999999 -2.40625,4 2.40625,4 h 1.46875 l -1.875,-3.125 8.531251,0 -10e-7,-1.75 -8.53125,0 1.90625,-3.125 z"
+ id="rect5024"
+ sodipodi:nodetypes="cccccccccc" />
+ <g
+ id="g937"
+ transform="rotate(180,11.433594,12)">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect5026"
+ width="14"
+ height="1.3216982"
+ x="5"
+ y="5" />
+ <rect
+ y="17.678301"
+ x="5"
+ height="1.3216982"
+ width="14"
+ id="rect5063"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <rect
+ transform="rotate(90)"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98552984"
+ id="rect5026-9"
+ width="13.597767"
+ height="1.3216982"
+ x="5.1960373"
+ y="-16.566114" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="prevlabel.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/prevlabel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.666667"
+ inkscape:cx="-15.20339"
+ inkscape:cy="16.767495"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g936"
+ transform="matrix(-1,0,0,1,20.338983,20.542373)">
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.6574775;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 9.760837,-12.563767 c -0.0088,1.303597 -1.191753,2.6007141 -1.919529,2.6188731 l -5.6734339,0.0059 V -15.21363 H 7.829056 c 0.98634,0.03693 1.94056,1.346609 1.931781,2.649863 z"
+ id="rect2818-8"
+ sodipodi:nodetypes="cccccz"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:1.00822914"
+ d="m 14.338893,-13.104709 v 0.984801 6.1387317 h 0.999958 l -2.128943,1.938827 -1.999915,-1.938827 h 1.032214 V -12.119908 H 9.919724 v -0.984801 h 2.322483 z"
+ id="rect2825-0"
+ sodipodi:nodetypes="cccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ id="rect3196-4"
+ d="m 6.2698293,-7.8375129 v 1.174878 L 8.16331,-4.9737493 H 1.5439515 v 0.881159 H 8.16331 l -1.8934807,1.670528 v 1.174877 l 3.3644497,-3.285984 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.4096719;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="prevtip.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/prevtip.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.7428571"
+ inkscape:cx="-74.96822"
+ inkscape:cy="17.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 2">
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5"
+ d="M 26.49534,17.11967 27.5,8.2868688 7.4999999,17.133024 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02"
+ d="M 26.49534,17.880331 27.5,26.713131 7.4999999,17.866977 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.10995674;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path868-0"
+ d="M 26.5,17.504951 H 7.4999999"
+ style="display:inline;fill:#000000;fill-opacity:1;stroke:#131313;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="progress_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/progress_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="12.210937"
+ inkscape:cx="64"
+ inkscape:cy="7.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ ry="0"
+ y="0"
+ x="0"
+ height="15"
+ width="128"
+ id="rect3592"
+ style="fill:#333333;stroke:none" />
+ <rect
+ y="13"
+ x="0"
+ height="1"
+ width="128"
+ id="rect3626"
+ style="fill:#666666;fill-opacity:1;stroke:none" />
+ <rect
+ y="1"
+ x="0"
+ height="1"
+ width="128"
+ id="rect3598"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#4d4d4d;stroke:none"
+ d="M 0,0 V 15 H 128 V 0 Z m 3,1 h 122 c 0.554,0 1,0.446 1,1 v 11 c 0,0.554 -0.446,1 -1,1 H 3 C 2.446,14 2,13.554 2,13 V 2 C 2,1.446 2.446,1 3,1 Z"
+ id="rect5917"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ ry="0"
+ y="0"
+ x="0"
+ height="15"
+ width="128"
+ id="rect3592-4"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <rect
+ y="13"
+ x="5.4028317e-07"
+ height="1"
+ width="128"
+ id="rect3626-0"
+ style="fill:#404040;fill-opacity:1;stroke:none" />
+ <rect
+ y="1"
+ x="5.4028317e-07"
+ height="1"
+ width="128"
+ id="rect3598-3"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ d="M 1.225e-7,0 V 15 H 128 V 0 Z M 3.0000002,1 H 125 c 0.554,0 1,0.446 1,1 v 11 c 0,0.554 -0.446,1 -1,1 H 3.0000002 c -0.554,0 -1,-0.446 -1,-1 V 2 c 0,-0.554 0.446,-1 1,-1 z"
+ id="rect5917-9" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="progress_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/progress_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient943">
+ <stop
+ style="stop-color:#3771c8;stop-opacity:1"
+ offset="0"
+ id="stop939" />
+ <stop
+ style="stop-color:#162d50;stop-opacity:1"
+ offset="1"
+ id="stop941" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient925">
+ <stop
+ id="stop921"
+ offset="0"
+ style="stop-color:#d7e3f4;stop-opacity:1" />
+ <stop
+ id="stop923"
+ offset="1"
+ style="stop-color:#162d50;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3604">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3606" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3608" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3596">
+ <stop
+ style="stop-color:#00028f;stop-opacity:1;"
+ offset="0"
+ id="stop3598" />
+ <stop
+ style="stop-color:#000323;stop-opacity:1;"
+ offset="1"
+ id="stop3600" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient925"
+ id="linearGradient3602"
+ x1="65.81929"
+ y1="-25.015234"
+ x2="65.81929"
+ y2="-10.015234"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="linearGradient3610"
+ x1="65.8125"
+ y1="-15.90625"
+ x2="65.8125"
+ y2="-25"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3596"
+ id="linearGradient3617"
+ gradientUnits="userSpaceOnUse"
+ x1="65.81929"
+ y1="-25.015234"
+ x2="65.81929"
+ y2="-10.015234" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3596"
+ id="linearGradient3619"
+ gradientUnits="userSpaceOnUse"
+ x1="65.81929"
+ y1="-25.015234"
+ x2="65.81929"
+ y2="-10.015234" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="linearGradient3621"
+ gradientUnits="userSpaceOnUse"
+ x1="65.8125"
+ y1="-15.90625"
+ x2="65.8125"
+ y2="-25" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="linearGradient2831"
+ gradientUnits="userSpaceOnUse"
+ x1="65.8125"
+ y1="-15.90625"
+ x2="65.8125"
+ y2="-25"
+ gradientTransform="translate(-1.8125,25.015234)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3604"
+ id="linearGradient914"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-1.8158934,25.015234)"
+ x1="65.8125"
+ y1="-15.90625"
+ x2="65.8125"
+ y2="-25" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3596"
+ id="linearGradient916"
+ gradientUnits="userSpaceOnUse"
+ x1="65.81929"
+ y1="-25.015234"
+ x2="65.81929"
+ y2="-10.015234" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient943"
+ id="linearGradient965"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.07179798,0,0,10.704911,-8.3086135,110.33044)"
+ x1="7.7803235"
+ y1="-4.327961"
+ x2="115.55827"
+ y2="-4.327961" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.6339785"
+ inkscape:cx="64.513252"
+ inkscape:cy="7.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g2821"
+ style="fill:url(#linearGradient3619);fill-opacity:1"
+ transform="translate(-1.8125,25.015234)">
+ <rect
+ style="fill:url(#linearGradient3617);fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="128"
+ height="15"
+ x="1.8192898"
+ y="-25.015234"
+ ry="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccc"
+ style="opacity:0.3;fill:url(#linearGradient2831);fill-opacity:1;stroke:none"
+ d="M 0,0.015234 V 6.8098392 H 128 V 0.015234 Z"
+ id="rect2816"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="13"
+ x="0"
+ height="1"
+ width="128"
+ id="rect3626"
+ style="fill:#666666;fill-opacity:1;stroke:none" />
+ <rect
+ y="1"
+ x="0"
+ height="1"
+ width="128"
+ id="rect3598"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <g
+ id="g2837">
+ <g
+ id="g2833">
+ <g
+ id="g2830">
+ <path
+ id="rect5917"
+ d="M 0,0 V 15 H 128 V 0 Z m 3,1 h 122 c 0.554,0 1,0.446 1,1 v 11 c 0,0.554 -0.446,1 -1,1 H 3 C 2.446,14 2,13.554 2,13 V 2 C 2,1.446 2.446,1 3,1 Z"
+ style="fill:#4d4d4d;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <g
+ id="g2821-2"
+ style="fill:url(#linearGradient3602);fill-opacity:1"
+ transform="translate(-0.91501386,-2.7482354)">
+ <rect
+ style="fill:url(#linearGradient916);fill-opacity:1;stroke:none"
+ id="rect3592-8"
+ width="128"
+ height="15"
+ x="1.8192898"
+ y="-25.015234"
+ ry="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ style="opacity:0.3;fill:url(#linearGradient914);fill-opacity:1;stroke:none"
+ d="M -0.00339344,0.01523383 V 6.8098398 H 127.99661 V 0.01523383 Z"
+ id="rect2816-4" />
+ <g
+ id="g969">
+ <rect
+ transform="rotate(-90)"
+ y="2.4539041e-24"
+ x="-7.75"
+ height="128"
+ width="7.75"
+ id="rect927"
+ style="opacity:1;fill:url(#linearGradient965);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.17446196;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="matrix(-1,0,0,-1.0333333,128,15)"
+ id="use945"
+ xlink:href="#rect927"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="13"
+ x="-0.0033963656"
+ height="1"
+ width="128"
+ id="rect3626-7"
+ style="fill:#404040;fill-opacity:1;stroke:none" />
+ <rect
+ y="0.99999982"
+ x="-0.0033963656"
+ height="1"
+ width="128"
+ id="rect3598-2"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <g
+ id="g2837-4"
+ transform="translate(0.98277884,-1.3103701)">
+ <path
+ inkscape:connector-curvature="0"
+ id="rect5917-2"
+ d="M -0.98277768,1.3103702 V 16.31037 H 127.01722 V 1.3103702 Z m 2.99999998,1 H 124.01722 c 0.554,0 1,0.446 1,1 V 14.31037 c 0,0.554 -0.446,1 -1,1 H 2.0172223 c -0.554,0 -1,-0.446 -1,-1 V 3.3103702 c 0,-0.554 0.446,-1 1,-1 z"
+ style="fill:#262626;fill-opacity:1;stroke:none" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="45.749477"
+ y="31.330826"
+ id="text973"><tspan
+ sodipodi:role="line"
+ id="tspan971"
+ x="45.749477"
+ y="31.330826">draft</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="projector.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/projector.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.3015211"
+ inkscape:cx="-31.230758"
+ inkscape:cy="14.209074"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 11.583223,4.6382038 9.1885208,7.6243646 9.9253521,8.2400679 11.0613,6.8547355 l 0,4.6485595 0,0.430992 -4.850806,0 L 7.5920528,10.795236 6.9780267,10.056392 4,12.42685 6.9780267,14.858878 7.5920528,14.120034 6.210494,12.950198 l 4.850806,0 0,0.184711 0,4.648559 L 9.9253521,16.398136 9.1885208,17.013839 11.583223,20 l 2.394702,-2.986161 -0.736832,-0.615703 -1.166649,1.385332 0,-4.648559 0,-0.184711 4.912209,0 -1.381559,1.169836 0.614026,0.738844 2.947325,-2.432028 -2.947325,-2.370458 -0.614026,0.738844 1.381559,1.139051 -4.912209,0 0,-0.430992 0,-4.6485595 1.166649,1.3853324 0.736832,-0.6157033 -2.394702,-2.9861608 z"
+ id="rect5208" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 20,8.9273224 0,-4.9273225 -4.971993,0 0,0.9740874 3.976298,0 0,3.9532351 0.995695,0 z"
+ id="rect5196"
+ sodipodi:nodetypes="ccccccc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-44.398846"
+ y="-2.39605" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="16"
+ height="16"
+ sodipodi:docname="projectorkeyframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/projectorkeyframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient14484">
+ <stop
+ id="stop14486"
+ offset="0.0000000"
+ style="stop-color:#c68827;stop-opacity:1.0000000;" />
+ <stop
+ id="stop14488"
+ offset="1.0000000"
+ style="stop-color:#89601f;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient15234">
+ <stop
+ id="stop15236"
+ offset="0.0000000"
+ style="stop-color:#97978a;stop-opacity:1.0000000;" />
+ <stop
+ style="stop-color:#c2c2b9;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop15242" />
+ <stop
+ id="stop15238"
+ offset="1.0000000"
+ style="stop-color:#7d7d6f;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2239"
+ inkscape:collect="always">
+ <stop
+ id="stop2241"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop2243"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2259"
+ inkscape:collect="always">
+ <stop
+ id="stop2261"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop2263"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2259"
+ id="linearGradient30310"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.37993685,0,0,0.2668752,-1.077759,0.39797449)"
+ x1="26.076092"
+ y1="26.696676"
+ x2="30.811172"
+ y2="42.007351" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient14484"
+ id="linearGradient30313"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.37983559,0,0,0.27429507,-1.0753311,0.16075143)"
+ x1="6.1071744"
+ y1="10.451290"
+ x2="33.857143"
+ y2="37.879860" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15234"
+ id="linearGradient30317"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0582938,0,0,0.79969925,-19.79469,-35.916435)"
+ x1="25.404572"
+ y1="3.8180194"
+ x2="25.464211"
+ y2="9.3233509" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15234"
+ id="linearGradient30319"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.54164076,0,0,0.40929088,-7.1366979,-36.382372)"
+ x1="25.404572"
+ y1="3.8180194"
+ x2="25.404572"
+ y2="6.481061" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15234"
+ id="linearGradient30321"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0106288,0,0,0.70687656,-18.626893,-35.241689)"
+ x1="25.404572"
+ y1="3.8180194"
+ x2="25.464211"
+ y2="9.3233509" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2239"
+ id="linearGradient30323"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0053787,0,0,0.79969925,-17.995591,-35.916435)"
+ x1="25.682829"
+ y1="12.172059"
+ x2="25.692169"
+ y2="-0.20294096" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2239"
+ id="linearGradient30310-7"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.37993685,0,0,0.2668752,-1.0790625,-0.76792241)"
+ x1="26.076092"
+ y1="26.696676"
+ x2="30.811172"
+ y2="42.007351" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.85965"
+ inkscape:cx="-3.721405"
+ inkscape:cy="8.6246497"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ transform="matrix(-0.92849925,0.37133427,0.37133427,0.92849925,0,0)"
+ y="11.632977"
+ x="-4.2915807"
+ height="8.9374886"
+ width="1.8424504"
+ id="rect30315"
+ style="fill:#803300;fill-opacity:1;stroke:#d45500;stroke-width:0.48336965;stroke-miterlimit:4;stroke-dasharray:none" />
+ <rect
+ style="fill:#803300;fill-opacity:1;stroke:#d45500;stroke-width:0.48336965;stroke-miterlimit:4;stroke-dasharray:none"
+ id="rect30273"
+ width="1.8424504"
+ height="8.9374886"
+ x="10.486316"
+ y="5.7228603"
+ transform="rotate(21.797929)" />
+ <rect
+ style="fill:url(#linearGradient30313);fill-opacity:1;fill-rule:evenodd;stroke:#714c16;stroke-width:0.3227801;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect12368"
+ width="14.82714"
+ height="11.258562"
+ x="0.62037677"
+ y="1.3950789"
+ rx="0.52718794"
+ ry="0.38070413" />
+ <rect
+ style="fill:none;stroke:url(#linearGradient30310);stroke-width:0.31842712;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect15244"
+ width="11.023543"
+ height="9.0846357"
+ x="2.5381529"
+ y="2.3906214"
+ rx="0"
+ ry="0" />
+ <rect
+ style="fill:none;stroke:#c68827;stroke-width:0.31842688;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect15974"
+ width="14.090206"
+ height="10.432949"
+ x="0.98884743"
+ y="1.8473145"
+ rx="0.18191318"
+ ry="0.12777944" />
+ <g
+ id="g30230"
+ transform="matrix(-0.2216255,0,0,-0.26886955,9.2649277,3.5515275)">
+ <rect
+ ry="0.78680438"
+ rx="0.98916733"
+ y="-35.916435"
+ x="0.1012247"
+ height="3.198797"
+ width="12.064545"
+ id="rect13756"
+ style="fill:#5c5c5c;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <rect
+ style="opacity:0.10795456;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.89666092;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2208"
+ width="19.04929"
+ height="5.5978947"
+ x="-3.1245444"
+ y="-32.339962"
+ rx="1.395403"
+ ry="1.1099317" />
+ <rect
+ style="fill:url(#linearGradient30317);fill-opacity:1;fill-rule:evenodd;stroke:#5c5c5c;stroke-width:0.89666092;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2285"
+ width="19.04929"
+ height="5.5978947"
+ x="-3.3911383"
+ y="-33.117489"
+ rx="1.395403"
+ ry="1.1099317" />
+ <rect
+ style="fill:url(#linearGradient30319);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ id="rect2281"
+ width="9.7495356"
+ height="2.8650348"
+ x="1.2587373"
+ y="-34.949856"
+ rx="0.32718679"
+ ry="0.26025119" />
+ <rect
+ ry="0.81004447"
+ rx="1.0183847"
+ y="-32.76762"
+ x="-2.9621489"
+ height="4.9481392"
+ width="18.191315"
+ id="rect13754"
+ style="fill:url(#linearGradient30321);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ id="rect2232"
+ d="m 1.5778741,-34.741877 c -0.0021,0.0017 0.0017,0.02302 0,0.02499 -0.0012,0.0022 -0.03079,-0.0024 -0.03142,0 v 2.299135 c 0,0.0051 0.02907,0.02055 0.03142,0.02499 0.0025,0.0014 -0.0028,0.02405 0,0.02499 h -3.550243 c -0.01786,0 -0.04546,-0.0014 -0.06284,0 -0.03421,0.0042 -0.09405,0.01582 -0.125673,0.02499 -0.138911,0.04658 -0.269111,0.159156 -0.314181,0.274897 -0.01057,0.03281 0,0.08944 0,0.124953 v 3.32375 c 0,0.0142 -0.0017,0.03616 0,0.04998 0.0052,0.02721 0.01989,0.07481 0.03142,0.09996 0.0098,0.01842 0.01853,0.05806 0.03142,0.07497 0.0046,0.0055 0.02648,0.01973 0.03142,0.02499 0.02098,0.02024 0.06881,0.05828 0.09425,0.07497 0.01323,0.0079 0.04866,0.01815 0.06284,0.02499 0.01462,0.0063 0.0474,0.01982 0.06284,0.02499 0.03162,0.0092 0.09146,0.02086 0.125673,0.02499 0.01737,0.0014 0.04498,0 0.06284,0 H 14.239372 c 0.01785,0 0.04545,0.0014 0.06284,0 0.03421,-0.0041 0.09405,-0.01581 0.125672,-0.02499 0.01543,-0.0052 0.04822,-0.01869 0.06284,-0.02499 0.01418,-0.0068 0.04961,-0.01713 0.06284,-0.02499 0.02545,-0.01669 0.07327,-0.05473 0.09425,-0.07497 0.0049,-0.0053 0.02679,-0.01954 0.03142,-0.02499 0.01289,-0.01691 0.02166,-0.05656 0.03142,-0.07497 0.01153,-0.02515 0.02622,-0.07275 0.03142,-0.09996 0.0017,-0.01382 0,-0.03578 0,-0.04998 v -3.32375 c 0,-0.03551 0.01057,-0.09214 0,-0.124953 -0.04507,-0.115741 -0.175269,-0.228318 -0.314181,-0.274897 -0.03162,-0.0092 -0.09146,-0.02086 -0.125672,-0.02499 -0.01738,-0.0014 -0.04498,0 -0.06284,0 h -3.550244 c 0.0028,-9.59e-4 -0.0025,-0.02366 0,-0.02499 0.0023,-0.0045 0.03142,-0.01986 0.03142,-0.02499 v -2.299135 c -6.19e-4,-0.0024 -0.03024,0.0022 -0.03142,0 -0.0017,-0.002 0.0021,-0.02331 0,-0.02499 -0.0028,-9.59e-4 -0.02838,4.93e-4 -0.03142,0 H 1.6093091 c -0.003,4.93e-4 -0.02862,-9.59e-4 -0.03142,0 z"
+ style="opacity:0.31681818;fill:none;stroke:url(#linearGradient30323);stroke-width:0.89666075;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.33047232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect12413"
+ width="12.683667"
+ height="9.5880194"
+ x="1.6594695"
+ y="2.1471741"
+ rx="0.23214994"
+ ry="0.15097812" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:#939dac;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.86960191;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1011-9"
+ width="6.9512191"
+ height="4"
+ x="9.0487804"
+ y="-10"
+ transform="rotate(90)" />
+ <rect
+ style="fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:#010101;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect12368-9"
+ width="14.82714"
+ height="11.258562"
+ x="0.58643007"
+ y="0.14600593"
+ rx="0"
+ ry="0" />
+ <rect
+ style="fill:none;stroke:url(#linearGradient30310-7);stroke-width:0.31842712;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect15244-6"
+ width="11.023543"
+ height="9.0846357"
+ x="2.5368495"
+ y="1.2247245"
+ rx="0"
+ ry="0" />
+ <rect
+ style="fill:#27ae60;fill-opacity:1;fill-rule:evenodd;stroke:#0b331e;stroke-width:0.35265383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect12413-5"
+ width="13.647346"
+ height="10.147346"
+ x="1.1763272"
+ y="0.7016142"
+ rx="0"
+ ry="0" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#010101;stroke-width:0.46144402;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1011"
+ width="7.5385561"
+ height="1.038556"
+ x="4.230722"
+ y="14.730722" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="protect.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/protect.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.474019"
+ inkscape:cx="-22.065789"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ sodipodi:type="arc"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.74237263;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path2818"
+ sodipodi:cx="12.305085"
+ sodipodi:cy="12.101695"
+ sodipodi:rx="6.3050847"
+ sodipodi:ry="5.8983049"
+ d="m 18.61017,12.101695 a 6.3050847,5.8983049 0 1 1 -12.6101695,0 6.3050847,5.8983049 0 1 1 12.6101695,0 z"
+ transform="matrix(1.1102151,0,0,1.1867816,-1.6612911,-2.3620688)" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="20.570379"
+ height="2.0570381"
+ x="-10.285189"
+ y="15.942043"
+ transform="matrix(0.70710677,-0.7071068,0.70710677,0.7071068,0,0)" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-44.016613"
+ y="-5.9980941" />
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_p_chkd.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkd.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2221"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.84161,855.74209)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-10.446429"
+ inkscape:cy="7.7698145"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81349,64.482344)"
+ id="g2261">
+ <rect
+ y="857.33905"
+ x="555.41785"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-8-4"
+ style="fill:url(#linearGradient2221);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-9-0"
+ y="876.33502"
+ x="558.45782"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="876.33502"
+ x="558.45782"
+ id="tspan2603-96-9"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-0-1"
+ y="876.27368"
+ x="571.60516"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="876.27368"
+ x="571.60516"
+ id="tspan2603-1-0-27-9"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_p_chkdhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_chkdhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2223"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.8416,893.83879)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="8.1696424"
+ inkscape:cy="3.7519573"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81347,54.402598)"
+ id="g2254">
+ <rect
+ y="895.43573"
+ x="555.41779"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-1-2"
+ style="fill:url(#linearGradient2223);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-02-5"
+ width="22.758106"
+ height="19.559982"
+ x="556.00653"
+ y="896.12354" />
+ <text
+ id="text2605-91-4"
+ y="914.4317"
+ x="558.45776"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="914.4317"
+ x="558.45776"
+ id="tspan2603-4-4"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-9-9"
+ y="914.37036"
+ x="571.6051"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="914.37036"
+ x="571.6051"
+ id="tspan2603-1-0-1-9"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_p_down.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_down.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient2217"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92058643,0,0,1.2314853,314.50259,802.40015)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient834"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92058643,0,0,1.2314853,314.50259,802.40015)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-0.26785755"
+ inkscape:cy="11.519814"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81348,74.562111)"
+ id="g2266">
+ <g
+ transform="translate(211.33957,15.245503)"
+ id="g1917-2">
+ <rect
+ style="fill:url(#linearGradient834);fill-opacity:1;stroke:#141414;stroke-width:1.06474829;stroke-opacity:1"
+ id="rect3597-50-11-3-05"
+ width="23.935251"
+ height="20.935253"
+ x="344.0784"
+ y="803.99695" />
+ <rect
+ y="805.01331"
+ x="345.09476"
+ height="18.902525"
+ width="21.902523"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-5"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ id="g853"
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81348,74.562111)">
+ <g
+ id="g851"
+ transform="translate(211.33957,15.245503)">
+ <rect
+ y="803.99695"
+ x="344.0784"
+ height="20.935253"
+ width="23.935251"
+ id="rect847"
+ style="fill:url(#linearGradient2217);fill-opacity:1;stroke:#141414;stroke-width:1.06474829;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect849"
+ width="21.902523"
+ height="18.902525"
+ x="345.09476"
+ y="805.01331" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_p_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2219"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.8416,779.54859)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-63.616071"
+ inkscape:cy="10.448386"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81349,84.641869)"
+ id="g2274">
+ <rect
+ y="781.14557"
+ x="555.41785"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-5-9"
+ style="fill:url(#linearGradient2219);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-40-0"
+ y="800.14154"
+ x="558.45782"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="800.14154"
+ x="558.45782"
+ id="tspan2603-0-2"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-4-8"
+ y="800.0802"
+ x="571.60516"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="800.0802"
+ x="571.60516"
+ id="tspan2603-1-0-6-3"
+ sodipodi:role="line">S</tspan></text>
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-6-8"
+ width="21.902523"
+ height="18.902525"
+ x="556.43433"
+ y="782.16211" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_p_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_p_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2215"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,525.84161,741.45194)"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="9.7767854"
+ inkscape:cy="11.251957"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-146.81347,94.721616)"
+ id="g2282">
+ <rect
+ y="743.04889"
+ x="555.41779"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-9"
+ style="fill:url(#linearGradient2215);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6"
+ width="22.758106"
+ height="19.559982"
+ x="556.00653"
+ y="743.73676" />
+ <text
+ id="text2605-1"
+ y="762.04486"
+ x="558.45776"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="762.04486"
+ x="558.45776"
+ id="tspan2603-04"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-2"
+ y="761.98352"
+ x="571.6051"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:0.88382047"
+ y="761.98352"
+ x="571.6051"
+ id="tspan2603-1-0-2"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_s_chkd.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkd.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2846"
+ x1="353.60892"
+ y1="726.25848"
+ x2="363.25156"
+ y2="740.47345"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1718751,0,0,1.1718751,-61.492977,-125.7482)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2982"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="translate(-0.17843306,117.1616)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient3311"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-98"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,309.87466,841.91621)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-64.553571"
+ inkscape:cy="10.448386"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ id="g1905"
+ transform="matrix(0.26458333,0,0,0.26458333,-89.672225,68.140438)">
+ <rect
+ y="843.51318"
+ x="339.45087"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-8"
+ style="fill:url(#linearGradient1811-87-3-98);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-9"
+ y="862.50916"
+ x="342.49084"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="862.50916"
+ x="342.49084"
+ id="tspan2603-96"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-0"
+ y="862.44781"
+ x="355.63818"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="862.44781"
+ x="355.63818"
+ id="tspan2603-1-0-27"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_s_chkdhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_chkdhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2846"
+ x1="353.60892"
+ y1="726.25848"
+ x2="363.25156"
+ y2="740.47345"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1718751,0,0,1.1718751,-61.492977,-125.7482)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2982"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="translate(0.1122009,150.29735)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient3340"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-61"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,310.31066,874.03512)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-13.125"
+ inkscape:cy="8.5733859"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ transform="matrix(0.26458333,0,0,0.26458333,-89.787585,59.642314)"
+ id="g1913">
+ <rect
+ y="875.63208"
+ x="339.88687"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-1"
+ style="fill:url(#linearGradient1811-87-3-61);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.47999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-02-7"
+ width="22.758106"
+ height="19.559982"
+ x="340.47562"
+ y="876.31989" />
+ <text
+ id="text2605-91"
+ y="894.62805"
+ x="342.92685"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#aa0000;fill-opacity:1;stroke-width:2.40916204"
+ y="894.62805"
+ x="342.92685"
+ id="tspan2603-4"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-9"
+ y="894.56671"
+ x="356.07419"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="894.56671"
+ x="356.07419"
+ id="tspan2603-1-0-1"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_s_down.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_down.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2846"
+ x1="353.60892"
+ y1="726.25848"
+ x2="363.25156"
+ y2="740.47345"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1718751,0,0,1.1718751,-61.492977,-125.7482)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2982"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92058643,0,0,1.2314853,314.50259,802.40015)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-91.741071"
+ inkscape:cy="14.466243"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ id="g1917"
+ transform="matrix(0.26458333,0,0,0.26458333,-90.896551,78.595817)">
+ <rect
+ y="803.99695"
+ x="344.0784"
+ height="20.935253"
+ width="23.935251"
+ id="rect3597-50-11-3"
+ style="fill:url(#linearGradient1811-2-3-1);fill-opacity:1;stroke:#141414;stroke-width:1.06474829;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3"
+ width="21.902523"
+ height="18.902525"
+ x="345.09476"
+ y="805.01331" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_s_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2846"
+ x1="353.60892"
+ y1="726.25848"
+ x2="363.25156"
+ y2="740.47345"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1718751,0,0,1.1718751,-61.492977,-125.7482)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient2982"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient51055-6"
+ id="linearGradient3516"
+ x1="364.448"
+ y1="738.27161"
+ x2="369.49698"
+ y2="738.27161"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-2.0850533,38.653453)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-3"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92059868,0,0,1.2315041,318.01338,759.36626)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-0.26785739"
+ inkscape:cy="8.0376716"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ id="g1925"
+ transform="matrix(0.26458333,0,0,0.26458333,-91.825599,89.981773)">
+ <rect
+ y="760.96326"
+ x="347.5896"
+ height="20.93557"
+ width="23.93557"
+ id="rect3597-00-5-5"
+ style="fill:url(#linearGradient1811-87-3-3);fill-opacity:1;stroke:#141414;stroke-width:1.06442964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ id="text2605-40"
+ y="779.95923"
+ x="350.62958"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;line-height:60.22904968px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:2.40916204"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:2.40916204"
+ y="779.95923"
+ x="350.62958"
+ id="tspan2603-0"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-4"
+ y="779.89789"
+ x="363.77692"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;line-height:22.09551239px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.88382047"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.17145157px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.88382047"
+ y="779.89789"
+ x="363.77692"
+ id="tspan2603-1-0-6"
+ sodipodi:role="line">S</tspan></text>
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:1.0974766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-46-3-6"
+ width="21.902523"
+ height="18.902525"
+ x="348.60611"
+ y="761.9798" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="32"
+ height="22"
+ viewBox="0 0 8.4666665 5.8208335"
+ version="1.1"
+ id="svg1913"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="proxy_s_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/proxy_s_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title2477">proxy_up</title>
+ <defs
+ id="defs1907">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient51055-6">
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="0"
+ id="stop51051" />
+ <stop
+ id="stop51053"
+ offset="1"
+ style="stop-color:#196634;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.24357506,0,0,0.32583546,4.8477178,289.98083)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.4666667"
+ inkscape:cx="-56.116071"
+ inkscape:cy="14.466243"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <metadata
+ id="metadata1910">
+ <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>proxy_up</dc:title>
+ <dc:date>2018-08-14</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-14: new.</dc:description>
+ <dc:relation>proxy_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-291.17915)">
+ <g
+ id="g3767"
+ transform="translate(-12.532273,0.91658399)">
+ <rect
+ y="290.40338"
+ x="12.673088"
+ height="5.5392027"
+ width="6.332953"
+ id="rect3597-00-5-3"
+ style="fill:url(#linearGradient1811-87-3-0);fill-opacity:1;stroke:#141414;stroke-width:0.28163034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.127;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-9"
+ width="6.0214157"
+ height="5.1752453"
+ x="12.828853"
+ y="290.58536" />
+ <text
+ id="text2605-0"
+ y="295.42938"
+ x="13.477416"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:6.61458349px;line-height:15.93560314px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke:none;stroke-width:0.63742411"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:6.61458349px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#2ca05a;fill-opacity:1;stroke-width:0.63742411"
+ y="295.42938"
+ x="13.477416"
+ id="tspan2603-8"
+ sodipodi:role="line">P</tspan></text>
+ <text
+ id="text2605-2-3-3"
+ y="295.41315"
+ x="16.955982"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.42661333px;line-height:5.84610415px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.23384416"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:2.42661333px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Semi-Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.23384416"
+ y="295.41315"
+ x="16.955982"
+ id="tspan2603-1-0-8"
+ sodipodi:role="line">S</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="radial_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/radial_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1126">
+ <stop
+ id="stop1122"
+ offset="0"
+ style="stop-color:#2dc066;stop-opacity:1" />
+ <stop
+ style="stop-color:#2b9945;stop-opacity:1"
+ offset="1"
+ id="stop1124" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-78"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,21.597126,78.679105)" />
+ <radialGradient
+ gradientTransform="translate(22.36616,7.7339427)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1126"
+ id="radialGradient1120-6-7"
+ cx="10.210971"
+ cy="82.708862"
+ fx="10.210971"
+ fy="82.708862"
+ r="6"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.5833335"
+ inkscape:cx="-8.8914183"
+ inkscape:cy="13.734177"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="22"
+ height="22"
+ x="0"
+ y="0" />
+ <ellipse
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.83011585;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3592"
+ transform="matrix(1.2980902,0,0,1.2533284,26.24706,-3.1955368)"
+ cx="-11.745763"
+ cy="11.326271"
+ rx="6.5254235"
+ ry="6.7584743" />
+ <ellipse
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none"
+ id="path3690"
+ transform="matrix(1.2248063,0,0,1.2539683,55.744187,2.4603164)"
+ cx="-36.531643"
+ cy="6.8101273"
+ rx="3.2658226"
+ ry="3.1898732" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-47.837193"
+ y="-33.21064"
+ id="text964"><tspan
+ sodipodi:role="line"
+ id="tspan962"
+ x="-47.837193"
+ y="-33.21064">see: radial_up</tspan></text>
+ <g
+ id="g1283"
+ transform="matrix(0.99442261,0,0,1.0002347,-21.395434,-79.464022)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="90.442795"
+ cx="32.577129"
+ id="path1046-5"
+ style="opacity:1;fill:url(#linearGradient947-78);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="90.442795"
+ cx="32.577129"
+ id="path1478-0-0-4-5-9"
+ style="display:inline;opacity:1;fill:url(#radialGradient1120-6-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="radial_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/radial_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-78-4"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,23.960765,99.95187)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ gradientTransform="translate(24.729799,29.00671)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1126"
+ id="radialGradient1120-6"
+ cx="10.210971"
+ cy="82.708862"
+ fx="10.210971"
+ fy="82.708862"
+ r="6"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1126">
+ <stop
+ id="stop1122"
+ offset="0"
+ style="stop-color:#2dc066;stop-opacity:1" />
+ <stop
+ style="stop-color:#2b9945;stop-opacity:1"
+ offset="1"
+ id="stop1124" />
+ </linearGradient>
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.3102397"
+ inkscape:cx="-30.433289"
+ inkscape:cy="11"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="22"
+ height="22"
+ x="0"
+ y="0" />
+ <ellipse
+ style="fill:none;fill-opacity:1;stroke:#ff6600;stroke-width:0.83011585;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3592"
+ transform="matrix(1.2980902,0,0,1.2533284,26.24706,-3.1955368)"
+ cx="-11.745763"
+ cy="11.326271"
+ rx="6.5254235"
+ ry="6.7584743" />
+ <ellipse
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none"
+ id="path3690"
+ transform="matrix(1.2248063,0,0,1.2539683,55.744187,2.4603164)"
+ cx="-36.531643"
+ cy="6.8101273"
+ rx="3.2658226"
+ ry="3.1898732" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-69.309593"
+ y="-10.983854"
+ id="text964"><tspan
+ sodipodi:role="line"
+ id="tspan962"
+ x="-69.309593"
+ y="-10.983854">see: radial_up</tspan></text>
+ <g
+ style="display:inline"
+ id="g1287"
+ transform="matrix(0.99442261,0,0,1.0002347,-23.745891,-100.74178)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="111.71556"
+ cx="34.940769"
+ id="path1046-5-5"
+ style="opacity:1;fill:url(#linearGradient947-78-4);fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="111.71556"
+ cx="34.940769"
+ id="path1478-0-0-4-5"
+ style="display:inline;opacity:1;fill:url(#radialGradient1120-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="radial_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/radial_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-2"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,-43.968201,-76.617511)" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.3102397"
+ inkscape:cx="-19.999274"
+ inkscape:cy="7.3481069"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="22"
+ height="22"
+ x="0"
+ y="0" />
+ <ellipse
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.83011585;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3592"
+ transform="matrix(1.2980902,0,0,1.2533284,26.24706,-3.1955368)"
+ cx="-11.745763"
+ cy="11.326271"
+ rx="6.5254235"
+ ry="6.7584743" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-45.894512"
+ y="-10.231994"
+ id="text964"><tspan
+ sodipodi:role="line"
+ id="tspan962"
+ x="-45.894512"
+ y="-10.231994">see: radial_up</tspan></text>
+ <g
+ id="g1279"
+ transform="matrix(0.99442261,0,0,1.0002347,-21.804209,-53.869042)">
+ <ellipse
+ transform="scale(-1)"
+ ry="7.4097986"
+ rx="10.409799"
+ cy="-64.853821"
+ cx="-32.988197"
+ id="path1046-01"
+ style="opacity:1;fill:url(#linearGradient947-2);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="64.853821"
+ cx="32.988197"
+ id="path1478-0-0"
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="radial_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/radial_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-7"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,24.782902,32.022904)" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8"
+ inkscape:cx="-0.22784796"
+ inkscape:cy="19.058543"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="22"
+ height="22"
+ x="0"
+ y="0" />
+ <ellipse
+ style="fill:none;fill-opacity:1;stroke:#cccccc;stroke-width:0.83011585;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3592"
+ transform="matrix(1.2980902,0,0,1.2533284,26.24706,-3.1955368)"
+ cx="-11.745763"
+ cy="11.326271"
+ rx="6.5254235"
+ ry="6.7584743" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.381496"
+ y="-4.8435512"
+ id="text964"><tspan
+ sodipodi:role="line"
+ id="tspan962"
+ x="-35.381496"
+ y="-4.8435512">see: radial_up</tspan></text>
+ <g
+ id="g1275"
+ transform="matrix(0.99459316,0,0,0.99459316,-24.569541,-32.549851)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="43.786598"
+ cx="35.762905"
+ id="path1046-9"
+ style="opacity:1;fill:url(#linearGradient947-7);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="43.786598"
+ cx="35.762905"
+ id="path1478-0-8"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="22"
+ height="22"
+ sodipodi:docname="radial_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/radial_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1126">
+ <stop
+ id="stop1122"
+ offset="0"
+ style="stop-color:#2dc066;stop-opacity:1" />
+ <stop
+ style="stop-color:#2b9945;stop-opacity:1"
+ offset="1"
+ id="stop1124" />
+ </linearGradient>
+ <radialGradient
+ gradientTransform="translate(24.729799,29.00671)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1126"
+ id="radialGradient1120-6"
+ cx="10.210971"
+ cy="82.708862"
+ fx="10.210971"
+ fy="82.708862"
+ r="6"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99261473,0,0,1.0696776,0.02143939,-0.7664541)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-7"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,24.782902,32.022904)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-2"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,-43.968201,-76.617511)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-78"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,21.597126,78.679105)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient947-78-4"
+ x1="11.027286"
+ y1="4.6330552"
+ x2="11.16963"
+ y2="17.301308"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99818198,0,0,1.0694266,23.960765,99.95187)" />
+ <radialGradient
+ gradientTransform="translate(22.36616,7.7339427)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient1126"
+ id="radialGradient1120-6-7"
+ cx="10.210971"
+ cy="82.708862"
+ fx="10.210971"
+ fy="82.708862"
+ r="6"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.4403409"
+ inkscape:cx="-16.233245"
+ inkscape:cy="2.7786429"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="22"
+ height="22"
+ x="0"
+ y="0" />
+ <ellipse
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.83011585;stroke-miterlimit:4;stroke-dasharray:none"
+ id="path3592"
+ transform="matrix(1.2980902,0,0,1.2533284,26.24706,-3.1955368)"
+ cx="-11.745763"
+ cy="11.326271"
+ rx="6.5254235"
+ ry="6.7584743" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-83.915611"
+ y="86.607605"
+ id="text886"><tspan
+ sodipodi:role="line"
+ id="tspan884"
+ x="-83.915611"
+ y="86.607605">radial_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-92.827003"
+ y="112.22785"
+ id="text890"><tspan
+ sodipodi:role="line"
+ id="tspan888"
+ x="-92.827003"
+ y="112.22785">radial_checkedhi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-52.911388"
+ y="48.362865"
+ id="text894"><tspan
+ sodipodi:role="line"
+ id="tspan892"
+ x="-52.911388"
+ y="48.362865">radial_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-56.253162"
+ y="66.928261"
+ id="text898"><tspan
+ sodipodi:role="line"
+ id="tspan896"
+ x="-56.253162"
+ y="66.928261">radial_dn</tspan></text>
+ <ellipse
+ style="opacity:1;fill:url(#linearGradient947);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29652166;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path1046"
+ cx="10.940202"
+ cy="11"
+ rx="10.351739"
+ ry="7.4115376" />
+ <g
+ id="g1275"
+ transform="matrix(0.99442261,0,0,1.0002347,-24.62324,-1.6545484)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="43.786598"
+ cx="35.762905"
+ id="path1046-9"
+ style="opacity:1;fill:url(#linearGradient947-7);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="43.786598"
+ cx="35.762905"
+ id="path1478-0"
+ style="display:inline;opacity:1;fill:#5f8dd3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1279"
+ transform="matrix(0.99442261,0,0,1.0002347,-21.864008,-0.08372929)">
+ <ellipse
+ transform="scale(-1)"
+ ry="7.4097986"
+ rx="10.409799"
+ cy="-64.853821"
+ cx="-32.988197"
+ id="path1046-01"
+ style="opacity:1;fill:url(#linearGradient947-2);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="64.853821"
+ cx="32.988197"
+ id="path1478-0-0"
+ style="display:inline;opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1287"
+ transform="matrix(0.99442261,0,0,1.0002347,-23.805689,-1.6704917)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="111.71556"
+ cx="34.940769"
+ id="path1046-5-5"
+ style="opacity:1;fill:url(#linearGradient947-78-4);fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="111.71556"
+ cx="34.940769"
+ id="path1478-0-0-4-5"
+ style="display:inline;opacity:1;fill:url(#radialGradient1120-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-52.913673"
+ y="-15.280206"
+ id="text1373"><tspan
+ sodipodi:role="line"
+ id="tspan1371"
+ x="-52.913673"
+ y="-15.280206">see: checkbox_*</tspan></text>
+ <g
+ id="g1283"
+ transform="matrix(0.99442261,0,0,1.0002347,-21.455232,-3.0357229)">
+ <ellipse
+ ry="7.4097986"
+ rx="10.409799"
+ cy="90.442795"
+ cx="32.577129"
+ id="path1046-5"
+ style="opacity:1;fill:url(#linearGradient947-78);fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:1.29999995;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <circle
+ r="6"
+ cy="90.442795"
+ cx="32.577129"
+ id="path1478-0-0-4-5-9"
+ style="display:inline;opacity:1;fill:url(#radialGradient1120-6-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.199;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="record.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/record.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-37.474576"
+ inkscape:cy="12.915254"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="path3309"
+ sodipodi:cx="-32.64407"
+ sodipodi:cy="13.525424"
+ sodipodi:rx="5.0847459"
+ sodipodi:ry="4.4745765"
+ d="m -27.559324,13.525424 a 5.0847459,4.4745765 0 1 1 -10.169492,0 5.0847459,4.4745765 0 1 1 10.169492,0 z"
+ transform="matrix(1.3766666,0,0,1.5643939,56.94,-9.1590909)" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="391"
+ height="193"
+ sodipodi:docname="recordgui_batch.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_batch.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.2227979"
+ inkscape:cx="-119.75152"
+ inkscape:cy="96.499998"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer4" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1"
+ style="display:inline">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="391"
+ height="193"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2818-9"
+ width="391"
+ height="193"
+ x="0"
+ y="0" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="466"
+ height="68"
+ sodipodi:docname="recordgui_controls.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_controls.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective2826"
+ 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" />
+ <inkscape:perspective
+ id="perspective3592"
+ 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>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.1609442"
+ inkscape:cx="-94.750464"
+ inkscape:cy="34"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="466"
+ height="68"
+ x="0"
+ y="0" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="649"
+ height="239"
+ sodipodi:docname="recordgui_list.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordgui_list.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3592"
+ 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>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="0.83359014"
+ inkscape:cx="-131.95933"
+ inkscape:cy="119.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="649"
+ height="239"
+ x="0"
+ y="0" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="105"
+ height="205"
+ sodipodi:docname="recordmonitor_meters.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_meters.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.3121951"
+ inkscape:cx="-112.06224"
+ inkscape:cy="102.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="105"
+ height="205"
+ x="0"
+ y="0" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="302"
+ height="40"
+ sodipodi:docname="recordmonitor_panel.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordmonitor_panel.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="483"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.7913907"
+ inkscape:cx="-61.404809"
+ inkscape:cy="20"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="302"
+ height="40"
+ x="0"
+ y="0" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="12.675848"
+ inkscape:cy="5.4745763"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:none;stroke:none;stroke-width:0.10000000000000001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;opacity:1"
+ d="M 13.03125 2 C 10.636342 2 8.6550796 3.5699387 8.53125 5.53125 C 8.52874 5.570303 8.5322492 5.5856401 8.53125 5.625 L 8.53125 7.8125 L 8.3125 7.8125 C 7.5857504 7.8125 7 8.3982504 7 9.125 L 7 13.6875 C 7 14.41425 7.5857504 15 8.3125 15 L 17.6875 15 C 18.41425 15 19 14.41425 19 13.6875 L 19 9.125 C 19 8.3982504 18.41425 7.8125 17.6875 7.8125 L 10.03125 7.8125 L 10.03125 5.625 L 10.03125 5.53125 C 10.154945 4.2567273 11.463154 3.25 13.03125 3.25 C 14.59763 3.25 15.842652 4.2587138 15.96875 5.53125 L 17.5 5.53125 C 17.377121 3.569197 15.426802 2 13.03125 2 z "
+ id="rect3456" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch_checked.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>ff0000ff > 27ae60ff</dc:description>
+ <cc:license
+ rdf:resource="" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ff6600;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ff6600;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4286"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99780699,0,0,0.6524123,1.0263153,0.67105212)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient4288"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93022643,0,0,0.58638593,1.7935536,1.2517304)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472059,-0.74709704)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.724565"
+ inkscape:cx="0.75473079"
+ inkscape:cy="8.1209933"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.0293039"
+ y="1.3234643"
+ x="2.0241227"
+ height="14.353071"
+ width="21.951756"
+ id="rect3685"
+ style="fill:url(#linearGradient4286);fill-opacity:1;stroke:none;stroke-width:0.87599146" />
+ <path
+ style="fill:url(#linearGradient4288);fill-opacity:1;stroke:none;stroke-width:0.87599146"
+ d="m 4.1772585,1.8381163 c -0.8130546,0 -1.453478,0.4037033 -1.453478,0.9162281 v 4.4895171 c 2.5695767,1.0597659 6.0464255,1.7041842 9.8836555,1.7041842 4.203313,0 7.963427,-0.7718156 10.581325,-2.0157018 V 2.7543444 c 0,-0.5125248 -0.640423,-0.9162281 -1.453478,-0.9162281 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#ff6600;stroke-width:0.6454674;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="21.951756"
+ height="14.353071"
+ x="2.0241227"
+ y="1.3234643"
+ ry="1.0293039" />
+ <rect
+ ry="1.3118224"
+ y="7.8172231"
+ x="7"
+ height="7.1827769"
+ width="12"
+ id="rect3456"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 13.018196,2.0000005 c -2.394908,0 -4.3571806,1.5624754 -4.4810102,3.5237867 -0.00251,0.039053 9.992e-4,0.076817 0,0.1161769 V 12.57137 H 10.030854 V 5.6399641 5.5237872 c 0.123695,-1.2745227 1.419246,-2.2846523 2.987342,-2.2846523 1.56638,0 2.814566,1.0121161 2.940664,2.2846523 h 1.540348 c -9.85e-4,-0.038828 0.0023,0.038537 0,0 -0.122879,-1.962053 -2.08546,-3.5237867 -4.481012,-3.5237867 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-33.079845"
+ y="-5.2340598"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="-33.079845"
+ y="-5.2340598">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-6-1);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-10"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <g
+ id="g1655"
+ transform="translate(1.9788136,-80.173728)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ <rect
+ y="1.2108078"
+ x="1.2108066"
+ height="14.578383"
+ width="23.578382"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-3"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.42161635;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch_checkedhi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_checkedhi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:description>ff0000ff > 27ae60ff</dc:description>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4758"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient4760"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472058,-0.74708482)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="3.64449"
+ inkscape:cy="-2.6009826"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g4750"
+ transform="translate(13.144068,-11.957627)">
+ <g
+ transform="translate(-13.144068,11.957627)"
+ id="g4743">
+ <rect
+ y="0"
+ x="5.3357905e-08"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4848"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient4758);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient4760);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#ff6600;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <rect
+ ry="1.3118224"
+ y="7.8172231"
+ x="7"
+ height="7.1827769"
+ width="12"
+ id="rect3456"
+ style="fill:#27ae60;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 13.018196,2.0000005 c -2.394908,0 -4.3571806,1.5624754 -4.4810102,3.5237867 -0.00251,0.039053 9.992e-4,0.076817 0,0.1161769 V 12.57137 H 10.030854 V 5.6399641 5.5237872 c 0.123695,-1.2745227 1.419246,-2.2846523 2.987342,-2.2846523 1.56638,0 2.814566,1.0121161 2.940664,2.2846523 h 1.540348 c -9.85e-4,-0.038828 0.0023,0.038537 0,0 -0.122879,-1.962053 -2.08546,-3.5237867 -4.481012,-3.5237867 z"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.10046"
+ y="-10.291577"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="-35.10046"
+ y="-10.291577">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-5);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-1-8"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <rect
+ y="1.4847722"
+ x="1.4847822"
+ height="14.030439"
+ width="23.030439"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-4"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.9695608;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ id="g1655-6"
+ transform="matrix(0.96402072,0,0,0.96402072,2.3753491,-76.983311)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2-9"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27-2"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>e6e6e6ff > ffd42aff
+</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4048"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472061,-0.7470901)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.882353"
+ inkscape:cx="13.369038"
+ inkscape:cy="7.851695"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g4041"
+ transform="translate(17.754237,3.4576271)">
+ <g
+ transform="translate(-17.754237,-3.4576271)"
+ id="g4035">
+ <rect
+ y="0"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4386"
+ transform="matrix(1.0833333,0,0,0.70833333,1.625,1.0624994)">
+ <rect
+ style="fill:url(#linearGradient4048);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ </g>
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none"
+ d="m 13.03125,2 c -2.394908,0 -4.3761704,1.5699387 -4.5,3.53125 -0.00251,0.039053 9.992e-4,0.05439 0,0.09375 V 7.8125 H 8.3125 C 7.5857504,7.8125 7,8.3982504 7,9.125 v 4.5625 C 7,14.41425 7.5857504,15 8.3125,15 h 9.375 C 18.41425,15 19,14.41425 19,13.6875 V 9.125 C 19,8.3982504 18.41425,7.8125 17.6875,7.8125 H 10.03125 V 5.625 5.53125 c 0.123695,-1.2745227 1.431904,-2.28125 3,-2.28125 1.56638,0 2.811402,1.0087138 2.9375,2.28125 H 17.5 C 17.377121,3.569197 15.426802,2 13.03125,2 Z"
+ id="rect3456"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.748768"
+ y="-19.079714"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="-35.748768"
+ y="-19.079714">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-50-11-3-8"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffd42a;fill-opacity:1;stroke:none"
+ d="m 13.031251,1.9999999 c -2.394908,0 -4.3761718,1.569939 -4.5000008,3.53125 -0.0025,0.03905 9.99e-4,0.05439 0,0.09375 v 2.1875 h -0.21875 c -0.72675,0 -1.3125,0.585751 -1.3125,1.3125 v 4.5624991 c 0,0.72675 0.58575,1.3125 1.3125,1.3125 h 9.3750008 c 0.72675,0 1.3125,-0.58575 1.3125,-1.3125 V 9.1249999 c 0,-0.726749 -0.58575,-1.3125 -1.3125,-1.3125 h -7.65625 v -2.1875 -0.09375 c 0.123695,-1.274522 1.431904,-2.28125 3,-2.28125 1.56638,0 2.811402,1.008714 2.9375,2.28125 h 1.53125 c -0.122879,-1.962053 -2.073198,-3.53125 -4.46875,-3.53125 z"
+ id="rect3456-0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>ccccccff > aa0000ff</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3700"
+ inkscape:collect="always">
+ <stop
+ id="stop3702"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3704"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3708"
+ inkscape:collect="always">
+ <stop
+ id="stop3710"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3712"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient4072"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient4074"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332428,0,0,0.9439079,-30.472061,-0.74708725)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="15.028846"
+ inkscape:cx="-29.933672"
+ inkscape:cy="7.7236755"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="-7.5614306e-09"
+ x="-8.0876306e-10"
+ height="17"
+ width="26"
+ id="rect3597"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <g
+ id="g3925"
+ transform="matrix(1.0833333,0,0,0.70885178,1.625,1.0570557)">
+ <rect
+ style="fill:url(#linearGradient4072);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3687"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ style="fill:url(#linearGradient4074);fill-opacity:1;stroke:none" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ transform="matrix(1.9436696,0,0,1.6124484,84.1538,-4.103414)"
+ id="g4429">
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ id="g2915"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3473"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-36.908253"
+ y="-13.578344"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="-36.908253"
+ y="-13.578344">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.95356679;stroke-opacity:1"
+ id="rect3597-2-1-3"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ transform="matrix(1.9436696,0,0,1.6124484,84.153802,-4.1034142)"
+ id="g4429-1">
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ id="g2915-7"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-5"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-6"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-5"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ </g>
+ <rect
+ y="1.2422104"
+ x="1.2422152"
+ height="14.515569"
+ width="23.515568"
+ id="rect3597-5-7-9-4-8-9-4-29-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.48443139;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="26"
+ height="17"
+ sodipodi:docname="recordpatch_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/recordpatch_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title6355">recordpatch_up</title>
+ <metadata
+ id="metadata8">
+ <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>recordpatch_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>This is where it all started. The other icons have been added to the topic overview for publication: 0.Neophyte-Theme.</dc:description>
+ <dc:relation>recordpatch_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-87-3-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-30.472058,-0.74710062)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332428,0,0,0.9439079,-28.965213,27.095375)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-2-3-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-28.965214,55.763665)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-28.965211,77.523931)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-2-6-7-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.96332433,0,0,0.9439078,-28.965212,103.08363)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.9701606"
+ inkscape:cx="42.255003"
+ inkscape:cy="-53.409592"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ showguides="false"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="70.579562,-287.26331"
+ orientation="1,0"
+ id="guide2124"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="194.65573,-127.22303"
+ orientation="0,1"
+ id="guide6239"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="227.92253,-284.11645"
+ orientation="1,0"
+ id="guide6241"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="299.44372,-306.11922"
+ orientation="0,1"
+ id="guide2860"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="431.11974,-209.04138"
+ orientation="1,0"
+ id="guide1569"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="63.694933,-479.138"
+ orientation="0,1"
+ id="guide2634"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="438.60938,-691.00503"
+ orientation="0,1"
+ id="guide3641"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="645.36356,-13.081694"
+ orientation="1,0"
+ id="guide3679"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="557.18039,193.80188"
+ orientation="0,1"
+ id="guide4017"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-142.02912,-383.54407"
+ orientation="1,0"
+ id="guide4588"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-297.47881,-253.51642"
+ orientation="1,0"
+ id="guide6080"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="867.37205,-167.17261"
+ orientation="1,0"
+ id="guide1528"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-310.88526,-973.85745"
+ orientation="1,0"
+ id="guide2627"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="362.97274,-718.82409"
+ orientation="0,1"
+ id="guide3720"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-49.536807,-1029.3288"
+ orientation="0,1"
+ id="guide3411"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="1141.3251,-381.60869"
+ orientation="1,0"
+ id="guide4660"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="398.23843,-505.01884"
+ orientation="0,1"
+ id="guide4680"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-322.96699,-270.45203"
+ orientation="1,0"
+ id="guide4682"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <rect
+ style="fill:url(#linearGradient1811-2-6-1);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-10"
+ width="25.046434"
+ height="16.046432"
+ x="1.9836305"
+ y="78.74781" />
+ <rect
+ style="fill:url(#linearGradient1811-2-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-50-11-3-8"
+ width="25.046434"
+ height="16.046432"
+ x="1.9836305"
+ y="56.987537" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-86.512711"
+ y="39.474575"
+ id="text1473"><tspan
+ sodipodi:role="line"
+ id="tspan1471"
+ x="-86.512711"
+ y="39.474575">recordpatch_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.82786369px;line-height:44.1278038px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000080;fill-opacity:1;stroke:none;stroke-width:1.76511216"
+ x="-87.346161"
+ y="-9.6646719"
+ id="text1473-8"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9"
+ x="-87.346161"
+ y="-9.6646719"
+ style="stroke-width:1.76511216">recordpatch_up</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffd42a;fill-opacity:1;stroke:none"
+ d="m 14.538098,58.510755 c -2.394908,0 -4.376171,1.569939 -4.5,3.53125 -0.0025,0.03905 9.99e-4,0.05439 0,0.09375 v 2.1875 H 9.8193476 c -0.72675,0 -1.3125,0.585751 -1.3125,1.3125 v 4.5625 c 0,0.72675 0.58575,1.3125 1.3125,1.3125 h 9.3750004 c 0.72675,0 1.3125,-0.58575 1.3125,-1.3125 v -4.5625 c 0,-0.726749 -0.58575,-1.3125 -1.3125,-1.3125 h -7.65625 v -2.1875 -0.09375 c 0.123695,-1.274522 1.431904,-2.28125 3,-2.28125 1.56638,0 2.811402,1.008714 2.9375,2.28125 h 1.53125 c -0.122879,-1.962053 -2.073198,-3.53125 -4.46875,-3.53125 z"
+ id="rect3456-0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-89.078079"
+ y="67.865211"
+ id="text1473-9"><tspan
+ sodipodi:role="line"
+ id="tspan1471-0"
+ x="-89.078079"
+ y="67.865211">recordpatch_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-117.05508"
+ y="91.987289"
+ id="text1603"><tspan
+ sodipodi:role="line"
+ id="tspan1601"
+ x="-117.05508"
+ y="91.987289">recordpatch_checked</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-126.56356"
+ y="118.35168"
+ id="text1607"><tspan
+ sodipodi:role="line"
+ id="tspan1605"
+ x="-126.56356"
+ y="118.35168">recordpatch_checkedhi</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot1768"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion1770"><rect
+ id="rect1772"
+ width="43.652542"
+ height="24.923729"
+ x="-6.3389831"
+ y="52.008476" /></flowRegion><flowPara
+ id="flowPara1774" /></flowRoot> <rect
+ style="fill:url(#linearGradient1811-3-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.95356679;stroke-opacity:1"
+ id="rect3597-2-1-3"
+ width="25.046434"
+ height="16.046432"
+ x="1.9836305"
+ y="28.319246" />
+ <g
+ style="fill:#f2f2f2;fill-opacity:1"
+ transform="matrix(1.9436696,0,0,1.6124484,85.660648,23.739048)"
+ id="g4429-1">
+ <g
+ style="fill:#f2f2f2;fill-opacity:1"
+ id="g2915-7"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456-5"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458-6"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path3473-5"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ id="g1655"
+ transform="translate(3.4856614,-1.9027008)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot2453"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion2455"><rect
+ id="rect2457"
+ width="13.036989"
+ height="18.431606"
+ x="452.69821"
+ y="406.76102" /></flowRegion><flowPara
+ id="flowPara2459" /></flowRoot> <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff9700;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect4584"
+ width="212.03682"
+ height="168.8654"
+ x="-141.45724"
+ y="-24.642385"
+ sodipodi:insensitive="true" />
+ <rect
+ y="29.084673"
+ x="2.749064"
+ height="14.515569"
+ width="23.515568"
+ id="rect3597-5-7-9-4-8-9-4-29-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.48443139;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="79.481834"
+ x="2.7176566"
+ height="14.578383"
+ width="23.578382"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-3"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.42161635;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-2-6-7-5);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-7-2-1-8"
+ width="25.046434"
+ height="16.046432"
+ x="1.9836305"
+ y="104.3075" />
+ <rect
+ y="105.31548"
+ x="2.9916282"
+ height="14.030439"
+ width="23.030439"
+ id="rect3597-5-7-9-4-8-9-8-0-5-1-7-6-4"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.9695608;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:url(#linearGradient1811-87-3-9);fill-opacity:1;stroke:#141414;stroke-width:0.95356667;stroke-opacity:1"
+ id="rect3597-00-5-2"
+ width="25.046434"
+ height="16.046432"
+ x="0.4767828"
+ y="0.47678375" />
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ transform="matrix(1.9436696,0,0,1.6124484,84.1538,-4.1034141)"
+ id="g4429">
+ <g
+ style="fill:#aa0000;fill-opacity:1"
+ id="g2915"
+ transform="translate(-48.135592,-9.2360018)">
+ <rect
+ ry="0.81355929"
+ y="16.628881"
+ x="8.4406767"
+ height="4.4545779"
+ width="6.1738887"
+ id="rect3456"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="cscccccsccsc"
+ id="path3458"
+ d="m 11.536983,13.021186 c -1.232158,0 -2.2417292,0.969008 -2.3054384,2.185364 -0.00129,0.02422 5.141e-4,0.04764 0,0.07205 v 4.298684 H 10.000023 V 15.2786 15.20655 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 h 0.792495 c -5.07e-4,-0.02408 0.0012,0.0239 0,0 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path3473"
+ d="m -36.564712,3.8686436 c -1.232158,0 -2.241729,0.969008 -2.305438,2.185364 -0.0013,0.02422 5.14e-4,0.04764 0,0.07205 v 4.2986844 h 0.768478 v -4.2986844 -0.07205 c 0.06364,-0.790427 0.730189,-1.416884 1.53696,-1.416884 0.805888,0 1.448068,0.627689 1.512944,1.416884 v 4.3707294 h 0.792495 V 6.1260536 c -5.07e-4,-0.02408 0.0012,-0.04815 0,-0.07205 -0.06322,-1.216816 -1.07295,-2.185364 -2.305439,-2.185364 z"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1655-6"
+ transform="matrix(0.96402072,0,0,1.0007629,3.8821958,25.020125)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.20681715px;line-height:14.54722691px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.58188903"
+ x="-108.61136"
+ y="111.42591"
+ id="text4265"><tspan
+ sodipodi:role="line"
+ id="tspan4263"
+ x="-108.61136"
+ y="111.42591"
+ style="stroke-width:0.58188903">green: slightly darker, because of the large and placement</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#005544;fill-opacity:1;stroke:none"
+ x="-117.25993"
+ y="49.092979"
+ id="text6078-9"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan6076-1"
+ x="-117.25993"
+ y="49.092979">default</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot5751"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion5753"><rect
+ id="rect5755"
+ width="30.178232"
+ height="15.314326"
+ x="253.58723"
+ y="668.7597" /></flowRegion><flowPara
+ id="flowPara5757" /></flowRoot> <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:24px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="365.70447"
+ y="738.89429"
+ id="text2942"><tspan
+ sodipodi:role="line"
+ id="tspan2940"
+ x="365.70447"
+ y="757.39429" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="264.50867"
+ y="1024.4583"
+ id="text2022"><tspan
+ sodipodi:role="line"
+ id="tspan2020"
+ x="264.50867"
+ y="1039.7057" /></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot3481"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:10.66666667px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion3483"><rect
+ id="rect3485"
+ width="303.5643"
+ height="165.3958"
+ x="-666.86615"
+ y="-163.43178" /></flowRegion><flowPara
+ id="flowPara3487" /></flowRoot> <g
+ id="g1655-1"
+ transform="translate(3.4856614,23.65699)">
+ <rect
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ id="rect3456-2-0"
+ width="12"
+ height="7.1827769"
+ x="5.0211864"
+ y="87.990952"
+ ry="1.3118224" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#27ae60;fill-opacity:1;stroke:none"
+ d="m 11.039382,82.173729 c -2.3949075,0 -4.3571805,1.562475 -4.4810095,3.523787 -0.0025,0.03905 9.99e-4,0.07682 0,0.116176 v 6.931406 h 1.493668 v -6.931406 -0.116176 c 0.123695,-1.274523 1.419246,-2.284653 2.9873415,-2.284653 1.56638,0 2.814566,1.012116 2.940664,2.284653 h 1.540348 c -9.85e-4,-0.03883 0.0023,0.03854 0,0 -0.122879,-1.962053 -2.08546,-3.523787 -4.481012,-3.523787 z"
+ id="path3458-27-7"
+ sodipodi:nodetypes="cscccccsccsc" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-131.53108"
+ y="-52.445946"
+ id="text6353"><tspan
+ sodipodi:role="line"
+ id="tspan6351"
+ x="-131.53108"
+ y="-52.445946">To the topic overview: 0.Neophyte-Theme.svg</tspan></text>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="redo.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/redo.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-70.881355"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g861">
+ <path
+ d="M 11.852252,16.368127 C 11.147036,16.41033 10.06595,16.148281 9.4117569,15.477428 8.3197313,14.357591 8.0629495,11.705526 9.4005857,10.37578 9.9421922,9.8373683 11.228408,9.1386455 11.973991,9.117585 l 0.0081,1.9221 3.809433,-3.0813085 c 0,0 -3.809433,-3.3256929 -3.809433,-3.3256929 l -0.0088,1.8084223 C 10.330048,6.4719479 8.7735688,7.0303214 7.5254198,8.2829109 4.9862895,10.831075 4.9903662,14.944193 7.416065,17.488628 c 1.2404872,1.301208 2.86537,1.921559 4.496665,1.876334"
+ id="path3372"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.26538837;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 11.629347,19.344995 c 2.963392,0.215839 6.485548,-1.896182 6.714047,-5.880907 l -2.729605,0.368993 c -0.153197,1.621781 -2.423682,2.765463 -3.794776,2.566855"
+ id="path3453"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.26538837;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-44.044163"
+ y="-6.4456997" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="reload.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/reload.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ gradientTransform="matrix(1.4061954,0,0,0.3867044,-3.8196985,13.522738)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient5105-262-943-861"
+ id="radialGradient2864"
+ fy="19.03125"
+ fx="11.25"
+ r="8.0625"
+ cy="19.03125"
+ cx="11.25" />
+ <linearGradient
+ gradientTransform="matrix(0.4873978,0,0,0.4781595,0.4950536,1.7007118)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3533"
+ id="linearGradient2861"
+ y2="22.599676"
+ x2="15.372947"
+ y1="5.0471625"
+ x1="15.372947" />
+ <linearGradient
+ gradientTransform="matrix(0.5107033,0,0,0.5010232,0.3489945,0.2504326)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3266"
+ id="linearGradient2858"
+ y2="29.856804"
+ x2="37.039948"
+ y1="35.773647"
+ x1="33.686768" />
+ <linearGradient
+ gradientTransform="matrix(0.5107033,0,0,0.5010232,0.3489945,0.2504326)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3276"
+ id="linearGradient2856"
+ y2="26.842505"
+ x2="34.96563"
+ y1="34.600941"
+ x1="31.226292" />
+ <linearGradient
+ gradientTransform="matrix(0.4873978,0,0,0.4781595,0.4950536,1.7007118)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient4873"
+ id="linearGradient2853"
+ y2="34.087555"
+ x2="21.553127"
+ y1="2.1102102"
+ x1="21.628975" />
+ <linearGradient
+ id="linearGradient4873">
+ <stop
+ offset="0"
+ style="stop-color:white;stop-opacity:1"
+ id="stop4875" />
+ <stop
+ offset="1"
+ style="stop-color:white;stop-opacity:0"
+ id="stop4877" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3276">
+ <stop
+ offset="0"
+ style="stop-color:#6396cd;stop-opacity:1"
+ id="stop3278" />
+ <stop
+ offset="1"
+ style="stop-color:#83acd5;stop-opacity:0"
+ id="stop3280" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3266">
+ <stop
+ offset="0"
+ style="stop-color:#538ec6;stop-opacity:1"
+ id="stop3268" />
+ <stop
+ offset="1"
+ style="stop-color:#3f84c5;stop-opacity:0"
+ id="stop3270" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3533">
+ <stop
+ offset="0"
+ style="stop-color:#93b9dd;stop-opacity:1"
+ id="stop3535" />
+ <stop
+ offset="1"
+ style="stop-color:#6396cd;stop-opacity:1"
+ id="stop3545" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5105-262-943-861">
+ <stop
+ offset="0"
+ style="stop-color:#0d0d0d;stop-opacity:1"
+ id="stop2487" />
+ <stop
+ offset="1"
+ style="stop-color:#0d0d0d;stop-opacity:0"
+ id="stop2489" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective4276"
+ inkscape:persp3d-origin="12 : 8 : 1"
+ inkscape:vp_z="24 : 12 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 12 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4873"
+ id="linearGradient4311"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.4873978,0,0,0.4781595,-28.454098,-1.7642028)"
+ x1="21.628975"
+ y1="2.1102102"
+ x2="21.553127"
+ y2="34.087555" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3276"
+ id="linearGradient4314"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5107033,0,0,0.5010232,-28.600158,-3.214482)"
+ x1="31.226292"
+ y1="34.600941"
+ x2="34.96563"
+ y2="26.842505" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3266"
+ id="linearGradient4316"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5107033,0,0,0.5010232,-28.600158,-3.214482)"
+ x1="33.686768"
+ y1="35.773647"
+ x2="37.039948"
+ y2="29.856804" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5105-262-943-861"
+ id="radialGradient4322"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.4061954,0,0,0.3867044,-32.76885,10.057823)"
+ cx="11.25"
+ cy="19.03125"
+ fx="11.25"
+ fy="19.03125"
+ r="8.0625" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="-45.762712"
+ inkscape:cy="12.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 12.580859,16.183189 c -2.045567,-0.02208 -3.7640413,-1.771861 -3.7640413,-3.769892 0,-1.719493 1.9298923,-3.5945366 3.8011813,-3.5945366 0.987919,0 1.944998,0.2223313 2.654487,0.8937813 l -1.955184,1.9701633 h 7.364428 c 0,0 0,-7.3644287 0,-7.3644287 L 18.361611,6.622149 C 16.811969,5.1282129 15.020662,4.3454185 12.733586,4.3207221 8.0809485,4.270482 4.3702445,7.9887362 4.3188056,12.53296 c -0.051436,4.544224 3.6094153,8.09853 8.2620534,8.14877"
+ id="path3372"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.6365397;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 12.417205,20.680969 c 3.890634,0.04201 8.645807,-2.433142 6.875628,-5.231229 -1.770179,-2.798088 -3.398566,0.872321 -6.875628,0.733449"
+ id="path3453"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.6365397;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="czc" />
+ <rect
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.84220719;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2166-7-7"
+ width="37.240875"
+ height="36.891399"
+ x="-58.027218"
+ y="-6.2634964" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="rename.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/rename.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ r="15.644737"
+ fy="36.421127"
+ fx="24.837126"
+ cy="36.421127"
+ cx="24.837126"
+ gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1444"
+ xlink:href="#linearGradient8662"
+ inkscape:collect="always" />
+ <radialGradient
+ r="16.956199"
+ fy="22.454971"
+ fx="11.319205"
+ cy="22.454971"
+ cx="11.319205"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,0.606436,42.58614)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1441"
+ xlink:href="#linearGradient2304"
+ inkscape:collect="always" />
+ <radialGradient
+ r="17.171415"
+ fy="0.40010813"
+ fx="24.53788"
+ cy="0.40010813"
+ cx="24.53788"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,2.767009,66.93275)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1438"
+ xlink:href="#linearGradient8650"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8650">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop8652" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop8654" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8662">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop8664" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop8666" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2304">
+ <stop
+ style="stop-color:#73d216"
+ offset="0"
+ id="stop2306" />
+ <stop
+ style="stop-color:#4e9a06"
+ offset="1.0000000"
+ id="stop2308" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective23"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8650"
+ id="radialGradient14616"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,-8.73299,55.433144)"
+ cx="24.53788"
+ cy="0.40010813"
+ fx="24.53788"
+ fy="0.40010813"
+ r="17.171415" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2304"
+ id="radialGradient14619"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,-10.893563,31.086534)"
+ cx="11.319205"
+ cy="22.454971"
+ fx="11.319205"
+ fy="22.454971"
+ r="16.956199" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.675088"
+ inkscape:cx="-2.9131358"
+ inkscape:cy="-4.1843216"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <image
+ y="6.5053983"
+ x="-56.312397"
+ id="image856"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAW
+dAAAFnQBLSCTtwAAAAd0SU1FB9oLCgATAAbzBQ4AAAClSURBVEjH7VRBDsMgDKsRDzMvT36WXYbE
+0gTY1MskLEUgTO0kQK/r4OCvgYwQEWutYSUgIubX/HelT8zsI6K1KDLjkSvRJlW1cdwBSZCE10hN
+ZlgZj0apSRfpm70oScyMIq7+WoGqWtYeX1H9pueZQVT5e8StXWM2s3nU99mZ1J2sVyIrlKdfd3Tw
+8C83ytTfuJ0rTRIA4koA3GKH87+VjDs4eBYvgDeNj5bNBvAAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="16.438356"
+ width="16.438356" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:condensed;font-size:25.22255135px;line-height:23.64614296px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.94584566"
+ x="-0.55489612"
+ y="21"
+ id="text861"><tspan
+ sodipodi:role="line"
+ id="tspan859"
+ x="-0.55489612"
+ y="21"
+ style="stroke-width:0.94584566">A</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:condensed;font-size:24.96328926px;line-height:23.40308571px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.93612343"
+ x="15.339207"
+ y="20.900146"
+ id="text865"><tspan
+ sodipodi:role="line"
+ id="tspan863"
+ x="15.339207"
+ y="20.900146"
+ style="stroke-width:0.93612343">B</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="rect2818"
+ d="M 8.4354707,9.1690975 H 13.105085 V 11.390758 L 16.034471,8.3832038 13.105085,5.390758 v 2.20655 H 8.4354707 Z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.76641166" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="1024"
+ height="1024"
+ sodipodi:docname="resource1024.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource1024.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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" />
+ <inkscape:perspective
+ id="perspective2836"
+ 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" />
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(32,0,0,32,-607.77567,-30.805411)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-05"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="0.92578125"
+ inkscape:cx="234.9415"
+ inkscape:cy="552.99516"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="1024"
+ height="1024"
+ x="-1844.9282"
+ y="-25.924051" />
+ <rect
+ transform="scale(-1,1)"
+ y="-25.924051"
+ x="820.92828"
+ height="1024"
+ width="2"
+ id="rect3613"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3615"
+ width="2"
+ height="1024"
+ x="996.07593"
+ y="-1844.9282"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="-25.924051"
+ x="-1844.9282"
+ height="1024"
+ width="2"
+ id="rect2829"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="2"
+ height="1024"
+ x="23.924051"
+ y="820.92828"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <g
+ transform="matrix(15.999995,0,0,15.999995,6.7016592e-5,0.0013971)"
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-6"
+ style="fill:url(#linearGradient2868-05);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="0.00021362305"
+ x="-1024"
+ height="1023.9996"
+ width="1"
+ id="rect3613-6"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:3.99999928"
+ id="rect3615-4"
+ width="1"
+ height="1023.9996"
+ x="1023"
+ y="0.00021362305"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="0.00021362305"
+ x="0"
+ height="1023.9996"
+ width="1"
+ id="rect2829-0"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:3.99999928" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:3.99999928"
+ id="rect3611-0"
+ width="1"
+ height="1023.9996"
+ x="-1"
+ y="-1023.9998"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="128"
+ sodipodi:docname="resource128.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource128.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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" />
+ <inkscape:perspective
+ id="perspective2836"
+ 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" />
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(4,0,0,4,-61.389685,-24.373882)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.703125"
+ inkscape:cx="-32.810127"
+ inkscape:cy="64"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="128"
+ height="128"
+ x="-216.03375"
+ y="-23.763714" />
+ <rect
+ transform="scale(-1,1)"
+ y="-23.763714"
+ x="88.033752"
+ height="128"
+ width="1"
+ id="rect3613"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3615"
+ width="1"
+ height="128"
+ x="103.23629"
+ y="-216.03375"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="-23.763714"
+ x="-216.03375"
+ height="128"
+ width="1"
+ id="rect2829"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="1"
+ height="128"
+ x="22.763714"
+ y="88.033752"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <g
+ transform="matrix(1.9999998,0,0,1.9999998,6.4e-6,5.5230179e-6)"
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-3"
+ style="fill:url(#linearGradient2868-1);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="7.7486038e-06"
+ x="-128"
+ height="127.99998"
+ width="1"
+ id="rect3613-1"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.41421342"
+ id="rect3615-1"
+ width="1"
+ height="127.99998"
+ x="127"
+ y="1.2643164e-05"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="7.7486038e-06"
+ x="0"
+ height="127.99998"
+ width="1"
+ id="rect2829-0"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.41421342" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.41421342"
+ id="rect3611-3"
+ width="1"
+ height="127.99998"
+ x="-1"
+ y="-127.99998"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="256"
+ height="256"
+ sodipodi:docname="resource256.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource256.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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" />
+ <inkscape:perspective
+ id="perspective2836"
+ 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" />
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(8,0,0,8,-139.52199,-40.6465)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1.8515625"
+ inkscape:cx="-65.620253"
+ inkscape:cy="41.586498"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="256"
+ height="256"
+ x="-448.81012"
+ y="-39.426159" />
+ <rect
+ transform="scale(-1,1)"
+ y="-39.426159"
+ x="192.81012"
+ height="256"
+ width="1"
+ id="rect3613"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3615"
+ width="1"
+ height="256"
+ x="215.57384"
+ y="-448.81012"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="-39.426159"
+ x="-448.81012"
+ height="256"
+ width="1"
+ id="rect2829"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="1"
+ height="256"
+ x="38.426159"
+ y="192.81012"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <g
+ transform="matrix(3.9999994,0,0,3.9999994,2.4570607e-5,3.3955078e-5)"
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-0"
+ style="fill:url(#linearGradient2868-4);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="0"
+ x="-256"
+ height="255.99995"
+ width="1"
+ id="rect3613-6"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:1.99999976"
+ id="rect3615-2"
+ width="1"
+ height="255.99995"
+ x="255"
+ y="1.3829395e-05"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="2.2888184e-05"
+ x="0"
+ height="255.99995"
+ width="1"
+ id="rect2829-9"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.99999976" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.00039053"
+ id="rect3611-9"
+ width="1"
+ height="256.10001"
+ x="-1"
+ y="-256.04999"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="32"
+ height="32"
+ sodipodi:docname="resource32.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource32.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient3609"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(38.661018,-0.15254237)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.85965"
+ inkscape:cx="4.6572231"
+ inkscape:cy="9.7690415"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="g2821"
+ transform="translate(-65.491525,-0.40677966)">
+ <rect
+ y="0"
+ x="0"
+ height="32"
+ width="32"
+ id="rect2818"
+ style="fill:url(#linearGradient3609);fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3613"
+ width="1"
+ height="32"
+ x="-32"
+ y="0"
+ transform="scale(-1,1)" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="31"
+ height="32"
+ width="1"
+ id="rect3615"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect2829"
+ width="1"
+ height="32"
+ x="0"
+ y="0" />
+ <rect
+ transform="matrix(0,-1,-1,0,0,0)"
+ y="-32"
+ x="-1"
+ height="32"
+ width="1"
+ id="rect3611"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ transform="matrix(0.49999994,0,0,0.49999994,1.92e-6,3.0499268e-6)"
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-1"
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="1.9073486e-06"
+ x="-32"
+ height="31.999996"
+ width="1"
+ id="rect3613-9"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.70710671" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.70710671"
+ id="rect3615-6"
+ width="1"
+ height="31.999996"
+ x="30.999998"
+ y="3.1984423e-06"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="-1.9073486e-06"
+ x="3.1984423e-06"
+ height="32"
+ width="1"
+ id="rect2829-9"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.70710671"
+ id="rect3611-3"
+ width="1"
+ height="31.999996"
+ x="-1"
+ y="-31.999996"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="512"
+ height="512"
+ sodipodi:docname="resource512.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource512.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(16,0,0,16,-721.11956,-220.88595)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="0.6546262"
+ inkscape:cx="-419.64078"
+ inkscape:cy="286.00079"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="512"
+ height="512"
+ x="-1339.6958"
+ y="-218.44528" />
+ <rect
+ transform="scale(-1,1)"
+ y="-218.44528"
+ x="827.69586"
+ height="512"
+ width="1"
+ id="rect3613"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3615"
+ width="1"
+ height="512"
+ x="292.55472"
+ y="-1339.6958"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="-218.44528"
+ x="-1339.6958"
+ height="512"
+ width="1"
+ id="rect2829"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="1"
+ height="512"
+ x="217.44528"
+ y="827.69586"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <g
+ transform="matrix(7.9999971,0,0,7.9999971,1.5213106e-4,3.0454102e-4)"
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-3"
+ style="fill:url(#linearGradient2868-1);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="9.1552734e-05"
+ x="-512"
+ height="511.99982"
+ width="1"
+ id="rect3613-1"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:2.8284266"
+ id="rect3615-1"
+ width="1"
+ height="511.99982"
+ x="511"
+ y="2.9513726e-06"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="9.1552734e-05"
+ x="0"
+ height="511.99982"
+ width="1"
+ id="rect2829-0"
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.8284266" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:2.8284266"
+ id="rect3611-3"
+ width="1"
+ height="511.99982"
+ x="-1"
+ y="-511.99982"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="64"
+ height="64"
+ sodipodi:docname="resource64.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/resource64.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective3605"
+ 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" />
+ <inkscape:perspective
+ id="perspective2836"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient3609"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(38.661018,-0.15254237)" />
+ <linearGradient
+ id="linearGradient3603">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3605" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3607" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient2861"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(38.661018,-0.15254237)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322034,-0.05666727)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3603"
+ id="linearGradient863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,2,-85.389828,1.8644068)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient2868-0"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2,0,0,1,77.322024,-64.056669)"
+ x1="-22.661018"
+ y1="0.15254237"
+ x2="-22.661018"
+ y2="32.217113" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.2149125"
+ inkscape:cx="26.033898"
+ inkscape:cy="25.956808"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="g905">
+ <rect
+ y="0.095879197"
+ x="3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818"
+ style="fill:url(#linearGradient2868);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <rect
+ transform="scale(1,-1)"
+ y="-63.904121"
+ x="-3.8146973e-06"
+ height="32"
+ width="64"
+ id="rect2818-22"
+ style="fill:url(#linearGradient2868-0);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ </g>
+ <rect
+ transform="scale(-1,1)"
+ y="0"
+ x="-64"
+ height="64"
+ width="1"
+ id="rect3613"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3615"
+ width="1"
+ height="64"
+ x="63"
+ y="0"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="0"
+ x="0"
+ height="64"
+ width="1"
+ id="rect2829"
+ style="fill:#474747;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="1"
+ height="64"
+ x="-1"
+ y="-64"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <rect
+ style="fill:url(#linearGradient863);fill-opacity:1;stroke:none"
+ id="rect2818-2"
+ width="64"
+ height="64"
+ x="-162.71187"
+ y="2.1694915" />
+ <rect
+ transform="scale(-1,1)"
+ y="2.1694915"
+ x="98.711861"
+ height="64"
+ width="1"
+ id="rect3613-6"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3615-7"
+ width="1"
+ height="64"
+ x="65.169495"
+ y="-162.71187"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="2.1694915"
+ x="-162.71187"
+ height="64"
+ width="1"
+ id="rect2829-5"
+ style="fill:#989898;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ id="rect3611-6"
+ width="1"
+ height="64"
+ x="-3.1694915"
+ y="98.711861"
+ transform="matrix(0,-1,-1,0,0,0)" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="reverse.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/reverse.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.797427"
+ inkscape:cx="-14.043592"
+ inkscape:cy="17.184326"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="layer4"
+ inkscape:label="contorno"
+ style="display:inline"
+ transform="translate(-45.577363,-12.45339)" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-17.393995"
+ y="-14.25548"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-17.393995"
+ y="-14.25548">see: play</tspan></text>
+ <g
+ style="display:inline"
+ id="g1680"
+ transform="matrix(-1,0,0,1,-2.281894,67.1625)">
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.19356728;marker:none"
+ d="m -23.277234,-55.576582 -1.00466,-9.314121 19.9999999,9.328203 z"
+ id="path3375-6-7-2-1-6-7-9-1-5-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.19356728;marker:none"
+ d="m -23.277234,-54.748418 -1.00466,9.314121 19.9999999,-9.328202 z"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-2"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ y="-55.5625"
+ x="-23.281895"
+ height="0.80000001"
+ width="19"
+ id="rect2404"
+ style="display:inline;opacity:1;fill:#171716;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.46142292;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="rewind.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/rewind.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient2679">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop2681" />
+ <stop
+ style="stop-color:#d3d7cf"
+ offset="1"
+ id="stop2683" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2584">
+ <stop
+ id="stop2586"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop2588"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2679"
+ id="radialGradient2947"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.12433615,-0.58283981,1.1894197,0.27849359,-176.99367,10.158125)"
+ cx="64.227074"
+ cy="147.99352"
+ fx="64.227074"
+ fy="147.99352"
+ r="8.75" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2584"
+ id="linearGradient2955"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.55841512,0,0,0.58502018,-20.103849,-58.940849)"
+ x1="49.430401"
+ y1="112.94963"
+ x2="49.667324"
+ y2="115.13713" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2679"
+ id="radialGradient2958"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.12433615,-0.58283981,1.1894197,0.27849359,-167.50056,10.158125)"
+ cx="64.227074"
+ cy="147.99352"
+ fx="64.227074"
+ fy="147.99352"
+ r="8.75" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.906433"
+ inkscape:cx="-22.931465"
+ inkscape:cy="5.9906559"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:#000000;stroke:#000000;stroke-width:1.71468854;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 18.142477,5.857232 V 18.142656 L 8.6494199,12.182762 v 5.959894 H 5.8573443 V 5.857232 h 2.7920756 v 5.959893 z"
+ id="path5288"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ inkscape:export-ydpi="90"
+ inkscape:export-xdpi="90"
+ inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png"
+ sodipodi:nodetypes="cccc"
+ id="path5515"
+ d="m 18.142509,5.857232 -9.7722647,6.142712 9.7722647,6.142712 z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2958);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ sodipodi:nodetypes="ccccc"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.07027025;fill:url(#linearGradient2955);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
+ d="M 18.142509,6.003487 17.880751,6.021769 15.664542,7.411192 18.142509,7.1735275 Z"
+ id="path2915"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#4d4d4d;stroke-width:0.57156318;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 18.142509,5.857232 -9.7722647,6.142712 9.7722647,6.142712 z"
+ id="path5521"
+ sodipodi:nodetypes="cccc"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 17.863302,6.3691245 8.9112089,11.999944 17.863302,17.630763 Z M 17.304886,7.4111918 V 16.588696 L 9.9931378,11.999944 Z"
+ id="path5525"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.56111109;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 11.950787,10.703545 17.269762,7.4294736 V 10.964688 Z"
+ id="path3197"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2947);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none"
+ d="M 8.6494199,5.8572313 H 5.8573443 V 18.142656 h 2.7920756 z"
+ id="path3110"
+ sodipodi:nodetypes="ccccc"
+ inkscape:export-filename="/home/lapo/Desktop/Grafica/Icone/media-actions.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ transform="scale(1,-1)"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:0.57156289;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect1923"
+ width="1.6752454"
+ height="11.115383"
+ x="6.4155383"
+ y="-17.557636" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#4d4d4d;stroke-width:0.57156289;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 5.8571209,18.142656 V 5.8572313 H 8.6491965 V 18.142656 Z"
+ id="path1935"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.56111109;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3;marker:none"
+ d="M 7.8117972,10.829903 6.7191257,10.734573 V 6.7529822 h 1.13522 L 7.8118,10.829898 Z"
+ id="path5291"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="-35.557568"
+ y="-13.666144"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-35.557568"
+ y="-13.666144">see: play</tspan></text>
+ <g
+ transform="rotate(-180,42.462288,12.04149)"
+ style="display:inline"
+ id="g1005">
+ <path
+ inkscape:connector-curvature="0"
+ id="path968-6-9-9-4-7-0"
+ d="M 81.847301,4.5829805 V 19.582981"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:1.44435859;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-5-4-6-6"
+ d="M 64.087238,11.682981 63.27967,5.0833679 79.381687,11.682981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3375-6-7-2-1-6-7-9-1-7-02-6-5-2"
+ d="M 64.087238,12.482981 63.27967,19.082592 79.381687,12.482981 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.41024637;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.682981"
+ x="64.089844"
+ height="0.80000001"
+ width="15.291842"
+ id="rect2198-0-2-9"
+ style="display:inline;opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.990816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="right_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/right_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="31.300082"
+ inkscape:cx="0.60486688"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11"
+ height="4.25"
+ x="6.5"
+ y="-17.75"
+ ry="0"
+ transform="matrix(0,1,-1,0,0,0)" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -16.308281,14.989655 V 3.4896553 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="ruler.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ruler.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 12 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="24 : 12 : 1"
+ inkscape:persp3d-origin="12 : 8 : 1"
+ id="perspective3006" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1321"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-69.491372"
+ inkscape:cy="14.876367"
+ inkscape:window-x="45"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 11.826371,2.0307202 c -1.9831377,0 -3.5729782,1.6248692 -3.5729782,3.6080079 0,1.1419406 0.5402927,2.1496658 1.3661389,2.8023366 -2.6873283,4.7835383 -3.1496566,9.5434043 -4.5537964,14.3269433 0,0 0.9016831,-1.558264 2.0250265,-3.530615 1.8015121,-3.163074 4.1731032,-7.391133 4.3099852,-7.964973 0.136882,-0.57384 0.507259,-0.947113 0.700584,0 0.193325,0.947114 6.415618,11.495588 6.415618,11.495588 -1.400058,-4.769633 -1.852212,-9.522282 -4.518767,-14.2919141 0.861511,-0.6511946 1.436197,-1.6748965 1.436197,-2.8373658 0,-1.9831387 -1.62487,-3.6080079 -3.608008,-3.6080079 z m 0,1.9266062 c 0.928613,0 1.681402,0.7527892 1.681402,1.6814017 0,0.9286125 -0.752789,1.6814018 -1.681402,1.6814018 -0.928612,0 -1.681401,-0.7527893 -1.681401,-1.6814018 0,-0.9286125 0.752789,-1.6814017 1.681401,-1.6814017 z"
+ id="path3802"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssccszzccsssssss" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -58.262712,23.038136 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="scope.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/scope.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title924">scope</title>
+ <metadata
+ id="metadata8">
+ <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>scope</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>editpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#262626"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="18.522372"
+ inkscape:cx="-1.9401997"
+ inkscape:cy="3.0064846"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false"
+ inkscape:measure-start="0.989285,7.39985"
+ inkscape:measure-end="7.47899,0.929928"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <rect
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99900001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect912"
+ width="33.21534"
+ height="21.603926"
+ x="-28.916883"
+ y="28.689224" />
+ <image
+ y="27.97213"
+ x="-24.957636"
+ id="image909"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAAAA
+AAAA+UO7fwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIGwwSMSN1VJ4AAAAddEVYdENv
+bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAANBJREFUSMftVUEOgzAMsyOOnHlbH8Nx
+j9nbOHP3DtMmKE1DK6Zp0nJCKLETN3WBXw9GCZJUBSDZzR6Bn83pKtQdOpNLD5wkofFZyJUeOAAw
+ge+aLCwEB7D7ziMBAgSyOImF4BVpkI4HnpMMZeE2krzINGr3P+10djfJ4kVeGew5r9mcjWwCJEDt
+GL07XcGwpupbewPWC75AWhATDk0dz8eL9CKZUPYk65UjB/SmMfei5N3OddecwKJdWMl+XRJnCg/8
+Mhv+mGWfepC++qL9AwAeVPOZcmgiSdEAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#efede3;stroke-width:0.96;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path926"
+ sodipodi:sides="8"
+ sodipodi:cx="12"
+ sodipodi:cy="12"
+ sodipodi:r1="12.454138"
+ sodipodi:r2="11.506123"
+ sodipodi:arg1="1.1752882"
+ sodipodi:arg2="1.5679873"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="M 16.798295,23.49269 7.2663478,23.519465 0.50731025,16.798295 0.48053452,7.2663478 7.2017054,0.50731025 16.733652,0.48053452 23.49269,7.2017054 l 0.02678,9.5319466 z" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:0.67541033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path934"
+ sodipodi:sides="3"
+ sodipodi:cx="-13.284258"
+ sodipodi:cy="16.245537"
+ sodipodi:r1="4.5207419"
+ sodipodi:r2="2.260371"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m -9.3691805,18.505908 -7.8301545,0 3.915077,-6.781113 z"
+ inkscape:transform-center-y="0.58502738"
+ transform="rotate(45,-5.6138804,40.535759)"
+ inkscape:transform-center-x="0.58502693" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:0.67541033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path934-4"
+ sodipodi:sides="3"
+ sodipodi:cx="-13.284258"
+ sodipodi:cy="16.245537"
+ sodipodi:r1="4.5207419"
+ sodipodi:r2="2.260371"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m -9.3691805,18.505908 -7.8301545,0 3.915077,-6.781113 z"
+ inkscape:transform-center-y="-0.58502682"
+ transform="rotate(135,-1.509136,15.202193)"
+ inkscape:transform-center-x="0.58502723" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#ff00ff;stroke-width:0.67541033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path934-3"
+ sodipodi:sides="3"
+ sodipodi:cx="-13.284258"
+ sodipodi:cy="16.245537"
+ sodipodi:r1="4.5207419"
+ sodipodi:r2="2.260371"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m -9.3691805,18.505908 -7.8301545,0 3.915077,-6.781113 z"
+ inkscape:transform-center-y="-2.5806841"
+ transform="rotate(-165,2.4273047,14.995814)"
+ inkscape:transform-center-x="3.2138262" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:#ffcc00;stroke-width:0.67541033;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path934-1"
+ sodipodi:sides="3"
+ sodipodi:cx="-13.284258"
+ sodipodi:cy="16.245537"
+ sodipodi:r1="4.5207419"
+ sodipodi:r2="2.260371"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m -9.3691805,18.505908 -7.8301545,0 3.915077,-6.781113 z"
+ inkscape:transform-center-y="1.4296197"
+ transform="rotate(105,6.1509372,23.09815)"
+ inkscape:transform-center-x="-0.13732826" />
+ <path
+ style="fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 14.158458,9.758092 22.82389,7.4611715 19.725718,4.343741 Z"
+ id="path973"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="600"
+ height="560"
+ sodipodi:docname="setformat_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/setformat_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title917">Neophyte: setformat_bg</title>
+ <metadata
+ id="metadata8">
+ <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>Neophyte: setformat_bg</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: Neu: schlicht und zeitlos (mundane).
+See also: new_bg.</dc:description>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>cinelerra</rdf:li>
+ <rdf:li>theme</rdf:li>
+ <rdf:li>neophyte</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3709">
+ <stop
+ style="stop-color:#1a1a1a;stop-opacity:1;"
+ offset="0"
+ id="stop3711" />
+ <stop
+ style="stop-color:#9e9e9e;stop-opacity:1;"
+ offset="1"
+ id="stop3713" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3709"
+ id="linearGradient3715"
+ x1="447.5"
+ y1="530"
+ x2="448.77637"
+ y2="81.708862"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.99902889,0,0,1.002011,0.28960303,-1.0330366)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3709"
+ id="linearGradient3731"
+ x1="122.52665"
+ y1="173.40161"
+ x2="122.44225"
+ y2="18.06407"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="0.55625"
+ inkscape:cx="300"
+ inkscape:cy="280"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer47"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer46"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3604"
+ width="600"
+ height="560"
+ x="0"
+ y="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#666666;stroke-width:0.81815666;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
+ d="M 0.40907832,10.409079 H 239.59092 V 69.590922 H 0.40907832 Z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#666666;stroke-width:0.99802053;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 10.49901,82.49901 V 115.3556 515.50099 H 289.50099 V 96.45199 H 119.34771 V 95.3556 C 110.86273,84.082402 108.08141,82.49901 94.10451,82.49901 Z"
+ id="rect2820"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2933"
+ d="m 309.50005,82.500049 v 31.055831 401.94407 h 279.9999 L 588.31967,96.66045 H 416.51011 V 95.55588 C 405.8772,82.642261 405.22853,82.500049 391.23263,82.500049 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#666666;stroke-width:1.00010681;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="matrix(1.0490043,0,0,1.0566614,-42.591217,-51.367602)"
+ style="fill:#000000;fill-opacity:1;stroke:#666666;stroke-width:2;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="m 298.89142,396.40665 c 0,63.47674 -51.83368,114.9348 -115.77376,114.9348 -63.94008,0 -115.773758,-51.45806 -115.773758,-114.9348 0,-63.47674 51.833678,-114.93481 115.773758,-114.93481 63.94008,0 115.77376,51.45807 115.77376,114.93481 z"
+ id="path3707"
+ sodipodi:nodetypes="csssc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer47"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect3604-7-3-3"
+ width="600"
+ height="560"
+ x="5.8984377e-05"
+ y="8.7402341e-08" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#121212;fill-opacity:1;stroke:#333333;stroke-width:2.10565186;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="m 270.94723,367.5 c 0,67.07342 -54.37376,121.44717 -121.44713,121.44717 -67.0735,0 -121.4472,-54.37375 -121.4472,-121.44717 0,-67.07342 54.3737,-121.44717 121.4472,-121.44717 67.07337,0 121.44713,54.37375 121.44713,121.44717 z"
+ id="path3707-3-5-3"
+ sodipodi:nodetypes="csssc" />
+ <g
+ id="g862"
+ transform="translate(223.27974,95.434084)">
+ <rect
+ y="-98.135048"
+ x="-1187.717"
+ height="560"
+ width="600"
+ id="rect3604-7-3"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="rect2818-4-3"
+ d="m -1187.308,-87.725971 h 239.18188 v 59.181843 H -1187.308 Z"
+ style="fill:#252525;fill-opacity:1;stroke:#737373;stroke-width:0.81815666;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="rect2820-6-8"
+ d="m -1177.218,-15.63604 v 32.85659 400.14539 h 279.00195 V -1.6830596 h -170.15325 v -1.09639 c -8.485,-11.2731984 -11.2663,-12.8565904 -25.2432,-12.8565904 z"
+ style="fill:#252525;fill-opacity:1;stroke:#737373;stroke-width:0.99802053;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="fill:#252525;fill-opacity:1;stroke:#737373;stroke-width:1.00010681;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M -878.21699,-15.635001 V 15.42083 417.3649 h 279.9999 l -1.18028,-418.8394996 h -171.80956 v -1.10457 c -10.63291,-12.9136194 -11.28158,-13.0558314 -25.27748,-13.0558314 z"
+ id="path2933-2-0"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssc"
+ id="path3707-3-5"
+ d="m -916.76987,269.36495 c 0,67.07342 -54.37376,121.44717 -121.44713,121.44717 -67.0735,0 -121.4472,-54.37375 -121.4472,-121.44717 0,-67.07342 54.3737,-121.44717 121.4472,-121.44717 67.07337,0 121.44713,54.37375 121.44713,121.44717 z"
+ style="fill:#000000;fill-opacity:1;stroke:#666666;stroke-width:2.10565186;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g880"
+ transform="translate(-25.999988,-49.05879)">
+ <text
+ transform="scale(1.2482481,0.80112279)"
+ id="text1706"
+ y="156.58189"
+ x="428.58304"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86.73300934px;line-height:116.16028595px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#2ca089;fill-opacity:1;stroke:none;stroke-width:4.64641142"
+ xml:space="preserve"><tspan
+ style="fill:#2ca089;stroke-width:4.64641142"
+ y="156.58189"
+ x="428.58304"
+ id="tspan1704"
+ sodipodi:role="line">C</tspan></text>
+ <text
+ id="text1702"
+ y="111.82423"
+ x="553.03113"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.28116989px;line-height:41.89442444px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.67577684"
+ xml:space="preserve"><tspan
+ style="fill:#262626;fill-opacity:1;stroke-width:1.67577684"
+ y="111.82423"
+ x="553.03113"
+ id="tspan1700"
+ sodipodi:role="line">GG</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="30"
+ height="25"
+ viewBox="0 0 7.9375 6.6145835"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="shbtn_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29390958,0,0,0.37169004,-17.232041,-297.33403)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.8714683"
+ inkscape:cx="-102.98676"
+ inkscape:cy="2.065088"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="-0.75176044,-2.1185976"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-7.6488686"
+ orientation="0,1"
+ id="guide2243"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="9.56786,5.330665"
+ orientation="0,1"
+ id="guide5890"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.3854)">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-4);fill-opacity:1;stroke:#141414;stroke-width:0.29585132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-0"
+ width="7.6416488"
+ height="6.3187318"
+ x="-7.7895746"
+ y="-296.85205"
+ transform="scale(-1)" />
+ <rect
+ y="-296.72388"
+ x="-1.179107"
+ height="0.99119955"
+ width="1.0352967"
+ id="rect3597-5-7-9-4-8-9-8-3-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.02303662;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-14.87207"
+ y="293.60184"
+ id="text2253"><tspan
+ sodipodi:role="line"
+ id="tspan2251"
+ x="-14.87207"
+ y="293.60184"
+ style="stroke-width:0.26458332">shbtn_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.272654"
+ y="283.66003"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-27.272654"
+ y="283.66003"
+ style="stroke-width:0.26458332">see: recordpatch_up</tspan></text>
+ <rect
+ y="291.19556"
+ x="8.6115761"
+ height="5.793478"
+ width="7.116394"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1"
+ style="fill:none;fill-opacity:1;stroke:#ffcc00;stroke-width:0.2919392;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <ellipse
+ style="opacity:1;fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:#aa0000;stroke-width:0.24098375;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path5601"
+ cx="3.9345791"
+ cy="289.13086"
+ rx="0.67325813"
+ ry="0.63306367" />
+ </g>
+</svg>
--- /dev/null
+<?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="30"
+ height="25"
+ viewBox="0 0 7.9375 6.6145835"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="shbtn_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.039146,199.80076)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-1.2561892,289.19339)"
+ id="b-5"
+ y1="45.538715"
+ y2="11.687484"
+ x2="17.84823"
+ gradientUnits="userSpaceOnUse"
+ x1="36.312538">
+ <stop
+ stop-color="#536161"
+ id="stop12-6"
+ style="stop-color:#bfc9c9;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-color="#f4f5f5"
+ id="stop14-2"
+ style="stop-color:#fbfbfb;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-9"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.053059,207.26327)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-1"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-0"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="70-0-8-0"
+ y1="527.01447"
+ x1="406.50085"
+ y2="539.82538"
+ x2="419.97357"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.17885681,0,0,0.17885681,-70.099446,215.5085)"
+ xlink:href="#b-5">
+ <stop
+ stop-color="#292c2f"
+ id="stop17-5-7"
+ style="stop-color:#4d4d4d;stop-opacity:1" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19-3-2"
+ style="stop-color:#4d4d4d;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29390956,0,0,0.37169004,-9.294548,290.05143)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.277996"
+ inkscape:cx="15"
+ inkscape:cy="5.5481784"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:lockguides="true">
+ <sodipodi:guide
+ position="3.3072917,7.2487089"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="true"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="true" />
+ <sodipodi:guide
+ position="6.6145832,0.010933196"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="true" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-7.6488686"
+ orientation="0,1"
+ id="guide2243"
+ inkscape:locked="true" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.3854)">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-1);fill-opacity:1;stroke:#141414;stroke-width:0.29585132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-6"
+ width="7.6416488"
+ height="6.3187318"
+ x="0.14792567"
+ y="290.53333" />
+ <rect
+ y="290.79596"
+ x="0.41055304"
+ height="5.793478"
+ width="7.116394"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-1"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.2919392;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-14.737009"
+ y="294.0752"
+ id="text2249"><tspan
+ sodipodi:role="line"
+ id="tspan2247"
+ x="-14.737009"
+ y="294.0752"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">shbtn_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.272654"
+ y="283.66003"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-27.272654"
+ y="283.66003"
+ style="stroke-width:0.26458332">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="30"
+ height="25"
+ viewBox="0 0 7.9375 6.6145836"
+ version="1.1"
+ id="svg1396"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="shbtn_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/shbtn_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1960">shbtn_up</title>
+ <defs
+ id="defs1390">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-5-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.29390958,0,0,0.37169005,-9.2945502,290.05142)" />
+ <linearGradient
+ id="a"
+ y1="542.69"
+ y2="503.79999"
+ x2="0"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ stop-color="#c6cdd1"
+ id="stop2" />
+ <stop
+ offset="1"
+ stop-color="#e0e5e7"
+ id="stop4" />
+ </linearGradient>
+ <linearGradient
+ id="c"
+ y1="42"
+ y2="6"
+ x2="0"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ stop-color="#c61423"
+ id="stop12" />
+ <stop
+ offset="1"
+ stop-color="#dc2b41"
+ id="stop14" />
+ </linearGradient>
+ <linearGradient
+ id="d"
+ y1="503.79999"
+ x1="399.57001"
+ y2="528.79999"
+ x2="424.57001"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-384.57,-499.8)">
+ <stop
+ stop-color="#292c2f"
+ id="stop17" />
+ <stop
+ offset="1"
+ stop-opacity="0"
+ id="stop19" />
+ </linearGradient>
+ <linearGradient
+ id="b"
+ y1="44"
+ y2="4"
+ gradientUnits="userSpaceOnUse"
+ x2="0"
+ gradientTransform="matrix(0.99794,0,0,1.0073,-383.81,-503.28)">
+ <stop
+ stop-color="#cea476"
+ id="stop7" />
+ <stop
+ offset="1"
+ stop-color="#dab58b"
+ id="stop9" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#ffcbff"
+ borderopacity="1"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.51"
+ inkscape:cx="79.188432"
+ inkscape:cy="-91.796943"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ borderlayer="true">
+ <sodipodi:guide
+ position="3.3072917,7.2487089"
+ orientation="1,0"
+ id="guide1996"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="6.6145833,0.010933196"
+ orientation="1,0"
+ id="guide1998"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-2.4514458,-0.46694205"
+ orientation="0,1"
+ id="guide2000"
+ inkscape:locked="false" />
+ <inkscape:grid
+ type="xygrid"
+ id="grid2241" />
+ <sodipodi:guide
+ position="6.6145832,-7.6488686"
+ orientation="0,1"
+ id="guide2243"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="6.6145832,-15.258378"
+ orientation="0,1"
+ id="guide2245"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1393">
+ <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>shbtn_up</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: new.</dc:description>
+ <dc:source>Olaf</dc:source>
+ <dc:relation>shbtn_dn, shbtn_hi</dc:relation>
+ <dc:language>deu</dc:language>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Neophyte</rdf:li>
+ <rdf:li>Cinelerra</rdf:li>
+ <rdf:li>Theme</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Hg Menubar"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-290.38539)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-14.87207"
+ y="301.61505"
+ id="text2249"><tspan
+ sodipodi:role="line"
+ id="tspan2247"
+ x="-14.87207"
+ y="301.61505"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">shbtn_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-14.87207"
+ y="308.87115"
+ id="text2253"><tspan
+ sodipodi:role="line"
+ id="tspan2251"
+ x="-14.87207"
+ y="308.87115"
+ style="stroke-width:0.26458332">shbtn_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.002754"
+ y="279.24939"
+ id="text2257"><tspan
+ sodipodi:role="line"
+ id="tspan2255"
+ x="-27.002754"
+ y="279.24939"
+ style="stroke-width:0.26458332">shbtn_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.272654"
+ y="283.66003"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-27.272654"
+ y="283.66003"
+ style="stroke-width:0.26458332">s.a.: recordpatch_up</tspan></text>
+ <g
+ id="g5491"
+ transform="translate(-11.498447,-1.6654226)">
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ style="fill:#242424;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ id="rect2825-5"
+ width="67.733337"
+ height="6.8791666"
+ x="-61.118755"
+ y="290.38541" />
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ style="fill:#3b3b3b;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ id="rect2827-7"
+ width="67.733337"
+ height="0.26458335"
+ x="-61.118755"
+ y="290.38541" />
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ y="296.99997"
+ x="-61.118755"
+ height="0.26458335"
+ width="67.733337"
+ id="rect2829-0"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.26458335" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="0.023519926"
+ y="273.30267"
+ id="text5522"><tspan
+ sodipodi:role="line"
+ x="0.023519926"
+ y="273.30267"
+ style="stroke-width:0.26458335"
+ id="tspan5582">30*52 = gesamte Fläche</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-5-8);fill-opacity:1;stroke:#141414;stroke-width:0.29585132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-5"
+ width="7.6416488"
+ height="6.3187323"
+ x="0.14792569"
+ y="290.53333"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ff_checked.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222247px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-0.15158421"
+ y="276.45456"
+ id="text5580"><tspan
+ sodipodi:role="line"
+ id="tspan5578"
+ x="-0.15158421"
+ y="276.45456"
+ style="stroke-width:0.26458335">30*25 = Icon max. </tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.52777767px;line-height:6.61458349px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="-0.03484828"
+ y="260.46176"
+ id="text5894"><tspan
+ sodipodi:role="line"
+ id="tspan5892"
+ x="-0.03484828"
+ y="260.46176"
+ style="stroke-width:0.26458335">Vorsicht! Die Buttons oben/unten haben unterschiedliche Maße. </tspan><tspan
+ sodipodi:role="line"
+ x="-0.03484828"
+ y="267.07635"
+ style="stroke-width:0.26458335"
+ id="tspan5896">Durchgehend Hinterlegen geht nicht.</tspan></text>
+ <g
+ transform="matrix(0.13227513,0,0,0.13227513,-26.901421,224.54538)"
+ id="g38">
+ <path
+ style="fill:url(#a);stroke-width:2.79999995;stroke-opacity:0.55"
+ inkscape:connector-curvature="0"
+ d="m 408.57,503.8 c -11.08,0 -20,8.92 -20,20 0,11.08 8.92,20 20,20 11.08,0 20,-8.92 20,-20 0,-11.08 -8.92,-20 -20,-20 m 0,11.11 c 4.924,0 8.889,3.964 8.889,8.889 0,4.924 -3.964,8.889 -8.889,8.889 -4.924,0 -8.889,-3.964 -8.889,-8.889 0,-4.924 3.964,-8.889 8.889,-8.889"
+ id="path24" />
+ <path
+ style="fill:url(#c);fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ d="m 15.223,6.04 c -4.506,2.197 -8.05,6.03 -9.865,10.738 l 9.898,5.656 c 0.56,-3.162 2.777,-5.729 5.73,-6.789 z m 17.555,0 -5.764,9.605 c 2.954,1.06 5.171,3.627 5.73,6.789 l 9.898,-5.656 C 40.824,12.066 37.283,8.237 32.777,6.04 M 15.256,25.571 5.358,31.227 c 1.818,4.712 5.359,8.541 9.865,10.738 l 5.764,-9.605 c -2.954,-1.06 -5.171,-3.627 -5.73,-6.789 m 17.488,0 c -0.56,3.162 -2.777,5.729 -5.73,6.789 l 5.764,9.605 c 4.506,-2.197 8.05,-6.03 9.865,-10.738 z"
+ transform="translate(384.57,499.8)"
+ id="path26" />
+ <g
+ transform="translate(384.57,499.8)"
+ id="g34">
+ <path
+ style="fill:#99a1a7;stroke-width:2.79999995;stroke-opacity:0.55"
+ inkscape:connector-curvature="0"
+ d="m 4.01,23.5 c -0.004,0.167 -0.012,0.332 -0.012,0.5 0,11.08 8.92,20 20,20 11.08,0 20,-8.92 20,-20 0,-0.168 -0.008,-0.333 -0.012,-0.5 C 43.721,34.346 34.906,43 23.998,43 13.086,43 4.274,34.346 4.01,23.5"
+ id="path28" />
+ <path
+ style="opacity:0.2;fill:url(#d);fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ d="M 11,10 10.195,13 8,17 l -1,3 -1,4 1,4 3,9 H 9 l 2.975,2.975 c 3.345,2.518 7.498,4.03 12.03,4.03 6.05,0 11.446,-2.672 15.11,-6.893 L 31.213,29.21 c -1.612,2.232 -4.23,3.684 -7.205,3.684 -4.924,0 -8.889,-3.964 -8.889,-8.889 0,-2.975 1.452,-5.593 3.684,-7.205 l -6.795,-6.795 z"
+ id="path30" />
+ <path
+ style="fill:url(#b);stroke-width:2.79999995;stroke-opacity:0.55"
+ inkscape:connector-curvature="0"
+ d="m 10.5,11 c -0.277,0 -0.5,0.223 -0.5,0.5 0,0.174 0.093,0.319 0.227,0.408 -2.657,3.418 -4.264,7.711 -4.264,12.412 0,4.567 1.53,8.737 4.053,12.11 C 10.012,36.455 10,36.478 10,36.504 c 0,0.277 0.223,0.5 0.5,0.5 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.032 -0.012,-0.061 -0.018,-0.092 h 0.16 C 11.096,36.274 11.034,36.152 10.953,36.07 8.458,32.83 6.961,28.763 6.961,24.324 c 0,-0.555 0.025,-1.104 0.07,-1.646 0.321,-3.797 1.739,-7.263 3.922,-10.1 0.339,-0.342 0.388,-1.35 0,-1.576 -0.039,0.045 -0.073,0.094 -0.111,0.139 -0.089,-0.085 -0.208,-0.139 -0.342,-0.139 m 26.473,0 c -0.388,0.226 -0.339,1.234 0,1.576 2.183,2.835 3.601,6.301 3.922,10.1 0.046,0.542 0.07,1.092 0.07,1.646 0,4.439 -1.497,8.506 -3.992,11.746 -0.081,0.082 -0.144,0.204 -0.189,0.342 h 0.115 l 0.104,0.105 c 0.007,0.264 0.217,0.473 0.48,0.482 l 0.004,0.004 0.002,-0.002 c 0.004,0 0.008,0.002 0.012,0.002 0.277,0 0.5,-0.223 0.5,-0.5 0,-0.054 -0.016,-0.104 -0.031,-0.152 2.488,-3.355 3.994,-7.496 3.994,-12.03 0,-4.686 -1.596,-8.966 -4.238,-12.379 0.162,-0.083 0.275,-0.246 0.275,-0.441 0,-0.277 -0.223,-0.5 -0.5,-0.5 -0.155,0 -0.287,0.075 -0.379,0.186 -0.051,-0.06 -0.096,-0.126 -0.148,-0.186"
+ id="path32" />
+ </g>
+ <path
+ style="fill:#7e1722;stroke-width:2.79999995;stroke-opacity:0.55"
+ inkscape:connector-curvature="0"
+ d="m 395.07,509.8 c -0.831,0 -1.5,0.669 -1.5,1.5 0,0.831 0.669,1.5 1.5,1.5 0.831,0 1.5,-0.669 1.5,-1.5 0,-0.831 -0.669,-1.5 -1.5,-1.5 m 27,0 c -0.831,0 -1.5,0.669 -1.5,1.5 0,0.831 0.669,1.5 1.5,1.5 0.831,0 1.5,-0.669 1.5,-1.5 0,-0.831 -0.669,-1.5 -1.5,-1.5 m -27,1 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 m 27,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 m -27,24 c -0.831,0 -1.5,0.669 -1.5,1.5 0,0.831 0.669,1.5 1.5,1.5 0.831,0 1.5,-0.669 1.5,-1.5 0,-0.831 -0.669,-1.5 -1.5,-1.5 m 27,0 c -0.831,0 -1.5,0.669 -1.5,1.5 0,0.831 0.669,1.5 1.5,1.5 0.831,0 1.5,-0.669 1.5,-1.5 0,-0.831 -0.669,-1.5 -1.5,-1.5 m -27,1 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5 m 27,0 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0 -0.5,-0.223 -0.5,-0.5 0,-0.277 0.223,-0.5 0.5,-0.5"
+ id="path36" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888903px;line-height:6.61458349px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458335"
+ x="31.714954"
+ y="295.77341"
+ id="text908"><tspan
+ sodipodi:role="line"
+ id="tspan906"
+ x="31.714954"
+ y="295.77341"
+ style="stroke-width:0.26458335">Die einprogrammierten … stehen in Konflikt</tspan></text>
+ <image
+ y="312.25836"
+ x="6.6145835"
+ id="image1061"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIMAAAB7CAIAAADYPqRFAADSQ2lDQ1BJQ0MgcHJvZmlsZQAAeJzs un1wIt2eHtYzw8wgDZKQ1JKQ1IgWNNBIDTTQoAZaHy0JSS2pJSEJSUhCEpphZnjvy3sv15dd4128 MZXCNuWwNuXCNnGIQ7J4l9g4IQl2KBdxltTiMnawF6/ZLezgLOvFtaTMZolNOdgmzP2ovTdJlSup /BcfquDhnOZ8/c55nuc0Dbz4Uz97tMNevAQAwPPN9757vr8N39hv4be/AbwFBMA4sAjgzvd/4Dvs xd7l8BJg13IM6AkaB34i/YtfA158+ayuHp3u0sD/syR4/53vfg8AXvxnQ7z809/7zhf8N4cY/Nrn cf8I/5Tb9dND/A+HGDnCNQYA+NJjwDvEa0M8/A3AO8J1miH+936A8S/5f2KI/4sPnm8+AMAraog/ fPB8+IL/whAHPrj+wHsA4MBD/IeOcK3m9+vR6of5f/6HdQ7HyvnFL/i7w4kZ4v/6S38+/QB/v2/P P8Bf+gZ+9/J8Z4h/d4hnP/0Yfv4xTGu3h3W+5gLArxBH+NoQl7/0bXRb+2Veywc/zNf8KP97rj/4 pV/Azre/4/+u+9Pn78FaHDfCu66vv4aZb96rvpR9idkPY/EPfxgL0w/m7Pt59R/lAdt/bAXYG8Jj c2v4/vIHc/D99JZ1fuNzfv2jsHD/zQBgASfwDeAbvn/9k1f8mx9e9Pd/dwr4R41f/X4zD3/oFf/N 8PO3hnlvflj+J//5FPCLw3Jy9S8D6P1fBv7BTw0zfW6d9oflL340No0KB36sL9D1Z/f3XGffdn/z vfVdgx7HMXjf6fE417WqH/0UEA47eA18BtzA9wAXcAZ8e4i+GeJ1YBcwAHoAH74wAAb2h933DF/O YYkWUAHaf3sDquFQ5oZX/cI//sEQ//tf/Hs/vfu/TgH/2xB/Gd6XoVh/+sf6O/oTwfiJ9OvZre9/ DoZpchiFn5340/+Xa76kH+X/ZPmPtfHu+23YtGsazY9KecMp2B0O/uvhCwZsw6GtARpA83+++v/t AH+yffj3a4R3vv31t78Ln3332x/dX7sw+PsN/H888p9YJz+OX/7+Wv+zwy7uPA+z4N/PM/+PAPCX fnO4FX/l9/PEPw8AE3kA+OuW977v/tQP63k9nD947a/+0d8bDIbc9/F736//1Ss+8IO98mPp/+b7 C4D/w94AnCFTvgMmh2wJAyvDdUcDp8DDcDX+EeBPA78E/A3g14HfezH+YvUF8+KrF3/ixV958Wsv /tVL6cvTlz/z8pde/sard682Xv2BV+lXv8kRcuycP8OpvZ5/7XidfP07b3Rvfu7N3367+Pbrt/8d F+R+xS2OLI38zMhvjJpG//y7F+8+v/u7PDPvL47Njv3Rsf99/JvxfzLxMPEb/Cv+r01eTf7G1OPU b09/Z7oP/vGZ+Zn/fHZz9tfmvhFwBb8wvzv/Txb+2KJy8e9Df1i4Ivz1pT8mMok6cGr5Ubwgrkn+ DGKXCqVN2V+S/xS6o5hW/NbKX1uNYB+VtGpJ9a/V/xP+y5pf1P5J3c8Qn/XXhoM1itQaV00ys4QS ryMb6KZqa43e3j7dedz1WkJ7/9F+7uBXmd894h/r2JuTnzv9pbN/cM650F+6bf/xVe1myn56G7n7 u46Zh/vHX3j63efN9z//4Tc/kp9+/vPvfLX/rZSH+83X3/5Vr/m7f/F7M77QT/3LP/iN/7d/xvmz /+gPO36u8UfeB3/n3/9eCPijkT8uCmf/xMF/8D///M/+qYVo/k/fx178mV/6cxf/IfDn/0rC+Rdm /5O/85+GfmH7L774xV9Oh/7ScWbmr/zj/zLzX/3cf3P+V9H/FsjX//pfK/zZv/Ezv/z0Pxz8iu5v wn9r4m+//Dv/ovLP/t4/rf6TX/ut2m//Rrv+e//oX/1j7m/O/Zbit9f/6eXvfPO/hP/ZL/3u3/q9 f/bPZ3qb//Jb/T/3r8tfVs2/i/+/i/+/i///r+MPvECA4Bvmpf0FyIu+CryITdU5yZfoPPK69DIt 8rzpv8KkKS7/VWF1MEJwcC056uZkyeC7yGvLRpmXfV2ygGO1N/YjxwTvTd0a48NvHdedScvbzgP6 kvu6BGRfYW/sb/oc65v6mOW1761jOvIm/bYzX3tb4TphPrfJ7crco4IRH5Z8R430tG2eczRsJMZC 73ibgfH8u4ilNNHg8Y+BSQ4ves5MoWPITXSaHUs91DnAu8gL12uEx39beGPnRcd6bwNjCIhzk2Op hfBIaRyFi6Pt8bwc4vEnKKVtjJio6BLjbj5tbE1E+MUtmJ+dtO35J2uTtePsVH/Kft4H4am23TJj mfY8Rt5wJ20vBW+xyRrXybVO2cfTI76pNtgcjU97Fql3lenBso/XBL3yyrgA7Kq4E9RMiLDynbNc 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 hr5Gc43hGss1jms81wSuiVyTuCZzTeFa3rWia2XXQtci1xLXMtdqrzVea73Wea332uC10WuT12av 418nvk5+HXwdeh15HXud7jrTdbbrXNf5rgtdF7sudV3OJDBJTIBJYcJMlIkz6U1mk93kNvlNYVPc lDblrxdeL70evF55PX49fb3mesP1lusd13uuD1wfuT5xfeb6wg28G0Q3yG6AbkBuIG5gbtDeYLzB eoPzBu8NwRuiNyRvyN7Iv1F8o/xG+Eb0RvJG9kbdjaYbbTe6bvTdGLoxdmPqxpxZYJaYAbPCjJkp M2fWm81mu9lt9pvD5rg5bc7fJLxJehN4k/Im/Cb6Js1NhpssNzlu8twUuClyU+KmzE2Fm3k3i26W 3QzdjNxM3MzcrL3ZeLP1ZufN3puDN0dvTt6cvYV/i/gW+S3wLegt5C3sLbpbTLfYbnHd4rsldEvs ltQtOYvAIrEAFoUFs1AWzqK3mC12i9vit4QtcUvakr9VeKv0VvBW5a34rfStmlsNt1puddzquTVw a+TWxK2ZWwu38W4T3Sa7DboNuY24jblNe5vxNuttztu8twVvi96WvC17O/928e3y2+Hb0dvJ29nb dbebbrfd7rrdd3vo9tjtqdtzVoFVYgWsCitmpaycVW81W+1Wt9VvDVvj1rQ1f4fwDukd4B3KO/A7 6Ds0dxjusNzhuMNzR+COyB2JOzJ3FO7k3Sm6U3YndCdyJ3Enc6f2TuOd1judd3rvDN4ZvTN5Z/Yu /l3iu+R3wXehd5F3sXfp7jLdZbvLdZfvrtBdsbtSd+VsApvEBtgUNsxG2Tib3ma22W1um98WtsVt aVv+buHd0rvBu5V343fTd2vuNtxtudtxt+fuwN2RuxN3Z+4u3MO7R3SP7B7oHuQe4h7mHu09xnus 9zjv8d4TvCd6T/Ke7L38e8X3yu+F70XvJe9l79Xda7rXdq/rXt+9oXtj96buzdkFdokdsCvsmJ2y c3a93Wy32912vz1sj9vT9vx9wvuk94H3Ke/D76Pv09xnuM9yn+M+z32B+yL3Je7L3Fe4n3e/6H7Z /dD9yP3E/cz92vuN91vvd97vvT94f/T+5P3ZB/gPiB+QPwA/gD5APsA+oHvA9IDtAdcDvgdCD8Qe SD2QcwgcEgfgUDgwB+XgHHqH2WF3uB1+R9gRd6Qd+QeFD0ofBB9UPog/SD+oedDwoOVBx4OeBwMP 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 v/F+E/wm+k3ym+y3/G/F38q/hb9FvyW/Zb/VfWv61vat61vft6FvY9+mvs19J/hO8h3wneI77Dvq O+47/Xfm7+zfub/zfxf+Lv5d+rt8XBiXxsG4Mo7H6bgmbohb4o64Jx6IR+KJeCZe+J73veh72ffQ 98j3xPfM99rvjd9bv3d+7/0++H30++T32R/4P4h/kP8A/4D+QP7A/qD7wfSD7QfXD74fQj/Efkj9 kPtR8KPkR+BHxY/Yj9SP3I/6H80/2n90/+j/Mfxj/Mf0j/mEMCFNgAllAk/QCU3CkLAkHAlPIpCI JBKJTKLwE+8n0U+yn6CfkJ+In5iftD8Zf7L+5PzJ+1Pwp+hPyZ+yP/N/Fv8s/xn+Gf2Z/Jn9Wfez 6Wfbz66ffT+Hfo79nPo594vgF8kvwC+KX7BfqF+4X/S/mH+x/+L+xf9L+Jf4L+lf8sn/BsqDSWUS T9JJTdKQtCQdSU8ykIwkE8lMsvAr71fRr7JfoV+RX4lfmV+1vxp/tf7q/NX7a/DX6K/JX7O/8X8T /yb/Df4N/Y38jf1N95vpN9tvrt98v4V+i/2W+i33u+B3ye/A74rfsd+p37nf9b+bf7f/7v7d/3v4 9/jv6d/zKWFKmgJTyhSeolOalCFlSTlSnlQgFUklUplU4Q/eH6I/ZH9AfyB/EH8wf2j/MP5h/cP5 h/eP4B/RP5J/ZP/k/yn+U/4n/Cf6J/kn+6fuT9Oftj9df/r+DP0Z+zP1Z+4vwV+Sv4C/FH9hf1F/ cX/p/zL/Zf/L/Zf/r/Bf8b/Sf+XTwrQ0DaaVaTxNpzVpQ9qSdqQ96UA6kk6kM+nC37y/RX/L/ob+ Rv4m/mb+1v5t/Nv6t/Nv79/Bv6N/J//O/sP/R/yP/B/4H/Qf8h/2H90/pn9s/7j+8f0T+if2T+qf 3L+CfyX/Av8q/sX+pf7l/tX/a/7X/q/7X/+/4X/j/6b/zWeEGWkGzCgzeIbOaDKGjCXjyHgygUwk k8hkMoX/8f4n+p/sf9D/kP8R/2P+p/2f8X/W/zn/5/1f8H/R/yX/l/0//v+J/0/+f/D/s/f+cS6e 2d94dpvtZttsm27TbdpNu2mbrnSlbaqppkQ1JQgTBDGCMBmCGEEQhAkmQxAaI0MQBDGCqAxBEMSP GEHGBEGMIIgKYhozmZmMyZj7Odfd734/n+e7+3p9vv89fzzj9dp37TZzzX3Odc77nOt9rjtbL6yX 1ivrtfXGemu9s95bH6yP1ifrsw2kBloDq4HXIGqQNagadA2mBluDq8HXEGqINaQachlyhp5hZ/gZ cUaeUWf0GXPGnnFn/JlwJp5JZ7BGQiOlkdHIaRQ0ShoVjZpGQ6Ol0dHoaQw0RhoTjZkmYhO1idnE bRI2SZuUTdomY5O1ydnkbQo2RZuSTdlmUjOtmdXMaxY1y5pVzbpmU7Ot2dXsaw41x5pTzbksOUvP srP8rDgrz6qz+qw5a8+6s/5sOBvPprNYC6GF0sJo4bQIWiQtihZNi6HF0uJo8bQEWiItiZbMC+IL 6gvmC+4L4QvpC+UL7QvjC+sL5wvvi+CL6Ivki2wrqZXWymrltYpaZa2qVl2rqdXW6mr1tYZaY62p 1lyOnKPn2Dl+TpyT59Q5fc6cs+fcOX8unIvn0jmsjdBGaWO0cdoEbZI2RZumzdBmaXO0edoCbZG2 RFvmJfEl9SXzJfel8KX0pfKl9qXxpfWl86X3ZfBl9GXyZbad1E5rZ7Xz2kXtsnZVu67d1G5rd7X7 2kPtsfZUew4jY3SMjfExMSbH1JgeM2N2zI35sTAWx9IY1jH/75j/d8z/O+b/HfP/jvl/x/y/Y/7f Mf/vmP93zP875v8d8/+O+X/H/L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+3zH/75j/d8z/O+b/ HfP/jvl/x/y/Y/7fMf/vmP93zP875v8d8/+O+X/H/L9j/t8x/++Y/3fM/zvm/x3z/475f8f8v2P+ 3zH/75j/d8z/O+b/HfP/jvl/x/y/Y/7fMf/vmP93zP875v8d8/+O+X/H/P///Pxfq+LwCPDn978n ENQTZnVBf3/lFQqB8DvC//7nP/z33xEo6C+/+/3vX3mFSPzDH1599Y9/JJH+9KfXXnv9dTL5z39+ 440336RQ3nrrL395+20q9Z13/vrXd9+l0d577/33//Y3Ov2DDz788O9/ZzA++ujjjz/5hMn89NN/ /KNTJxbrs8/++c/Ondnszz//4osvv+RwvvqqS5evv+Zyv/mma9dvv+XxvvuuW7fu3fn8Hj2+/75n zx9+EAh+/LFXr969hcI+ffr27ddPJOrff8CAvDyxeODAQYMGD5ZIhgwZOnTYMKl0+PD8/BEjZLKR I0eNGj1aLh8zZuzYggKForBw3Ljx45XKCRMmTpw0SaWaPLmoaMoUtXrq1GnTpk/XaGbMmDlz1iyt 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 wF/qUaAK7qnymLDLe5BprbuElcLuEvyl7vy/sCvtTmeDOOFxis2NbnKFZyPtDemm/LNT8Ri7nzur nsM7GRL4S/0lK4e4ns21/vxOdkf70/CX+hOogvsT77Mr7Y/8M9NafxA+Qr/31/TuPkabjXS2QX9H OafAXxrKowoeSr+axilvy3SIDjYDhyKogoeCh/zYl3RajngZOyldmOhDNlTBQx232JUOUdaZjeSy DlFGG0s8zO7nWATvbo0FOXY/x7zwl8a8qILHXNvZNzZmO8A+11gHX0REFTxmvMaudEz3761wMj5l c2OM/NXZSE/MY+SyCt6HeOyMe0qBPemogoWOpTWIduwoN25lM1DQ7Wd3TGhEFSw0XtBjp3kigdM5 0+wzChWogq8Xcd7qdXJZr5PLep1c1mzHA2wGZo2ogrO6dgf8s84C4mo2A7NKVMHZmn3surMVwThi hGntZvFDP9ZlUQXfTP0X1mjjtyWIGPMmZfmb5LIWG++342y++fjvmoXsfhYrFqcQUQXPFLHLZya3 l83AmdRRHyKq4Jk4TlKfCafYPZihemDG82UWEWPOUC0xQ0/eYhOb2MQmNrGJTWxiE9sfZvujvsra P07/iexPS3P9f9ZYzf+57C+MNfa/9P9V/K/TCmFe8m/ifxusdf8d9/ct36r5Vr7OV8/dU3dP7h+8 Sv23pd/2f8fwneI/BlUaVeafLN+t/m74e7rvpdXt6sK9ju9Xfz/wA+UPIg2qhugPtT+M/ajlR/Ef 636caFQ18k21Tf6fVP/Ec1/Ffbb78ve33y9otJrQA3UPOB8oPtjxYPoh1UM+rVRr0SYfbnk48EjF I7ZH0s2qZndzoaW1JfRo9aPWR1OPNT7mfaz0U/1PeZ1Ux+lij1c/bn08Pl853zU/vUCxwL5A0Kv1 Dn3yiYYnnE+knlQ+6Xoy/ZTiKfNT0VZ5K9caelr2tOHpwNPFZ3TPeJ/JP6t61v6sYJAbOEPoOdlz Lc95nss93/i87flEm6RN3+ZryxjVRosx9oLsBcMLnhdyC5ULbQsjC0sval60vyi0y9tb2/3t2Zfq XjK9FH6p+HLjy7aXI4skizSL7IuinJTTcn1c8pXqVwyveF5JvVrzqvFV76vp16pe07/mfk0wyU2t pj5T8nXZ6y2vO1+Pv1Hxhu4N1xuRN0pvqt40v8m/memo7eA6/B3JxdWLDYs9i+NLKpboltiWRJaw urmzvdPXKZjlZq3ZYY6Zp95qeMv0VuCt1NKapbqlrqWRpaW3FW+3v+1+W7BILVqLxRKyZN+pe8fw jvOd+DvFZY3LOpZ5l6W7JF2qLnOXr0uwyq1aq8UasmaXVy83LHcuDy/Pvat81/iu693Iu6UVihX6 FfYV/IqCrdbWanPYQraplXUrDSudK8Mrc6uUq4yrXKsiq/Krq1ZrVptX+1YLa+RrtGssa/xrknaZ vcFusnvscXuxW9lt7HZ1R7rzPVU9mh5zj69HWCtdq17Lre1bG1s75ahzGBxOR9iRWlexrnFdxzrv usS60nrFev16+3rfemGDdIN6A7ehb0NsQ9ZZ7WxxWp0BZ8pZ3KjcaNzo2hjZmO6V9Kp623vdvXxv ZpN8k3YTt6lvU2zTlKva1eKyugKuuKu4WblZt9m2Obg5vbm0RbFFv8W8xbdF2FLYWru1datlq39r cuuUu85tcFvdAXfKXdym3KbbZtsW3JbYVtqu2K7Zbt7u3h7dXtgh36Hdwe3o2xHake2r7mvoM/U5 +8J9qf6K/sZ+Y7+rP9if7i/tVOzU7DTvdO+M7szsku9S7+J2OXaFdiU9Mk+dx+CxegKeuKe4u2a3 bnfHbu/uyO70HskexR79HvMe357onsJe+V71Xm6vY29ob9Ir89Z5W7xWr8cb9+b2Vexr3Gfc59oX 3JfYVxqoGlANtA/YB/gBYaCwv3a/dj+3v29/aH/SJ/PV+Vp8Vp/HF/blDlQcUB4wHrAd8B5IHMgf lBxUHdQfNB90H4wezBySHlIfaj1kOeQ/FDuU9cv8DX6D3+r3+OP+3OGKw8rDxsO2w97DkcP5I5Ij iiOaI+Yj7iP8EWFQOlg7qB3kBh2DocHk4FSgOtASMAWcgUAgHigO1Qw1DhmHbEPeocRQ/qjkqOKo 5qj5qPsof1Q4WjgmP6Y9xh1zHPMfix3LBquDDUFD0Br0BMPBVLB4XHlcd7zjuOt48HjieP5E1QnV Cf0J8wn3Cf6EcKJwUn5Se5I76TjpPxk7meVlfB3fwpt4Jx/mU3zxVM2pxlPGU7ZT3lORU+lTpeGq YdWwftg+7BuODmdOS0/Xntae5k47TvtPx05nQ7JQXaglZAo5Q4FQPJQ7U3FGeUZ3puOM60zwTOJM /qzkrOKs5mz7WftZ39no2cw56bnac9pz3DnHOf+52LlsWBauC7eETWFnOBCOh3PnK84rz+vOd5x3 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 RcAnMwAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="28.662386"
+ width="30.526608" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Fg"
+ transform="translate(0,0.26458333)" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="show_meters.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/show_meters.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.906433"
+ inkscape:cx="-20.749186"
+ inkscape:cy="11.333492"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.05225563;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="M 4.5261278,6.7957573 H 7.4789592 V 19.473872 H 4.5261278 Z"
+ id="rect2818" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.05225563;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="M 7.5248765,4.5263571 H 10.477708 V 19.473872 H 7.5248765 Z"
+ id="rect3592"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.05225563;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="m 10.523624,9.0651575 h 2.952831 V 19.473872 h -2.952831 z"
+ id="rect3594"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.05225563;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="m 13.522373,4.5263571 h 2.952832 V 19.473872 h -2.952832 z"
+ id="rect3596"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.05225563;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="m 16.521122,9.0651575 h 2.952831 V 19.473872 h -2.952831 z"
+ id="rect3598"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -31.596299,20.25799 V 8.7579901 l 13,5.7499999 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="singleframe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/singleframe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-14.949152"
+ inkscape:cy="10.383144"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="path3309"
+ sodipodi:cx="-32.64407"
+ sodipodi:cy="13.525424"
+ sodipodi:rx="5.0847459"
+ sodipodi:ry="4.4745765"
+ d="m -27.559324,13.525424 a 5.0847459,4.4745765 0 1 1 -10.169492,0 5.0847459,4.4745765 0 1 1 10.169492,0 z"
+ transform="matrix(1.3766666,0,0,1.5643939,56.94,-9.1590909)" />
+ <g
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#e6e4dd;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ id="text3305"
+ transform="matrix(1.0138615,0,0,0.61728063,58.809338,12.96489)">
+ <path
+ d="m -48.142017,-16.143208 3.945312,0 0,29.160157 -3.945312,0 0,-29.160157"
+ style="fill:#e6e4dd;fill-opacity:1"
+ id="path3310" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="splice.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/splice.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-4"
+ 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" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-44.033898"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 7.628088,8.5689819 0,1.8002221 0,0.725464 0,5.561882 0,1.34345 L 2.5,18 l 0,-2.525685 3.0680868,0 0,-4.379647 -3.0680868,0 0,-2.5256861 5.128088,0 z"
+ id="path2930" />
+ <path
+ id="path2932"
+ d="m 16.371912,8.5689819 0,1.8002221 0,0.725464 0,5.561882 0,1.34345 5.128088,0 0,-2.525685 -3.068086,0 0,-4.379647 3.068086,0 0,-2.5256861 -5.128088,0 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ id="rect2818"
+ d="m 11.012301,3.9999996 0,6.2647034 -2.8192538,0 3.8165408,3.930033 3.797365,-3.930033 -2.800076,0 0,-6.2647034 -1.994576,0 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -25.720339,21.411017 V 9.9110169 l 13,5.7500001 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="170"
+ height="49"
+ sodipodi:docname="statusbar.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/statusbar.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.7437589"
+ inkscape:cx="-35.115477"
+ inkscape:cy="56.848163"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer73"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <sodipodi:guide
+ position="73.991956,131.11965"
+ orientation="0,1"
+ id="guide952"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer72"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3611"
+ width="170"
+ height="49"
+ x="0"
+ y="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,24 V 49 H 170 V 24 Z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3042"
+ d="m 0,23 v 1 h 170 v -1 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ d="m 0,23 v 1 h 170 v -1 z"
+ id="path3266"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3268"
+ d="M 0,0 V 1 H 170 V 0 Z"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer73"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ id="rect3611-9"
+ width="170"
+ height="49"
+ x="0"
+ y="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#252525;fill-opacity:1;stroke:none"
+ d="M 0,24 V 49 H 170 V 24 Z"
+ id="rect2818-8"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ id="path3268-6"
+ d="M 0,0 V 1 H 170 V 0 Z"
+ style="fill:#141414;fill-opacity:1;stroke:none" />
+ <rect
+ style="display:inline;fill:#474747;fill-opacity:1;stroke:none"
+ id="rect2818-1"
+ width="256"
+ height="1"
+ x="-43"
+ y="26"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none"
+ id="rect2818-1-5"
+ width="256"
+ height="1"
+ x="-43"
+ y="25"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/mbutton_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <g
+ id="g907"
+ transform="translate(-7.1333535,2.3180992)">
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ y="23.685698"
+ x="175.8071"
+ height="26"
+ width="1.3262551"
+ id="rect1501-3"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98017859;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path1553"
+ d="m 175.8071,24.681791 v -0.996094 h 1.32623 z"
+ style="display:inline;fill:#474747;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.98017859;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1501-3-2"
+ width="1.3262551"
+ height="26"
+ x="168.67375"
+ y="5.5554199e-07"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/menubar_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <path
+ style="display:inline;fill:#474747;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 171.67895,0.75302604 v -0.996094 h 1.32623 z"
+ id="path1553-9"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-172"
+ y="37.625"
+ id="text934"><tspan
+ sodipodi:role="line"
+ id="tspan932"
+ x="-172"
+ y="37.625">Considers the moved input fields.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="25.864119"
+ y="-117.55324"
+ id="text1493"><tspan
+ sodipodi:role="line"
+ id="tspan1491"
+ x="25.864119"
+ y="-117.55324">menubar_bg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="27.656227"
+ y="-95.414139"
+ id="text1497"><tspan
+ sodipodi:role="line"
+ id="tspan1495"
+ x="27.656227"
+ y="-95.414139">mbutton_bg</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="40.620758"
+ y="-21.100775"
+ id="text1537"><tspan
+ sodipodi:role="line"
+ id="tspan1535"
+ x="40.620758"
+ y="-21.100775">statusbar</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="statusbar_cancel_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063-8"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.31250048,0,0,0.31250048,20.21924,-13.719471)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient46073">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1;"
+ offset="0"
+ id="stop46071" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1;"
+ offset="1"
+ id="stop46069" />
+ </linearGradient>
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.3914425"
+ inkscape:cx="-94.194144"
+ inkscape:cy="9.1355932"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer10" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer9"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="20"
+ width="20"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ id="path2787"
+ d="M 15.777461,5.0345277 12.965474,2.2225394 8.0000005,7.1880134 3.0345268,2.2225397 0.222538,5.034528 l 4.9654737,4.965473 -4.9654734,4.965474 2.8119885,2.811987 4.9654737,-4.965472 4.9654735,4.965472 2.811989,-2.811987 -4.965474,-4.965474 z"
+ style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.44507602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccczzcc"
+ id="path6779"
+ d="M 15.465844,5.0350232 12.9638,2.5334379 7.9999865,7.491987 3.034419,2.5381669 0.5725313,5.0476556 5.4941525,9.9947517 2.4083242,13.094216 c 0,0 1.6680492,-0.259107 2.9686767,-0.877946 C 6.677629,11.597432 6.3106167,10.675376 8.7857395,10.012258 11.265602,9.3459787 11.928627,8.5669818 11.928627,8.5669818 l 3.53719,-3.5319815 z"
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path6842"
+ d="M 15.173,5.0369095 12.978593,2.8235339 7.9964732,7.7993317 3.0280148,2.8308734 0.8305061,5.0283816 l 4.9747803,4.9747794 -4.9779436,4.952658 2.2102136,2.210213 4.9621415,-4.968459 4.9937471,4.968456 2.176398,-2.189037 -4.946332,-4.9969093 4.949496,-4.9431732 z"
+ style="fill:none;stroke:#4d4d4d;stroke-width:0.42395109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3760"
+ transform="translate(-91.525424,3.7288136)">
+ <path
+ id="path3762"
+ d="M 17.777462,5.0345277 14.965474,2.2225394 10.000001,7.1880134 5.0345273,2.2225397 2.2225385,5.034528 l 4.9654737,4.965473 -4.9654734,4.965474 2.8119885,2.811987 4.9654737,-4.965472 4.965473,4.965472 2.811989,-2.811987 -4.965474,-4.965474 z"
+ style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.44507602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3764">
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="M 17.465844,5.0350232 14.9638,2.5334379 9.999987,7.491987 5.0344195,2.5381669 2.5725318,5.0476556 7.494153,9.9947517 4.4083247,13.094216 c 0,0 1.6680492,-0.259107 2.9686767,-0.877946 1.3006281,-0.618838 0.9336158,-1.540894 3.4087386,-2.204012 2.479863,-0.6662793 3.142888,-1.4452762 3.142888,-1.4452762 l 3.537189,-3.5319815 z"
+ id="path3766"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:0.42395109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.173001,5.0369095 14.978594,2.8235339 9.9964737,7.7993317 5.0280153,2.8308734 2.8305066,5.0283816 l 4.9747803,4.9747794 -4.9779436,4.952658 2.2102136,2.210213 4.9621415,-4.968459 4.9937476,4.968456 2.176397,-2.189037 -4.946332,-4.9969093 4.949497,-4.9431732 z"
+ id="path3768"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer10"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient46063-8);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.41725931;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 17.291379,5.3448649 -2.636242,-2.636244 -4.655136,4.655139 -4.655138,-4.655138 -2.636242,2.636243 4.655137,4.6551361 -4.655137,4.655137 2.636242,2.636241 4.655138,-4.655136 4.655136,4.655136 2.636242,-2.636241 -4.655137,-4.655137 z"
+ id="path2787-9-6" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="statusbar_cancel_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ y2="21.527676"
+ x2="94.546799"
+ y1="21.527676"
+ x1="48.907528"
+ gradientTransform="matrix(0,1.000001,-1.000001,0,93.25488,-50.19949)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6943"
+ xlink:href="#linearGradient9647-8"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient9647-8">
+ <stop
+ id="stop9649-4"
+ offset="0"
+ style="stop-color:#fe4747;stop-opacity:1;" />
+ <stop
+ style="stop-color:#c80909;stop-opacity:1;"
+ offset="1"
+ id="stop3219-8" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient46073">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1;"
+ offset="0"
+ id="stop46071" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1;"
+ offset="1"
+ id="stop46069" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063-0"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.31250048,0,0,0.31250048,20.21924,-13.719471)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.3914425"
+ inkscape:cx="-45.042178"
+ inkscape:cy="9.1355932"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer6"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer5"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="0"
+ x="0"
+ height="20"
+ width="20"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3760"
+ transform="translate(-91.525424,3.7288136)">
+ <path
+ id="path3762"
+ d="M 17.777462,5.0345277 14.965474,2.2225394 10.000001,7.1880134 5.0345273,2.2225397 2.2225385,5.034528 l 4.9654737,4.965473 -4.9654734,4.965474 2.8119885,2.811987 4.9654737,-4.965472 4.965473,4.965472 2.811989,-2.811987 -4.965474,-4.965474 z"
+ style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.44507602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3764">
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="M 17.465844,5.0350232 14.9638,2.5334379 9.999987,7.491987 5.0344195,2.5381669 2.5725318,5.0476556 7.494153,9.9947517 4.4083247,13.094216 c 0,0 1.6680492,-0.259107 2.9686767,-0.877946 1.3006281,-0.618838 0.9336158,-1.540894 3.4087386,-2.204012 2.479863,-0.6662793 3.142888,-1.4452762 3.142888,-1.4452762 l 3.537189,-3.5319815 z"
+ id="path3766"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:0.42395109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.173001,5.0369095 14.978594,2.8235339 9.9964737,7.7993317 5.0280153,2.8308734 2.8305066,5.0283816 l 4.9747803,4.9747794 -4.9779436,4.952658 2.2102136,2.210213 4.9621415,-4.968459 4.9937476,4.968456 2.176397,-2.189037 -4.946332,-4.9969093 4.949497,-4.9431732 z"
+ id="path3768"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g3178"
+ transform="matrix(0.33333343,0,0,0.33333343,-0.37774362,1.603151)">
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Shadow"
+ id="layer2" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Layer 1"
+ id="layer1" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Error Box"
+ id="layer3" />
+ <g
+ transform="translate(0,2)"
+ inkscape:label="Glossy Shine"
+ id="layer4">
+ <g
+ transform="matrix(0.858316,-0.858316,0.858316,0.858316,-54.908959,66.277556)"
+ id="g6848">
+ <path
+ style="fill:url(#linearGradient6943);fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.1000011;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 93.996843,26.44197 v -9.828504 l -17.355398,2e-6 V -0.74193099 l -9.828505,-9.2e-7 10e-7,17.35539791 H 49.457543 l 2e-6,9.828503 17.355396,3e-6 2e-6,17.355394 9.828503,3e-6 -10e-7,-17.355399 z"
+ id="path2787-7"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="m 93.451391,25.89825 -8.01e-4,-8.74438 -17.340396,-0.0092 -0.02053,-17.33519703 -8.688015,0.0831879 -0.04452,17.24664513 -10.809464,0.02383 c 0,0 3.367913,2.462278 6.722386,3.653778 3.354474,1.191501 4.324472,-1.061284 9.808885,2.105388 5.498224,3.169434 8.018312,2.96676 8.018312,2.96676 l 12.354135,0.0091 z"
+ id="path6779-4"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#dd5843;stroke-width:1.047791;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 92.93632,25.389772 0.03315,-7.703074 -17.402534,-0.01105 V 0.30981713 l -7.680765,-9.6e-7 10e-7,17.38792683 -17.354794,-0.04419 2e-6,7.72517 17.354792,-0.01104 0.0442,17.410022 7.629065,-0.02209 0.08839,-17.376882 17.288504,0.01105 z"
+ id="path6842-1"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer6"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-84.202766"
+ y="-17.358343"
+ id="text2863-1"><tspan
+ sodipodi:role="line"
+ id="tspan2861-8"
+ x="-84.202766"
+ y="-17.358343">see: statusbar_cancel_up</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.9;fill:url(#radialGradient46063-0);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.41725931;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.291379,5.344865 14.655137,2.708621 10.000001,7.36376 5.3448629,2.708622 2.7086208,5.344865 l 4.6551368,4.655136 -4.6551368,4.655137 2.6362421,2.636241 4.6551381,-4.655136 4.655136,4.655136 2.636242,-2.636241 -4.655137,-4.655137 z"
+ id="path2787-9-6" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="20"
+ height="20"
+ sodipodi:docname="statusbar_cancel_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/statusbar_cancel_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.31250048,0,0,0.31250048,19.848282,20.037728)"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient46073">
+ <stop
+ style="stop-color:#ff1717;stop-opacity:1;"
+ offset="0"
+ id="stop46071" />
+ <stop
+ style="stop-color:#a40000;stop-opacity:1;"
+ offset="1"
+ id="stop46069" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063-9"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.31250048,0,0,0.31250048,20.21924,-13.719471)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient46073"
+ id="radialGradient46063-8"
+ cx="-32.701519"
+ cy="75.902191"
+ fx="-32.701519"
+ fy="75.902191"
+ r="23.999966"
+ gradientTransform="matrix(0.31250048,0,0,0.31250048,19.307717,53.222618)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="10.782885"
+ inkscape:cx="-22.581996"
+ inkscape:cy="-20.142311"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer8" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer7"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ y="0"
+ x="0"
+ height="20"
+ width="20"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ id="path2787"
+ d="M 15.777461,5.0345277 12.965474,2.2225394 8.0000005,7.1880134 3.0345268,2.2225397 0.222538,5.034528 l 4.9654737,4.965473 -4.9654734,4.965474 2.8119885,2.811987 4.9654737,-4.965472 4.9654735,4.965472 2.811989,-2.811987 -4.965474,-4.965474 z"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.44507602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3460"
+ transform="translate(-2.0000005)">
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="M 17.465844,5.0350232 14.9638,2.5334379 9.999987,7.491987 5.0344195,2.5381669 2.5725318,5.0476556 7.494153,9.9947517 4.4083247,13.094216 c 0,0 1.6680492,-0.259107 2.9686767,-0.877946 1.3006281,-0.618838 0.9336158,-1.540894 3.4087386,-2.204012 2.479863,-0.6662793 3.142888,-1.4452762 3.142888,-1.4452762 l 3.537189,-3.5319815 z"
+ id="path6779"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:0.42395109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.173001,5.0369095 14.978594,2.8235339 9.9964737,7.7993317 5.0280153,2.8308734 2.8305066,5.0283816 l 4.9747803,4.9747794 -4.9779436,4.952658 2.2102136,2.210213 4.9621415,-4.968459 4.9937476,4.968456 2.176397,-2.189037 -4.946332,-4.9969093 4.949497,-4.9431732 z"
+ id="path6842"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g3760"
+ transform="translate(-91.525424,3.7288136)">
+ <path
+ id="path3762"
+ d="M 17.777462,5.0345277 14.965474,2.2225394 10.000001,7.1880134 5.0345273,2.2225397 2.2225385,5.034528 l 4.9654737,4.965473 -4.9654734,4.965474 2.8119885,2.811987 4.9654737,-4.965472 4.965473,4.965472 2.811989,-2.811987 -4.965474,-4.965474 z"
+ style="fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.44507602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g3764">
+ <path
+ style="fill:#fffeff;fill-opacity:0.13804716;fill-rule:evenodd;stroke:none"
+ d="M 17.465844,5.0350232 14.9638,2.5334379 9.999987,7.491987 5.0344195,2.5381669 2.5725318,5.0476556 7.494153,9.9947517 4.4083247,13.094216 c 0,0 1.6680492,-0.259107 2.9686767,-0.877946 1.3006281,-0.618838 0.9336158,-1.540894 3.4087386,-2.204012 2.479863,-0.6662793 3.142888,-1.4452762 3.142888,-1.4452762 l 3.537189,-3.5319815 z"
+ id="path3766"
+ sodipodi:nodetypes="ccccccczzcc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#cccccc;stroke-width:0.42395109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.173001,5.0369095 14.978594,2.8235339 9.9964737,7.7993317 5.0280153,2.8308734 2.8305066,5.0283816 l 4.9747803,4.9747794 -4.9779436,4.952658 2.2102136,2.210213 4.9621415,-4.968459 4.9937476,4.968456 2.176397,-2.189037 -4.946332,-4.9969093 4.949497,-4.9431732 z"
+ id="path3768"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer8"
+ inkscape:label="Layer 2">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient46063);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.41725931;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.9"
+ d="M 16.920421,39.102064 14.284179,36.46582 9.6290426,41.120959 4.9739047,36.465821 2.3376626,39.102064 6.9927994,43.7572 2.3376626,48.412337 4.9739047,51.048578 9.6290426,46.393442 14.284179,51.048578 16.920421,48.412337 12.265284,43.7572 Z"
+ id="path2787-9" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="0.0056308466"
+ y="-7.5279503"
+ id="text2863-3"><tspan
+ sodipodi:role="line"
+ id="tspan2861-4"
+ x="0.0056308466"
+ y="-7.5279503">statusbar_cancel_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-122.41059"
+ y="47.559349"
+ id="text2863-3-5"><tspan
+ sodipodi:role="line"
+ id="tspan2861-4-8"
+ x="-122.41059"
+ y="47.559349">statusbar_cancel_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-124.82182"
+ y="83.727776"
+ id="text2863-3-0"><tspan
+ sodipodi:role="line"
+ id="tspan2861-4-1"
+ x="-124.82182"
+ y="83.727776">statusbar_cancel_dn</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.6;fill:url(#radialGradient46063-9);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.41725931;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 17.291379,5.3448648 14.655137,2.7086208 10,7.3637598 5.3448629,2.7086218 2.7086208,5.3448648 7.3637576,10.000001 2.7086208,14.655138 5.3448629,17.291379 10,12.636243 l 4.655137,4.655136 2.636242,-2.636241 -4.655137,-4.655137 z"
+ id="path2787-9-7" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient46063-8);fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:0.41725931;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 16.379856,72.286954 13.743614,69.65071 9.0884778,74.305849 4.4333399,69.650711 1.7970978,72.286954 6.4522346,76.94209 1.7970978,81.597227 4.4333399,84.233468 9.0884778,79.578332 13.743614,84.233468 16.379856,81.597227 11.724719,76.94209 Z"
+ id="path2787-9-6" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="stop.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/stop.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3081"
+ inkscape:collect="always">
+ <stop
+ id="stop3083"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3085"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2679">
+ <stop
+ style="stop-color:#c8c8c8;stop-opacity:1;"
+ offset="0"
+ id="stop2681" />
+ <stop
+ style="stop-color:#d4d4d4;stop-opacity:1;"
+ offset="1"
+ id="stop2683" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2697">
+ <stop
+ style="stop-color:#2b2b2b;stop-opacity:1;"
+ offset="0"
+ id="stop2699" />
+ <stop
+ style="stop-color:#555555;stop-opacity:1;"
+ offset="1"
+ id="stop2701" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2679"
+ id="radialGradient3666"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(6.2434935e-6,-0.75157294,3.4914683,-8.7678812e-7,-349.32502,144.50535)"
+ cx="169.77171"
+ cy="100.20107"
+ fx="169.77171"
+ fy="100.20107"
+ r="11" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2697"
+ id="linearGradient3668"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7518713,0,0,0.70413491,-295.54141,-54.706449)"
+ x1="169"
+ y1="110.33805"
+ x2="169"
+ y2="93.204849" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3081"
+ id="linearGradient3670"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1033232,0,0,0.70106146,-52.233961,-4.6729267)"
+ x1="15.089521"
+ y1="15.291994"
+ x2="14"
+ y2="52.510574" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.797397"
+ inkscape:cx="-7.2066243"
+ inkscape:cy="12.000038"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3659"
+ transform="matrix(0.99472472,0,0,0.94278817,0.144061,0.54268913)">
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ id="path2815"
+ d="M 4.5589021,4.3871451 V 19.917939 H 19.278518 V 4.3871451 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.15;fill:none;stroke:#000000;stroke-width:1.40212262;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2827"
+ d="M 4.9067548,4.7914101 V 19.513701 H 18.927984 V 4.7914101 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient3666);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient3668);stroke-width:0.70106113;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 4.9044672,4.7929496 V 19.579783 H 18.919437 V 4.7929496 Z"
+ id="path2762"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2811"
+ d="M 5.607404,5.4924715 V 18.812639 H 18.22734 V 5.4924715 Z"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient3670);stroke-width:0.70106131;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ id="path2479"
+ d="M 5.958347,5.8689471 V 13.270223 L 17.876392,11.31403 V 5.8069817 L 5.958347,5.8689487 Z"
+ style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:0.5;fill:#f7f7f7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-14.575172"
+ y="-5.361835"
+ id="text1069"><tspan
+ sodipodi:role="line"
+ id="tspan1067"
+ x="-14.575172"
+ y="-5.361835">see: play</tspan></text>
+ <g
+ transform="translate(50.772314,-0.08298063)"
+ style="display:inline"
+ id="g2434">
+ <rect
+ y="4.1829805"
+ x="-46.672314"
+ height="7.5"
+ width="15.8"
+ id="rect2166"
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12841129;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="12.482981"
+ x="-46.672314"
+ height="7.5"
+ width="15.8"
+ id="rect2166-7"
+ style="display:inline;opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12841129;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="11.682981"
+ x="-46.672314"
+ height="0.80000001"
+ width="15.8"
+ id="rect2198"
+ style="opacity:1;fill:#171616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00714421;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="swap_extents.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//swap_extents.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <marker
+ style="overflow:visible"
+ id="Arrow2Mstart"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow2Mstart">
+ <path
+ transform="scale(0.6) translate(0,0)"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ id="path3619" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="EmptyTriangleInM"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="EmptyTriangleInM">
+ <path
+ transform="scale(-0.4) translate(-4.5,0)"
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3750" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="TriangleInM"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleInM">
+ <path
+ transform="scale(-0.4)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3732" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="TriangleOutS"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleOutS">
+ <path
+ transform="scale(0.2)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3744" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="TriangleOutM"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleOutM">
+ <path
+ transform="scale(0.4)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3741" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="TriangleInS"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleInS">
+ <path
+ transform="scale(-0.2)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path3735" />
+ </marker>
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-24.457627"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ id="rect5208"
+ d="M 11.999998,3 6,7.7308449 7.8461525,8.7062769 10.692306,6.511555 l 0,10.976889 L 7.8461525,15.293723 6,16.269154 11.999998,21 18,16.269154 l -1.846157,-0.975431 -2.923074,2.194721 0,-10.976889 2.923074,2.1947219 L 18,7.7308449 11.999998,3 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ sodipodi:nodetypes="ccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -42.398305,16.834746 V 5.3347458 l 13,5.7500002 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="tan_linear.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tan_linear.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1321"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8666667"
+ inkscape:cx="-55.105932"
+ inkscape:cy="15"
+ inkscape:window-x="45"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3778"
+ width="4.3220339"
+ height="4.3220339"
+ x="10.932203"
+ y="10.423729" />
+ <path
+ style="fill:#e6e4dd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+ d="m 6.6101695,17.79661 1.3983051,1.525424 4.9576274,-5.59322 6.991525,8.135593 6.101695,0.127118 0,-2.161017 -5.211864,0 -7.881356,-9.025423 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="M -33.576271,16.427966 V 4.9279661 l 13,5.7499999 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="30"
+ height="30"
+ sodipodi:docname="tan_smooth.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tan_smooth.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1321"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.366667"
+ inkscape:cx="15"
+ inkscape:cy="15"
+ inkscape:window-x="45"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3757"
+ width="4.0677972"
+ height="4.3220339"
+ x="11.059321"
+ y="9.9152546" />
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="m 3.1779661,14.110169 0,1.906781 4.3895315,-0.05164 C 15.834541,9.4094711 17.169288,14.088683 20.211864,21.991526 l 6.737289,0 -0.127119,-1.779662 c 0,0 -2.754671,0 -5.466102,0 -0.677533,-1.652542 -3.890746,-15.3568999 -13.9194913,-6.101695 -4.3084071,0.229782 -4.2584746,0 -4.2584746,0 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3759"
+ width="0.99741793"
+ height="1.0052304"
+ x="2.0008607"
+ y="10.99861" />
+ <rect
+ y="10.99861"
+ x="4.0008607"
+ height="1.0052304"
+ width="0.99741793"
+ id="rect3761"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3763"
+ width="0.99741793"
+ height="1.0052304"
+ x="6.0008607"
+ y="10.99861" />
+ <rect
+ y="11.002516"
+ x="8.0008602"
+ height="1.0052304"
+ width="0.99741793"
+ id="rect3765"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3767"
+ width="0.99741793"
+ height="1.0052304"
+ x="16.996954"
+ y="10.994703" />
+ <rect
+ y="10.994703"
+ x="19.00086"
+ height="1.0052304"
+ width="0.99741793"
+ id="rect3769"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3771"
+ width="0.99741793"
+ height="1.0052304"
+ x="21.00086"
+ y="10.99861" />
+ <rect
+ y="10.99861"
+ x="23.00086"
+ height="1.0052304"
+ width="0.99741793"
+ id="rect3773"
+ style="fill:#aa0000;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -26.379518,24.33864 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="text.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/text.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.16685"
+ inkscape:cx="11.999721"
+ inkscape:cy="12.00016"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <g
+ id="g872">
+ <rect
+ y="4.0006943"
+ x="10.610086"
+ height="0.9951933"
+ width="10.396063"
+ id="rect2818"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.98774391;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.55821377;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2828"
+ width="2.2973168"
+ height="1.4383608"
+ x="3.7791069"
+ y="3.7791107" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.98774391;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3608"
+ width="10.396063"
+ height="0.9951933"
+ x="10.610086"
+ y="8.0015516" />
+ <rect
+ y="7.7799673"
+ x="3.7791069"
+ height="1.4383608"
+ width="2.2973168"
+ id="rect3610"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.55821377;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="12.002405"
+ x="10.610086"
+ height="0.9951933"
+ width="10.396063"
+ id="rect3614"
+ style="fill:#cccccc;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.98774391;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.55821377;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3616"
+ width="2.2973168"
+ height="1.4383608"
+ x="3.7791069"
+ y="11.780822" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.98774391;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3620"
+ width="10.396063"
+ height="0.9951933"
+ x="10.610086"
+ y="16.00326" />
+ <rect
+ y="15.781676"
+ x="3.7791069"
+ height="1.4383608"
+ width="2.2973168"
+ id="rect3622"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.55821377;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="20.004116"
+ x="10.610086"
+ height="0.9951933"
+ width="10.396063"
+ id="rect3626"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.98774391;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:#e6e4dd;stroke-width:0.55821377;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3628"
+ width="2.2973168"
+ height="1.4383608"
+ x="3.7791069"
+ y="19.782532" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m 39.220883,21.712151 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="115"
+ height="18"
+ sodipodi:docname="text_highlight.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/text_highlight.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.7043478"
+ inkscape:cx="112.57144"
+ inkscape:cy="-11.481641"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="115"
+ height="18"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:none;stroke:#e6e6e6;stroke-width:0.6236611;stroke-opacity:1"
+ id="rect3343"
+ width="112.37634"
+ height="15.376339"
+ x="1.3118305"
+ y="1.3118305"
+ ry="4.336916" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <g
+ id="g868"
+ transform="matrix(0.4491911,0,0,0.8999998,-7.6202554,34.314782)">
+ <rect
+ y="-38.127544"
+ x="16.972273"
+ height="20"
+ width="256"
+ id="rect3594-7-7-54-5"
+ style="fill:#262626;fill-opacity:1;stroke:none;stroke-width:1.04294097;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="-38.127544"
+ x="17.972273"
+ height="20"
+ width="254"
+ id="rect3594-7-7-5"
+ style="fill:#5f8dd3;fill-opacity:0.50196078;stroke:none;stroke-width:1.56278872;stroke-opacity:1" />
+ <g
+ transform="translate(-9.2462887,29.078817)"
+ id="g1795-6"
+ style="display:inline">
+ <g
+ id="g1785-2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1764-5"
+ d="M 26.225024,-47.745688 H 282.22502"
+ style="fill:none;stroke:#404040;stroke-width:1.07866216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <use
+ inkscape:transform-center-y="110.90074"
+ inkscape:transform-center-x="24.669302"
+ height="100%"
+ width="100%"
+ transform="matrix(0,0.078125,-1,0,233.94,-69.255187)"
+ id="use1781-91"
+ xlink:href="#path1764-5"
+ y="0"
+ x="0" />
+ </g>
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.02030754px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 26.72226,-67.206357 v 20"
+ id="path1789-7"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="320"
+ height="25"
+ sodipodi:docname="timebar_bg_flat.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/timebar_bg_flat.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>Neuer Verlauf.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient175234">
+ <stop
+ id="stop175230"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop175232"
+ offset="1"
+ style="stop-color:#474747;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient175234"
+ id="linearGradient38897"
+ x1="-5e-07"
+ y1="12.5"
+ x2="320"
+ y2="12.5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.078125,0,0,12.799999,-25,-5e-5)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.884375"
+ inkscape:cx="164.09469"
+ inkscape:cy="-5.5166347"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showborder="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:url(#linearGradient38897);fill-opacity:1;fill-rule:evenodd;stroke:#232629;stroke-width:0;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect38889"
+ width="25"
+ height="320"
+ x="-25"
+ y="1.5308087e-15"
+ transform="rotate(-90)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="320"
+ height="25"
+ sodipodi:docname="timebar_brender.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/timebar_brender.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1544">
+ <stop
+ id="stop1540"
+ offset="0"
+ style="stop-color:#141414;stop-opacity:1" />
+ <stop
+ id="stop1542"
+ offset="1"
+ style="stop-color:#404040;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient7134">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop7136" />
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="1"
+ id="stop7138" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4293">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4295" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4297" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1544"
+ id="linearGradient7140"
+ x1="160"
+ y1="25"
+ x2="160"
+ y2="0"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4293"
+ id="linearGradient7150"
+ gradientUnits="userSpaceOnUse"
+ x1="160.20665"
+ y1="25.069784"
+ x2="160.20665"
+ y2="13.602376"
+ gradientTransform="matrix(1,0,0,0.59999999,5.2130326,-35.689223)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7134"
+ id="linearGradient1536"
+ gradientUnits="userSpaceOnUse"
+ x1="160"
+ y1="25"
+ x2="160"
+ y2="0"
+ gradientTransform="translate(3.6090252,132.80075)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4293"
+ id="linearGradient1538"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.59999999,3.6090252,132.80075)"
+ x1="160.20665"
+ y1="25.069784"
+ x2="160.20665"
+ y2="13.602376" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.5266951"
+ inkscape:cx="121.74802"
+ inkscape:cy="-41.263818"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient7140);fill-opacity:1;stroke:none"
+ id="rect3594"
+ width="320"
+ height="25"
+ x="0"
+ y="0" />
+ <rect
+ y="-35.689224"
+ x="5.2130327"
+ height="15"
+ width="320"
+ id="rect7148"
+ style="opacity:0.3;fill:url(#linearGradient7150);fill-opacity:1;stroke:none" />
+ <rect
+ y="24"
+ x="0"
+ height="1"
+ width="320"
+ id="rect3592"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="320"
+ height="1"
+ x="0"
+ y="24" />
+ <rect
+ style="opacity:0.29898993;fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3514"
+ width="320"
+ height="10"
+ x="0"
+ y="13.922308" />
+ <rect
+ style="fill:url(#linearGradient1536);fill-opacity:1;stroke:none"
+ id="rect3594-9"
+ width="320"
+ height="25"
+ x="3.609015"
+ y="132.80075" />
+ <rect
+ y="132.80075"
+ x="3.609015"
+ height="15"
+ width="320"
+ id="rect7148-2"
+ style="opacity:0.3;fill:url(#linearGradient1538);fill-opacity:1;stroke:none" />
+ <rect
+ y="156.80075"
+ x="3.609015"
+ height="1"
+ width="320"
+ id="rect3592-0"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#666666;fill-opacity:1;stroke:none"
+ id="rect2818-2"
+ width="320"
+ height="1"
+ x="3.609015"
+ y="132.80075" />
+ <rect
+ style="opacity:0.29898993;fill:#ff0000;fill-opacity:1;stroke:none"
+ id="rect3514-3"
+ width="320"
+ height="10"
+ x="3.609015"
+ y="145.80075" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="154.81917"
+ y="-20.084703"
+ id="text1548"><tspan
+ sodipodi:role="line"
+ id="tspan1546"
+ x="154.81917"
+ y="-20.084703">?</tspan></text>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="166"
+ height="17"
+ sodipodi:docname="timebar_view.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient4301">
+ <stop
+ style="stop-color:#1d0000;stop-opacity:1;"
+ offset="0"
+ id="stop20143" />
+ <stop
+ style="stop-color:#aa0000;stop-opacity:1;"
+ offset="1"
+ id="stop20145" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4301"
+ id="linearGradient1509"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51875,0,0,0.34200002,6.2e-6,8.4500007)"
+ x1="160"
+ y1="25"
+ x2="160"
+ y2="0" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="57.779005"
+ inkscape:cy="5.3410067"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3"
+ showborder="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Layer 1">
+ <rect
+ style="fill:url(#linearGradient1509);fill-opacity:1;stroke:none;stroke-width:0.70918345"
+ id="rect3594"
+ width="166"
+ height="8.5500002"
+ x="0"
+ y="8.4499998"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3594"
+ id="use14989"
+ transform="rotate(180,83,8.5)"
+ width="100%"
+ height="100%"
+ style="" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Layer 2"
+ style="display:none">
+ <path
+ style="fill:none;stroke:#232629;stroke-width:0.92556411px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 165.53722,3.5 v 10"
+ id="path14985"
+ inkscape:connector-curvature="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path14985"
+ id="use14987"
+ transform="matrix(-1,0,0,1,166,0)"
+ width="100%"
+ height="100%" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="tipbutton_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3263985,0,0,2.0286092,-77.356546,-37.37346)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.7428571"
+ inkscape:cx="-35.667373"
+ inkscape:cy="17.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="35"
+ width="35"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g6124"
+ transform="matrix(1.4583333,0,0,1.4583333,2.1875,2.1874986)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2-5);fill-opacity:1;stroke:#141414;stroke-width:0.5136379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6-8"
+ width="34.486362"
+ height="34.486362"
+ x="-34.743179"
+ y="-34.743179"
+ transform="scale(-1)" />
+ <rect
+ y="-34.121994"
+ x="-34.121994"
+ height="33.244003"
+ width="33.244007"
+ id="rect3597-5-7-9-4-8-9-8-3-3-6"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.75599527;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="tipbutton_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient2981"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2522279,0,0,1.2072651,2.4143991,2.5770918)"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient2984"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3432017,0,0,1.3432018,1.3815783,1.3815778)"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8-3-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3263984,0,0,2.0286092,-42.356509,-2.3735152)" />
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.7428571"
+ inkscape:cx="-74.96822"
+ inkscape:cy="17.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="0"
+ height="35"
+ width="35"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <rect
+ ry="2.1191549"
+ y="2.7247794"
+ x="2.7247806"
+ height="29.55044"
+ width="29.55044"
+ id="rect3685"
+ style="fill:url(#linearGradient2984);fill-opacity:1;stroke:none" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient2981);fill-opacity:1;stroke:none"
+ d="m 5.6232326,3.7843568 c -1.0944967,0 -1.956605,0.8311539 -1.956605,1.886352 v 9.2431232 c 3.4590456,2.181871 8.1394194,3.508614 13.3049214,3.508614 5.658306,0 10.719997,-1.589032 14.244091,-4.149974 V 5.6707088 c 0,-1.0551981 -0.862108,-1.886352 -1.956605,-1.886352 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:1.07456136;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="29.55044"
+ height="29.55044"
+ x="2.7247806"
+ y="2.7247794"
+ ry="2.1191549" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8-3-7);fill-opacity:1;stroke:#141414;stroke-width:0.5136379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3-79-5"
+ width="34.486362"
+ height="34.486362"
+ x="0.25681877"
+ y="0.25681877" />
+ <rect
+ y="1.2550178"
+ x="1.2550182"
+ height="32.48996"
+ width="32.48996"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9-7-3"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:1.51004171;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="35"
+ height="35"
+ sodipodi:docname="tipbutton_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tipbutton_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-9" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26378025,-1.0791239,-0.05356539)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.3263984,0,0,2.0286092,-42.356523,-2.3734982)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.7428571"
+ inkscape:cx="-35.667373"
+ inkscape:cy="17.5"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="35"
+ height="34.828281"
+ x="0"
+ y="0.1717186" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-8);fill-opacity:1;stroke:#141414;stroke-width:0.5136379;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-9"
+ width="34.486362"
+ height="34.486362"
+ x="0.25681877"
+ y="0.25681877" />
+ <rect
+ y="1.0265026"
+ x="1.0265026"
+ height="32.946991"
+ width="32.946991"
+ id="rect3597-5-7-9-4-8-9-8-27-5"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:1.05300713;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-65.185204"
+ y="-9.5670023"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-65.185204"
+ y="-9.5670023">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="93"
+ height="18"
+ sodipodi:docname="title_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/title_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop876" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop878" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ id="linearGradient1817-5">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#262626;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-5"
+ id="linearGradient1811-8-5-0-7-3-2-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(3.5769228,0,0,1.0588232,-114.91632,-1.3729308)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="5.2730785"
+ inkscape:cx="52.905362"
+ inkscape:cy="6.6045731"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ showborder="true"
+ inkscape:showpageshadow="false"
+ inkscape:pagecheckerboard="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <rect
+ style="fill:#102645;fill-opacity:1;stroke:#49638b;stroke-width:1.83625913;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2818"
+ width="91.163742"
+ height="16.16374"
+ x="0.91812956"
+ y="0.91812956"
+ ry="2.6849899"
+ rx="3.0034139" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:#162d50;fill-opacity:1;fill-rule:evenodd;stroke:#3771c8;stroke-width:1.01883602;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect834"
+ width="91.981163"
+ height="16.981163"
+ x="0.90613663"
+ y="64.909142" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-24.685789"
+ y="-16.381306"
+ id="text833"><tspan
+ sodipodi:role="line"
+ id="tspan831"
+ x="-24.685789"
+ y="-16.381306">Rahmen unten überlagert Text. </tspan></text>
+ <path
+ style="fill:#162d50;stroke:#162d50;stroke-width:0.99243033px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 1.396717,81.903505 H 92.396713"
+ id="path844"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="display:inline;fill:url(#linearGradient1811-8-5-0-7-3-2-2);fill-opacity:1;stroke:none;stroke-width:0.42704147;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-2-4-3-1-9-7"
+ width="93"
+ height="18"
+ x="0"
+ y="0"
+ inkscape:transform-center-x="18.520099"
+ inkscape:transform-center-y="-34.342165" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:0.76801819"
+ id="rect3611-3-64-8-2"
+ width="93"
+ height="18"
+ x="-0.56892765"
+ y="29.394594" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.4326629;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 92.783668,18 V 0.21633123 H 0.21633165 V 0.43987423 18"
+ id="rect864"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="titlesafe.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/titlesafe.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.75"
+ inkscape:cx="-6.1518987"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ y="3.9999251"
+ x="3.9999261"
+ height="16.000149"
+ width="16.000147"
+ id="rect3592"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.99985242;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:2.000144;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect3594"
+ width="7.999856"
+ height="7.999856"
+ x="8.0000725"
+ y="8.0000725" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -24.018987,22.661392 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="toclip.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/toclip.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-19.322034"
+ inkscape:cy="10.372881"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.63811028;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="m 4.8190551,6.8190555 3.9018802,3.5739255 -3.9018802,3.152444 3.9018802,3.63552 10.4600087,0 -3.508873,-3.63552 3.508873,-3.152444 -3.508873,-3.5739255 -10.8530159,0 z"
+ id="rect2818"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -28.466102,21.919492 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="toolwindow.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/toolwindow.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ gradientTransform="matrix(2.1647059,0,0,0.7529402,-111.56471,36.517647)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient8838"
+ id="radialGradient2415"
+ fy="4.625"
+ fx="62.625"
+ r="10.625"
+ cy="4.625"
+ cx="62.625" />
+ <linearGradient
+ gradientTransform="matrix(0.9584364,0,0,0.9584366,0.9975246,1.9975253)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient2490-182-124"
+ id="linearGradient2412"
+ y2="3.0816143"
+ x2="18.379412"
+ y1="44.980297"
+ x1="18.379412" />
+ <radialGradient
+ gradientTransform="matrix(0,2.2874593,-3.0194057,0,36.047437,-50.630156)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient3242-187-536"
+ id="radialGradient2410"
+ fy="3.9900031"
+ fx="23.895569"
+ r="20.397499"
+ cy="3.9900031"
+ cx="23.895569" />
+ <linearGradient
+ gradientTransform="matrix(2.1153735,0,0,2.1153253,-107.57709,32.426559)"
+ gradientUnits="userSpaceOnUse"
+ xlink:href="#linearGradient4873"
+ id="linearGradient2407"
+ y2="5.4675598"
+ x2="63.397362"
+ y1="-12.489107"
+ x1="63.397362" />
+ <linearGradient
+ id="linearGradient4873">
+ <stop
+ offset="0"
+ style="stop-color:white;stop-opacity:1"
+ id="stop4875" />
+ <stop
+ offset="1"
+ style="stop-color:white;stop-opacity:0"
+ id="stop4877" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3242-187-536">
+ <stop
+ offset="0"
+ style="stop-color:#8badea;stop-opacity:1"
+ id="stop2778" />
+ <stop
+ offset="0.26238"
+ style="stop-color:#6396cd;stop-opacity:1"
+ id="stop2780" />
+ <stop
+ offset="0.66093999"
+ style="stop-color:#3b7caf;stop-opacity:1"
+ id="stop2782" />
+ <stop
+ offset="1"
+ style="stop-color:#194c70;stop-opacity:1"
+ id="stop2784" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2490-182-124">
+ <stop
+ offset="0"
+ style="stop-color:#1f4b6a;stop-opacity:1"
+ id="stop2788" />
+ <stop
+ offset="1"
+ style="stop-color:#4083c2;stop-opacity:1"
+ id="stop2790" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8838">
+ <stop
+ offset="0"
+ style="stop-color:black;stop-opacity:1"
+ id="stop8840" />
+ <stop
+ offset="1"
+ style="stop-color:black;stop-opacity:0"
+ id="stop8842" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective28645"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4873"
+ id="linearGradient28676"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1153735,0,0,2.1153253,-156.08556,14.875721)"
+ x1="63.397362"
+ y1="-12.489107"
+ x2="63.397362"
+ y2="5.4675598" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8838"
+ id="radialGradient28684"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1647059,0,0,0.7529402,-160.07318,18.966809)"
+ cx="62.625"
+ cy="4.625"
+ fx="62.625"
+ fy="4.625"
+ r="10.625" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-24.457627"
+ inkscape:cy="15.233898"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2">
+ <sodipodi:guide
+ orientation="-0.70710678,0.70710678"
+ position="-47.389831,40.271186"
+ id="guide28687"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <path
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ d="M 12 3 C 7.0341103 3 3 7.03411 3 12 C 3 16.96589 7.0341103 21.000001 12 21 C 16.965887 21 21.000004 16.96589 21 12 C 21 7.03411 16.965887 3 12 3 z M 12.125 5.5 C 12.423058 5.5046926 12.712173 5.5281471 13 5.5625 C 15.047066 5.7207861 16.967307 6.8138741 17 8.21875 C 17.149731 9.6754704 15.721162 10.918513 14.25 11.90625 C 12.85719 12.779629 12.5212 14.011148 12.5625 15.28125 C 12.087536 15.356939 11.46681 15.38012 11.4375 15.21875 C 11.40083 15.016778 11.46875 14.842971 11.46875 14.34375 C 11.465015 13.032431 12.378659 11.805717 13.25 10.71875 C 14.121336 9.6317818 14.738093 8.5181594 14.1875 7.78125 C 13.636906 7.0443401 12.32384 6.4133989 11 6.6875 C 10.94315 6.6992713 10.556127 6.784987 10.1875 6.96875 C 9.746356 7.1886603 9.34262 7.721512 9.4375 8 C 9.520767 8.2444093 9.66886 8.5166078 9.625 8.8125 C 9.567037 9.2035653 9.2056575 9.625 8.4375 9.625 C 7.12419 9.625 6.7649162 8.2535096 7.15625 7.5 C 7.8313924 6.1443934 10.038591 5.4671517 12.125 5.5 z M 11.96875 17 C 13.019549 16.987217 13.839289 17.859178 13.5 18.625 C 13.173648 19.609818 11.272851 19.838422 10.59375 18.96875 C 9.83332 18.181072 10.702948 16.94079 11.96875 17 z "
+ id="path2555" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -2.8389831,46.021186 v -11.5 l 13.0000001,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="top_justify.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/top_justify.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ff0000;stop-opacity:1;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.8250206"
+ inkscape:cx="-33.756065"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#aa0000;fill-opacity:1;stroke:none"
+ id="rect3592"
+ width="11.5"
+ height="4"
+ x="6.25"
+ y="6.5"
+ ry="0" />
+ <rect
+ style="fill:none;stroke:#e6e4dd;stroke-width:0.82834637;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="rect2818"
+ width="11.171654"
+ height="11.171654"
+ x="6.4141731"
+ y="6.4141731"
+ rx="0"
+ ry="5.5858274" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m 0.27314511,39.973615 v -11.5 l 12.99999989,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="transportdn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/transportdn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1861"
+ id="linearGradient1811-8-43-2"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-51.954696,-25.265704)" />
+ <linearGradient
+ id="linearGradient1861">
+ <stop
+ id="stop1857"
+ offset="0"
+ style="stop-color:#252525;stop-opacity:1" />
+ <stop
+ id="stop1859"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="773"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-51.406779"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="1"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ y="0"
+ x="-7.4655054e-10"
+ height="24"
+ width="24"
+ id="rect3597"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g4386"
+ transform="translate(1.5,1.4999991)">
+ <rect
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none"
+ id="rect3685"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect2911"
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-56.541138"
+ y="-12.058527"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-56.541138"
+ y="-12.058527">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-43-2);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-1-6"
+ width="23.019905"
+ height="23.019905"
+ x="-23.509953"
+ y="-23.509953"
+ transform="scale(-1)" />
+ <rect
+ y="-22.749918"
+ x="-23.249918"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8-3-3"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="transporthi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data//transporthi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3708">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3710" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop3712" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3700">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3702" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3704" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3700"
+ id="linearGradient3706"
+ x1="12"
+ y1="24.066484"
+ x2="12"
+ y2="-0.12475099"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.85867058,0,0,0.82783896,0.15558798,0.26714959)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3708"
+ id="linearGradient3716"
+ x1="12"
+ y1="23"
+ x2="12"
+ y2="1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.92105263,0,0,0.92105266,-0.55263202,-0.55263146)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-4-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.95469,-1.2657095)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-15.101695"
+ inkscape:cy="8.8474576"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3307"
+ transform="matrix(1,0,0,1.0007319,0,-0.00878251)">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="24"
+ height="23.982447"
+ x="-7.4655054e-10"
+ y="0.0087766619" />
+ <g
+ transform="translate(1.5,1.4999991)"
+ id="g3925">
+ <rect
+ ry="1.4531349"
+ y="0.36842105"
+ x="0.36842105"
+ height="20.263159"
+ width="20.263159"
+ id="rect3685"
+ style="fill:url(#linearGradient3716);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:url(#linearGradient3706);fill-opacity:1;stroke:none"
+ d="m 2.355931,1.0949885 c -0.750512,0 -1.341672,0.5699341 -1.341672,1.2934985 v 6.3381419 c 2.371917,1.4961401 5.581316,2.4059071 9.123375,2.4059071 3.879981,0 7.350855,-1.089622 9.767377,-2.8456966 V 2.388487 c 0,-0.7235644 -0.59116,-1.2934985 -1.341672,-1.2934985 z"
+ id="rect3687"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:0.7368421;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect2911"
+ width="20.263159"
+ height="20.263159"
+ x="0.36842105"
+ y="0.36842105"
+ ry="1.4531349" />
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-4-8);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-8-3"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.4891281"
+ x="0.98913193"
+ height="21.021744"
+ width="22.021744"
+ id="rect3597-5-7-9-4-8-9-8-0-2-7-9"
+ style="fill:none;fill-opacity:1;stroke:#5f8dd3;stroke-width:0.97825694;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-41.897072"
+ y="-21.414459"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-41.897072"
+ y="-21.414459">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="transportup.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/transportup.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-9" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.0943259"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.26378025,-1.0791239,-0.05356539)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-3"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective10-81"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817-9"
+ id="linearGradient1811-8"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.88538098,0,0,1.3541119,-27.954688,-1.265708)" />
+ <linearGradient
+ id="linearGradient1817-9">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop1813" />
+ <stop
+ style="stop-color:#151515;stop-opacity:1"
+ offset="1"
+ id="stop1815" />
+ </linearGradient>
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.9166667"
+ inkscape:cx="23.491526"
+ inkscape:cy="-29.170373"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer92"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer91"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3597"
+ width="24"
+ height="24"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer92"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8);fill-opacity:1;stroke:#141414;stroke-width:0.98009574;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6"
+ width="23.019905"
+ height="23.019905"
+ x="0.49004745"
+ y="0.49004745" />
+ <rect
+ y="1.250082"
+ x="0.75008202"
+ height="21.499836"
+ width="22.499836"
+ id="rect3597-5-7-9-4-8-9-8"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.50016463;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-43.829269"
+ y="-18.668697"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-43.829269"
+ y="-18.668697">see: recordpatch_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-57.152542"
+ y="61.016949"
+ id="text2236"><tspan
+ sodipodi:role="line"
+ id="tspan2234"
+ x="-57.152542"
+ y="61.016949">Start/Stop - "Leiste" u. Keyframe.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="19.000019"
+ height="20"
+ sodipodi:docname="tumble_bottom.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tumble_bottom.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-4-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870493,-0.56122538)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-1-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870637,-20.561215)" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.608696"
+ inkscape:cx="2.4222091"
+ inkscape:cy="5.5843368"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-1-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-9-3"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825182"
+ y="-19.825159"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-4-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-5-0"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17485064"
+ y="0.17482811" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-7-9"
+ d="m 3.526627,8.0780346 h 11.94695 l -6.07472,-6.07004 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="M 15.473577,11.921955 H 3.526627 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-7-4-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 18.500107,9.9999949 H 0.50010702"
+ id="path1006-7-2-1-1"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="-19.757013"
+ x="-18.757006"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-2-3"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-19.383112"
+ x="-18.383104"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-2-4"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-59.051292"
+ y="-6.7085304"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-59.051292"
+ y="-6.7085304">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.99999"
+ height="20"
+ sodipodi:docname="tumble_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tumble_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3909">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3911" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3913" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3901">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3903" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3905" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3901"
+ id="linearGradient3012"
+ gradientUnits="userSpaceOnUse"
+ x1="9.5606461"
+ y1="6.0659428"
+ x2="9.5606461"
+ y2="1.2171611" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="linearGradient3014"
+ gradientUnits="userSpaceOnUse"
+ x1="9.609375"
+ y1="17.31839"
+ x2="9.609375"
+ y2="12.814619" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3389">
+ <stop
+ id="stop3387"
+ offset="0"
+ style="stop-color:#87aade;stop-opacity:1" />
+ <stop
+ id="stop3385"
+ offset="1"
+ style="stop-color:#3771c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870597,-20.561233)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870533,-0.56120797)" />
+ <linearGradient
+ gradientTransform="rotate(-180,301.81572,-27.554635)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-8-2-3"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-9-3"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-518.4872,75.138662)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5-7-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-74.94271,-20.575922)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4-1-6"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,10.20158,-0.54651983)" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="16.724565"
+ inkscape:cx="22.854785"
+ inkscape:cy="14.664538"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-76.307877"
+ y="-28.38061"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-76.307877"
+ y="-28.38061">see: recordpatch_up</tspan></text>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3002"
+ transform="matrix(0.99557949,0,0,0.86714754,3.6282073e-7,0.02789196)">
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.89405602;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 18.667153,20.94922 c 0,0.892462 -1.25473,1.603752 -2.829053,1.603752 H 3.4279839 c -1.5743243,0 -2.86677443,-0.71129 -2.86677443,-1.603752 V 11.946824 H 18.667153 Z"
+ id="path3120"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 19,0 H -3.644317e-7 V 23 H 19 Z"
+ id="path3725"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.89405602;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 18.667153,2.0505768 c 0,-0.8924628 -1.25473,-1.60375224 -2.829053,-1.60375224 H 3.4279839 c -1.5743243,0 -2.86677443,0.71128944 -2.86677443,1.60375224 V 11.052972 H 18.667153 Z"
+ id="path4292"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3106"
+ d="m 18.667153,20.94922 c 0,0.892462 -1.25473,1.603752 -2.829053,1.603752 H 3.4279839 c -1.5743243,0 -2.86677443,-0.71129 -2.86677443,-1.603752 V 11.946824 H 18.667153 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.89405602;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910"
+ d="M 3.4999995,9 H 15.5 L 9.3983045,2 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3112"
+ d="m 3.9539076,1.217161 c -1.4301691,0 -2.6117466,0.6505812 -2.6117466,1.4431957 v 2.331316 C 2.5814756,5.1924095 3.846678,5.3896447 5.0894496,5.6022555 8.0679343,6.1118085 13.076157,7.1598048 17.779131,7.40625 V 2.6603567 c 0,-0.7926145 -1.124801,-1.4431957 -2.554969,-1.4431957 z"
+ style="opacity:0.5;fill:url(#linearGradient3012);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15.5,13.999999 H 3.4999998 L 9.6016953,21 Z"
+ id="path3917"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3118"
+ d="m 1.342161,12.814619 v 2.144796 c 3.1635629,1.751778 8.2387763,2.424147 12.67925,2.354045 1.088449,-0.01718 2.410861,-0.11459 3.855178,-0.261561 v -4.23728 z"
+ style="opacity:0.5;fill:url(#linearGradient3014);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4-1);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5-0"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17482358"
+ y="0.17485046" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5-7);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6-6"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825153"
+ y="-19.82515"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5-4"
+ d="M 15.473476,11.921973 H 3.5265257 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#3771c8;fill-opacity:1;stroke:none"
+ d="M 3.5265257,8.0780521 H 15.473476 l -6.0747203,-6.07004 z"
+ id="path2910-1-9-2-6-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.49999568,10.000012 H 18.499996"
+ id="path1006-7-8-9"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24299622"
+ x="0.24299985"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4-4"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.61689758"
+ x="0.61684018"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8-5"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#3771c8;fill-opacity:1;stroke:none"
+ d="M 15.473476,11.921973 H 3.5265257 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-6-7-4"
+ sodipodi:nodetypes="cccc" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4-1-6);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5-0-9"
+ width="18.650328"
+ height="9.6503277"
+ x="33.246937"
+ y="0.1895386" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5-7-9);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6-6-3"
+ width="18.650328"
+ height="9.6503277"
+ x="-51.897266"
+ y="-19.839838"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5-4-3"
+ d="m 48.545589,11.936662 h -11.94695 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-9-3);fill-opacity:1;stroke:none"
+ d="m 36.598639,8.0927407 h 11.94695 l -6.07472,-6.0700404 z"
+ id="path2910-1-9-2-6-0-8"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 33.572109,10.014701 h 18"
+ id="path1006-7-8-9-0"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.25768435"
+ x="33.315113"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4-4-5"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.63158596"
+ x="33.688953"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8-5-6"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-8-2-3);fill-opacity:1;stroke:none"
+ d="m 48.545589,11.936662 h -11.94695 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-6-7-4-6"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="36.234127"
+ y="-6.7869444"
+ id="text961"><tspan
+ sodipodi:role="line"
+ id="tspan959"
+ x="36.234127"
+ y="8.4605312" /></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="19"
+ height="20"
+ sodipodi:docname="tumble_top.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tumble_top.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.87053,-20.561236)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.8706,-0.56120448)" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="7.2862744"
+ inkscape:cx="6.1437766"
+ inkscape:cy="6.6642157"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-64.534416"
+ y="-9.1832142"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-64.534416"
+ y="-9.1832142">see: recordpatch_up</tspan></text>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-6"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17482835"
+ y="0.17484182" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-1);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-6"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825159"
+ y="-19.825172"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-3"
+ d="M 15.47341,11.921976 H 3.5264598 l 6.07472,6.07004 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="M 3.5264598,8.0780551 H 15.47341 L 9.3986898,2.0080155 Z"
+ id="path2910-1-9-2-7-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.49992989,10.000016 H 18.49993"
+ id="path1006-7-2-9"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24298757"
+ x="0.24300462"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-5"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.61688894"
+ x="0.61684495"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-21"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.999979"
+ height="20.000025"
+ sodipodi:docname="tumble_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/tumble_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870572,-20.561237)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870558,-0.56120278)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="27.449967"
+ inkscape:cx="-13.214064"
+ inkscape:cy="10.000013"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3120"
+ d="m 18.584623,18.193978 c 0,0.773897 -1.249182,1.390691 -2.816545,1.390691 H 3.4128287 c -1.567364,0 -2.85410005,-0.616794 -2.85410005,-1.390691 V 10.387563 H 18.584623 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3725"
+ d="M 18.915999,0.02789161 H 0 V 19.972309 h 18.915999 z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292"
+ d="m 18.584623,1.8060463 c 0,-0.7738978 -1.249182,-1.39069141 -2.816545,-1.39069141 H 3.4128287 c -1.567364,0 -2.85410005,0.61679361 -2.85410005,1.39069141 V 9.6124605 H 18.584623 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 18.584623,18.193978 c 0,0.773897 -1.249182,1.390691 -2.816545,1.390691 H 3.4128287 c -1.567364,0 -2.85410005,-0.616794 -2.85410005,-1.390691 V 10.387563 H 18.584623 Z"
+ id="path3106" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 3.4845259,7.8322287 H 15.431473 l -6.0747193,-6.07004 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917"
+ d="M 15.431473,12.167971 H 3.4845262 l 6.0747191,6.070041 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17481786"
+ y="0.17484736" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825148"
+ y="-19.825178"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6"
+ d="M 15.473452,11.921977 H 3.5265034 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 3.5265034,8.0780572 H 15.473452 l -6.0747186,-6.07004 z"
+ id="path2910-1-9-2"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.49997339,10.000017 H 18.499973"
+ id="path1006-7"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24300838"
+ x="0.24299413"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.61689448"
+ x="0.61683446"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-58.81678"
+ y="-5.9982738"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-58.81678"
+ y="-5.9982738">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="undo.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/undo.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6" />
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-34.423729"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.26538837;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3372"
+ d="m 12.123835,16.368167 c 0.705216,0.0422 1.786303,-0.219846 2.440496,-0.890699 1.092026,-1.119837 1.348807,-3.771902 0.01117,-5.101648 C 14.033896,9.837408 12.74768,9.1386852 12.002097,9.1176247 l -0.0081,1.9221003 -3.8094328,-3.0813088 c 0,0 3.8094328,-3.3256929 3.8094328,-3.3256929 l 0.0088,1.8084223 c 1.643258,0.030842 3.199737,0.5892155 4.447886,1.841805 2.53913,2.5481644 2.535054,6.6612824 0.109355,9.2057174 -1.240487,1.301207 -2.865371,1.921559 -4.496665,1.876334" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#e6e4dd;stroke-width:1.26538837;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3453"
+ d="M 12.346741,19.345035 C 9.3833483,19.560874 5.8611924,17.448853 5.6326942,13.464128 l 2.7296045,0.368993 c 0.1531975,1.621781 2.4236823,2.765463 3.7947763,2.566855" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -8.5338983,58.427966 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="25"
+ height="25"
+ sodipodi:docname="updir.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/updir.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ r="15.644737"
+ fy="36.421127"
+ fx="24.837126"
+ cy="36.421127"
+ cx="24.837126"
+ gradientTransform="matrix(1,0,0,0.536723,0,16.87306)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1444"
+ xlink:href="#linearGradient8662"
+ inkscape:collect="always" />
+ <radialGradient
+ r="16.956199"
+ fy="22.454971"
+ fx="11.319205"
+ cy="22.454971"
+ cx="11.319205"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,0.606436,42.58614)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1441"
+ xlink:href="#linearGradient2304"
+ inkscape:collect="always" />
+ <radialGradient
+ r="17.171415"
+ fy="0.40010813"
+ fx="24.53788"
+ cy="0.40010813"
+ cx="24.53788"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,2.767009,66.93275)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1438"
+ xlink:href="#linearGradient8650"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8650">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop8652" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop8654" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient8662">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop8664" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop8666" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2304">
+ <stop
+ style="stop-color:#73d216"
+ offset="0"
+ id="stop2306" />
+ <stop
+ style="stop-color:#4e9a06"
+ offset="1.0000000"
+ id="stop2308" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective23"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient8650"
+ id="radialGradient14616"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-2.046729,1.55761,0,-8.73299,55.433144)"
+ cx="24.53788"
+ cy="0.40010813"
+ fx="24.53788"
+ fy="0.40010813"
+ r="17.171415" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2304"
+ id="radialGradient14619"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-0.843022,1.020168,0,-10.893563,31.086534)"
+ cx="11.319205"
+ cy="22.454971"
+ fx="11.319205"
+ fy="22.454971"
+ r="16.956199" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.44"
+ inkscape:cx="-22.775424"
+ inkscape:cy="10.699153"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="color:#000000;fill:#e6e4dd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;fill-opacity:1"
+ d="m 7.4513442,22 10.1863998,0 0,-8.112612 4.362256,0 L 12.421889,3 3,13.914498 l 4.3695407,-0.0138 0.081806,8.099298 z"
+ id="path8658"
+ sodipodi:nodetypes="cccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -24.402542,59.351695 v -11.5 l 13,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="440"
+ height="100"
+ sodipodi:docname="vbuttons_left.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_left.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1059">vbuttons_left</title>
+ <metadata
+ id="metadata8">
+ <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>vbuttons_left</dc:title>
+ <dc:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description></dc:description>
+ <dc:relation>vbuttons_right</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#c97ac9"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="721"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="4.1454545"
+ inkscape:cx="186.65265"
+ inkscape:cy="57.654124"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer3"
+ inkscape:showpageshadow="false"
+ borderlayer="true" />
+ <rect
+ style="fill:none;stroke:none"
+ id="rect2818-5"
+ width="130"
+ height="100"
+ x="442.36206"
+ y="-0.36207789" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="test"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#262626;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8219595;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect875"
+ width="440"
+ height="85"
+ x="-1.4210855e-14"
+ y="15" />
+ <g
+ style="display:inline;fill:#030303;fill-opacity:1"
+ id="g905-7"
+ transform="matrix(0.95255298,0,0,0.13350967,12.544548,1.0666154)">
+ <rect
+ y="-7.9890494"
+ x="-13.169396"
+ height="119.84151"
+ width="461.91656"
+ id="rect875-9"
+ style="opacity:1;fill:#030303;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ id="text880-60"
+ y="9.2619305"
+ x="420.86398"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#030303;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="9.2619305"
+ x="420.86398"
+ id="tspan878-4"
+ sodipodi:role="line">cb-l</tspan></text>
+ <text
+ id="text880-6-1"
+ y="53.728001"
+ x="211.7973"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#030303;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="53.728001"
+ x="211.7973"
+ id="tspan878-5-0"
+ sodipodi:role="line">cb-l</tspan></text>
+ </g>
+ <rect
+ style="display:inline;opacity:1;fill:#474747;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20521858;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1006-7"
+ width="1"
+ height="84"
+ x="439"
+ y="15.000001" />
+ <rect
+ style="display:inline;opacity:1;fill:#474747;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.46968141;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1006-7-0"
+ width="1"
+ height="440"
+ x="16"
+ y="-440"
+ transform="rotate(90)" />
+ <rect
+ style="display:inline;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.46968141;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1006-7-0-8"
+ width="1"
+ height="440"
+ x="99"
+ y="-440"
+ transform="rotate(90)" />
+ <path
+ style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 440,100 v -1 h -1 l 1,1 v -1"
+ id="path1053"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="display:inline;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;"
+ x="165.00089"
+ y="-55.090027"
+ id="text125397"><tspan
+ sodipodi:role="line"
+ id="tspan125395"
+ x="165.00089"
+ y="-55.090027">vbuttons</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:'Myriad Pro';-inkscape-font-specification:'Myriad Pro, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
+ x="83.296425"
+ y="-36.303249"
+ id="text879"><tspan
+ sodipodi:role="line"
+ id="tspan877"
+ x="83.296425"
+ y="-36.303249">Background of the buttons in the viewer. Left, until vbuttons_right.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="130"
+ height="100"
+ sodipodi:docname="vbuttons_right.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vbuttons_right.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title899">vbuttons_right</title>
+ <metadata
+ id="metadata8">
+ <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>vbuttons_right</dc:title>
+ <dc:date>2018-08-20</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-20: new</dc:description>
+ <dc:relation>vbuttons_left</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient2305">
+ <stop
+ id="stop2303"
+ offset="0"
+ style="stop-color:#121212;stop-opacity:1" />
+ <stop
+ id="stop2301"
+ offset="1"
+ style="stop-color:#2d2d2d;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2305"
+ id="linearGradient2299"
+ x1="64.7089"
+ y1="16.90979"
+ x2="64.792068"
+ y2="100"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.0246988,0,-2.4698809)" />
+ </defs>
+ <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="721"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.155"
+ inkscape:cx="65"
+ inkscape:cy="50"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer65"
+ inkscape:snap-bbox="true"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer65"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient2299);fill-opacity:1;stroke:none;stroke-width:0.47747087;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0,14.95001 V 100 H 130 V 14.95 Z"
+ id="rect2818-6"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ y="0"
+ x="0"
+ height="15"
+ width="130"
+ id="rect8114-2"
+ style="fill:#030303;fill-opacity:1;stroke:none;stroke-width:0.38729832" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="txt">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-47.973331"
+ y="-76.304466"
+ id="text2287"><tspan
+ sodipodi:role="line"
+ x="-47.973331"
+ y="-76.304466"
+ id="tspan2289">Viewer, bottom right.</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot891"
+ style="fill:black;fill-opacity:1;stroke:none;font-family:Andika;font-style:normal;font-weight:normal;font-size:16px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Andika, Normal';font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal"><flowRegion
+ id="flowRegion893"><rect
+ id="rect895"
+ width="187.71599"
+ height="254.64537"
+ x="-503.539"
+ y="-156.21402" /></flowRegion><flowPara
+ id="flowPara897"></flowPara></flowRoot> <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-99.352982"
+ y="183.24168"
+ id="text911"><tspan
+ sodipodi:role="line"
+ id="tspan909"
+ x="-99.352982"
+ y="183.24168">The pattern repeats itself until it fits horizontally.</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="175"
+ height="24"
+ sodipodi:docname="vclock.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#ff47ff"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1280"
+ inkscape:window-height="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="5.1097505"
+ inkscape:cx="66.225195"
+ inkscape:cy="35.560243"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ borderlayer="true">
+ <sodipodi:guide
+ position="1.0117188,1.0039062"
+ orientation="0,1"
+ id="guide1083"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="0.99609375,-0.046875"
+ orientation="1,0"
+ id="guide1085"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-0.00020599365,0"
+ orientation="0,1"
+ id="guide1087"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-0.00020599365,0"
+ orientation="1,0"
+ id="guide1089"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,6)"
+ style="display:inline">
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot979"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;line-height:25px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion981"><rect
+ id="rect983"
+ width="50.616116"
+ height="23.548225"
+ x="17.011707"
+ y="20.178839" /></flowRegion><flowPara
+ id="flowPara985" /></flowRoot> <rect
+ style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80964714;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect880"
+ width="175.00041"
+ height="24"
+ x="-0.00020599365"
+ y="-6"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vclock.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1.04582512"
+ id="rect2818-0-0"
+ width="175"
+ height="1"
+ x="5.6504189e-07"
+ y="17" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.58793247;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path984"
+ sodipodi:sides="3"
+ sodipodi:cx="91.462463"
+ sodipodi:cy="-5.6481247"
+ sodipodi:r1="0.078734197"
+ sodipodi:r2="0.039367098"
+ sodipodi:arg1="-0.52359878"
+ sodipodi:arg2="0.52359878"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 91.530649,-5.6874918 -0.06819,0.1181013 -0.06818,-0.1181013 z"
+ transform="matrix(-2.2445166e-7,4.4132402,1.2958726e-7,7.6439585,91.464615,-366.34546)"
+ inkscape:transform-center-y="-4.4478736e-06" />
+ <rect
+ style="fill:#040404;fill-opacity:1;stroke:none;stroke-width:1.04582512"
+ id="rect2818-0-0-6"
+ width="175"
+ height="1"
+ x="0"
+ y="-6" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.38729838"
+ id="rect2818-0-0-9"
+ width="24"
+ height="1"
+ x="-6"
+ y="-1"
+ transform="rotate(90)" />
+ <rect
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.38729838"
+ id="rect2818-0-0-9-3"
+ width="24"
+ height="1"
+ x="-6"
+ y="-175"
+ transform="rotate(90)" />
+ <path
+ style="fill:#474747;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M -2.0599365e-4,18 0.99609375,16.996094 1,18 Z"
+ id="path1091"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99985003px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 175,-6 173.98837,-5.0039065 174,-6 Z"
+ id="path1091-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="84"
+ sodipodi:docname="vscroll_handle_bg.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_bg.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. Breeze dark</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="3.7083333"
+ inkscape:cx="8.5"
+ inkscape:cy="42"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g2815"
+ transform="matrix(0,0.48554913,1,0,4.6325685e-8,0)">
+ <rect
+ style="fill:#333333;stroke:none"
+ id="rect3592"
+ width="173"
+ height="17"
+ x="0"
+ y="0"
+ ry="0" />
+ <rect
+ y="15.000001"
+ x="0"
+ height="2"
+ width="173"
+ id="rect3596"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none"
+ id="rect3598"
+ width="173"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3626"
+ width="173"
+ height="1"
+ x="0"
+ y="16" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ ry="0"
+ y="0"
+ x="0"
+ height="17"
+ width="84"
+ id="rect3592-3-2"
+ style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.69681358"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="30.110355"
+ x="-1.7161243"
+ height="1"
+ width="84"
+ id="rect3626-9-1"
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.69681358"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="36.13435"
+ x="-1.2856899"
+ height="1"
+ width="84"
+ id="rect3598-1-5"
+ style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.69681358"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ ry="0"
+ y="0.49106121"
+ x="0.49106216"
+ height="16.017878"
+ width="83.017876"
+ id="rect3592-3-2-9"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.98212248;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0,1,1,0,0,0)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-101.31548"
+ y="-42.547577"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-101.31548"
+ y="-42.547577"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="84"
+ sodipodi:docname="vscroll_handle_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.
+Formats see: hscroll_handle_up.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594-5"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-9"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-8"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609-6"
+ inkscape:collect="always">
+ <stop
+ id="stop3611-1"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613-1"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594-5"
+ id="linearGradient2845"
+ gradientUnits="userSpaceOnUse"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609-6"
+ id="linearGradient2847"
+ gradientUnits="userSpaceOnUse"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="4.0148707"
+ inkscape:cx="-71.113071"
+ inkscape:cy="47.765742"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <a
+ id="a841">
+ <g
+ transform="matrix(0,0.80769231,1,0,9.5367432e-7,0)"
+ id="g2835">
+ <rect
+ ry="0"
+ y="-9.5367432e-07"
+ x="0"
+ height="17"
+ width="104"
+ id="rect3592"
+ style="fill:#333333;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3596"
+ width="104"
+ height="2"
+ x="0"
+ y="15" />
+ <rect
+ y="0"
+ x="0"
+ height="1"
+ width="104"
+ id="rect3598"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none" />
+ <rect
+ y="16"
+ x="0"
+ height="1"
+ width="104"
+ id="rect3626"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <g
+ id="g3008"
+ transform="matrix(0.81610322,0,0,0.73461166,0.50705512,1.0917732)">
+ <rect
+ ry="2.7060997"
+ y="0.40201911"
+ x="0.46580401"
+ height="19.365078"
+ width="125.26063"
+ id="rect2818"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000" />
+ <rect
+ style="opacity:0.5;fill:url(#linearGradient2845);fill-opacity:1;stroke:#000000"
+ id="rect2820"
+ width="125.26063"
+ height="19.365078"
+ x="0.46580401"
+ y="0.40201911"
+ ry="2.7060997" />
+ <path
+ id="rect3602"
+ d="m 3.1875,0.40625 c -1.4991793,0 -2.71875,1.1883207 -2.71875,2.6875 V 17.0625 c 0,1.099744 0.6558791,2.0446 1.59375,2.46875 v -7.8125 C 2.0625,10.214569 3.277069,9 4.78125,9 H 121 c 1.50418,0 2.71875,1.214569 2.71875,2.71875 v 7.9375 c 1.15041,-0.311824 2,-1.341989 2,-2.59375 V 3.09375 c 0,-1.4991793 -1.18832,-2.6875 -2.6875,-2.6875 z"
+ style="opacity:0.1;fill:url(#linearGradient2847);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </a>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ transform="rotate(-90)"
+ ry="0"
+ y="3.3671595e-15"
+ x="-84"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-64"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699" />
+ <g
+ id="g2340"
+ transform="matrix(0,-0.80769224,1,0,-30.260086,55.990895)">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.9819805"
+ id="rect3598-1-3-9-0-3"
+ width="100.28572"
+ height="1"
+ x="-32.820801"
+ y="30.760086" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,2.989691)"
+ id="use884-8-1-7-7"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(3.595635e-6,5.979383)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3-9"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,8.969076)"
+ id="use888-5-7-1-7"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(3.595635e-6,11.958769)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1-4"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,14.948461)"
+ id="use892-6-8-9-9"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <rect
+ y="30.760086"
+ x="67.46492"
+ height="16"
+ width="1.2380953"
+ id="rect903-4-7-0-1"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16818289;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-101.52381)"
+ id="use905-0-0-5-7"
+ xlink:href="#rect903-4-7-0-1"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ transform="rotate(-90)"
+ ry="0"
+ y="0.2456398"
+ x="-83.754364"
+ height="16.50872"
+ width="83.508713"
+ id="rect3592-3-3-1-1-3-0"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.491;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,3.6162109e-6,56.804491)"
+ id="g1995-2-60">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-3"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-5"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,3.6162109e-6,83.999995)"
+ id="g1995-7-9">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-1"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,3.6162109e-6,112.68437)"
+ id="g1995-4-4">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-54"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-5"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901591,56.804491)"
+ id="g2238-6">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-34"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-4"
+ xlink:href="#rect867-6-5-2-5-3-7-8-34"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901591,83.999995)"
+ id="g2238-39">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-7"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-25"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-89"
+ xlink:href="#rect867-6-5-2-5-3-7-8-25"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901591,112.68437)"
+ id="g2238-0">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-24"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-76"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-76"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-104.02164"
+ y="-38.144535"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-104.02164"
+ y="-38.144535"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="84"
+ sodipodi:docname="vscroll_handle_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594-5"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-9"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-8"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609-6"
+ inkscape:collect="always">
+ <stop
+ id="stop3611-1"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613-1"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594-5"
+ id="linearGradient2843"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.81610322,0,0,0.73461166,0.50705512,1.0917732)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609-6"
+ id="linearGradient2845"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.81610322,0,0,0.73461166,0.50705512,1.0917732)"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="2.9821429"
+ inkscape:cx="-146.08682"
+ inkscape:cy="38.982036"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g2834"
+ transform="matrix(0,0.80769231,1,0,9.5367432e-7,0)">
+ <rect
+ style="fill:#333333;stroke:none"
+ id="rect3592"
+ width="104"
+ height="17"
+ x="0"
+ y="-9.5367432e-07"
+ ry="0" />
+ <rect
+ y="15"
+ x="0"
+ height="2"
+ width="104"
+ id="rect3596"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none"
+ id="rect3598"
+ width="104"
+ height="1"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ id="rect3626"
+ width="104"
+ height="1"
+ x="0"
+ y="16" />
+ <rect
+ ry="1.9879324"
+ y="1.3871012"
+ x="0.88719928"
+ height="14.225812"
+ width="102.2256"
+ id="rect2818"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.77428609" />
+ <rect
+ style="opacity:0.5;fill:url(#linearGradient2843);fill-opacity:1;stroke:#000000;stroke-width:0.77428609"
+ id="rect2820"
+ width="102.2256"
+ height="14.225812"
+ x="0.88719928"
+ y="1.3871012"
+ ry="1.9879324" />
+ <path
+ id="rect3602"
+ d="m 3.1083841,1.3902092 c -1.223485,0 -2.2187806,0.8729542 -2.2187806,1.9742688 v 10.261607 c 0,0.807884 0.535265,1.501987 1.3006645,1.813572 V 9.7005036 c 0,-1.1049889 0.9912137,-1.9972255 2.2187806,-1.9972255 H 99.255545 c 1.227565,0 2.218785,0.8922366 2.218785,1.9972255 v 5.8309804 c 0.93885,-0.22907 1.6322,-0.985841 1.6322,-1.905399 V 3.364478 c 0,-1.1013146 -0.96979,-1.9742688 -2.19328,-1.9742688 z"
+ style="opacity:0.3;fill:url(#linearGradient2845);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ transform="rotate(-90)"
+ ry="0"
+ y="-1.9619111e-15"
+ x="-84"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-1"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699" />
+ <g
+ id="g1918-7"
+ transform="translate(21.565407,-0.54116224)">
+ <rect
+ transform="rotate(-90)"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.88252258"
+ id="rect3598-1-3-9-0-04"
+ width="81"
+ height="1"
+ x="-83.041161"
+ y="-21.065405" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.9896911,-2.932238e-6)"
+ id="use884-8-1-7-0"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.9793835,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3-8"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(8.9690759,-2.932238e-6)"
+ id="use888-5-7-1-5"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(11.958769,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1-1"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(14.948461,-2.932238e-6)"
+ id="use892-6-8-9-66"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <rect
+ transform="rotate(-90)"
+ y="-21.065405"
+ x="-2.0411606"
+ height="16"
+ width="1"
+ id="rect903-4-7-0-2"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,82)"
+ id="use905-0-0-5-1"
+ xlink:href="#rect903-4-7-0-2"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ transform="rotate(-90)"
+ ry="0"
+ y="0.2456398"
+ x="-83.754364"
+ height="16.50872"
+ width="83.508713"
+ id="rect3592-3-3-1-1-3-9"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.491;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,1.5793457e-6,56.804494)"
+ id="g1995-2-6">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-0"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-8"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,1.5793457e-6,84.000001)"
+ id="g1995-7-8">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-2"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,1.5793457e-6,112.68437)"
+ id="g1995-4-2">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-9"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-7"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-7"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901589,56.804494)"
+ id="g2238-9">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-8"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-8"
+ xlink:href="#rect867-6-5-2-5-3-7-8-3"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901589,84.000001)"
+ id="g2238-5">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,57.901589,112.68437)"
+ id="g2238-3">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-4"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-6"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-3"
+ xlink:href="#rect867-6-5-2-5-3-7-8-6"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-89.248459"
+ y="-27.456678"
+ id="text2430"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-89.248459"
+ y="-27.456678"
+ style="stroke-width:1">see vscroll_handle_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="84"
+ sodipodi:docname="vscroll_handle_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_handle_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description></dc:description>
+ <dc:relation>*scroll_handle*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594-5"
+ inkscape:collect="always">
+ <stop
+ id="stop3596-9"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598-8"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594-5"
+ id="linearGradient3012"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.65916029,0,0,0.73461166,0.40954452,1.0917742)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#ff95ff"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="2.9144925"
+ inkscape:cx="4.7321168"
+ inkscape:cy="92.474115"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false"
+ borderlayer="true">
+ <sodipodi:guide
+ position="7.9999989,72.830118"
+ orientation="0,1"
+ id="guide1829"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.999999,45.634614"
+ orientation="0,1"
+ id="guide1846"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7.999999,16.950242"
+ orientation="0,1"
+ id="guide1877"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="-176.42715,9.9719695"
+ orientation="1,0"
+ id="guide2543"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="104.54752,135.32648"
+ orientation="1,0"
+ id="guide2731"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="130.54752,138.91671"
+ orientation="1,0"
+ id="guide3354"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="208.54752,135.32648"
+ orientation="1,0"
+ id="guide3356"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="182.54753,138.677"
+ orientation="1,0"
+ id="guide3358"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="178.87544,143.32651"
+ orientation="1,0"
+ id="guide3362"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="134.1786,143.36102"
+ orientation="1,0"
+ id="guide3368"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ ry="0"
+ y="3.5937499e-15"
+ x="0"
+ height="17"
+ width="84"
+ id="rect3592"
+ style="fill:#333333;stroke:none"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3596"
+ width="84"
+ height="2"
+ x="0"
+ y="15.000001"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="9.5367432e-07"
+ x="0"
+ height="1"
+ width="84"
+ id="rect3598"
+ style="fill:#1a1a1a;fill-opacity:1;stroke:none"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ y="16.000002"
+ x="0"
+ height="1"
+ width="84"
+ id="rect3626"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.69586408"
+ id="rect2818"
+ width="82.566833"
+ height="14.225812"
+ x="0.71658403"
+ y="1.3871021"
+ ry="1.9879324"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ ry="1.9879324"
+ y="1.3871021"
+ x="0.71658403"
+ height="14.225812"
+ width="82.566833"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3012);fill-opacity:1;stroke:#000000;stroke-width:0.69586408"
+ transform="matrix(0,1,1,0,0,0)" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ ry="0"
+ y="-241.56889"
+ x="3.2396135"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-5"
+ style="display:inline;fill:#474747;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <g
+ style="display:inline"
+ id="g876-4-9"
+ transform="matrix(0,-0.80769224,1,0,-241.50138,-3.2396123)">
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3598-1-3-9-3"
+ width="104"
+ height="1"
+ x="-3.8146973e-06"
+ y="0.82458687" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,2.8431578)"
+ id="use884-8-1-5"
+ xlink:href="#rect3598-1-3-9-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,5.6863169)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-7"
+ xlink:href="#rect3598-1-3-9-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,8.5294759)"
+ id="use888-5-7-0"
+ xlink:href="#rect3598-1-3-9-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,11.372635)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-8"
+ xlink:href="#rect3598-1-3-9-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,14.215794)"
+ id="use892-6-8-1"
+ xlink:href="#rect3598-1-3-9-3"
+ y="0"
+ x="0" />
+ <rect
+ y="0.82458687"
+ x="103"
+ height="15.215795"
+ width="1"
+ id="rect903-4-7-9"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14739816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-103)"
+ id="use905-0-0-9"
+ xlink:href="#rect903-4-7-9"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="-240.51758"
+ x="96.54493"
+ height="17"
+ width="104"
+ id="rect3592-3-3"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none"
+ transform="rotate(-90)" />
+ <g
+ style="display:inline"
+ id="g876"
+ transform="rotate(-90,-168.4975,71.952569)">
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3598-1-3"
+ width="104"
+ height="1"
+ x="-3.8146973e-06"
+ y="0.82458687" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,2.8431578)"
+ id="use884-8"
+ xlink:href="#rect3598-1-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,5.6863169)"
+ height="100%"
+ width="100%"
+ id="use886-0"
+ xlink:href="#rect3598-1-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,8.5294759)"
+ id="use888-5"
+ xlink:href="#rect3598-1-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,11.372635)"
+ height="100%"
+ width="100%"
+ id="use890-6"
+ xlink:href="#rect3598-1-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,14.215794)"
+ id="use892-6"
+ xlink:href="#rect3598-1-3"
+ y="0"
+ x="0" />
+ <rect
+ y="0.82458687"
+ x="103"
+ height="15.215795"
+ width="1"
+ id="rect903-4"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14739816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-103)"
+ id="use905-0"
+ xlink:href="#rect903-4"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="rotate(-90,-168.53126,71.986329)"
+ id="g1328">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885"
+ xlink:href="#rect867-6"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ style="opacity:1;fill:#454444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-4"
+ width="3"
+ height="1.7"
+ x="182.58153"
+ y="-232.86758"
+ transform="rotate(-90)" />
+ <rect
+ style="opacity:1;fill:#454444;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-6"
+ width="1"
+ height="1"
+ x="187.55891"
+ y="-232.51758"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-6"
+ id="use885-2"
+ transform="translate(-2.8293828e-6,8.0000007)"
+ width="100%"
+ height="100%" />
+ <g
+ transform="rotate(-90,-150.77426,89.743325)"
+ id="g1328-6">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6"
+ xlink:href="#rect867-6-5"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="-308.18686"
+ x="3.6562395"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <rect
+ y="-307.29474"
+ x="3.6562395"
+ height="0.5"
+ width="83.999992"
+ id="rect3598-1-3-9"
+ style="fill:#808078;fill-opacity:1;stroke:none;stroke-width:0.63548887"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9"
+ id="use884-8-1"
+ transform="translate(2.9413372)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9"
+ id="use886-0-0"
+ width="100%"
+ height="100%"
+ transform="translate(5.8826772)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9"
+ id="use888-5-7"
+ transform="translate(8.8240172)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9"
+ id="use890-6-5"
+ width="100%"
+ height="100%"
+ transform="translate(11.765357)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9"
+ id="use892-6-8"
+ transform="translate(14.706697)"
+ width="100%"
+ height="100%" />
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.13246924;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect903-4-7"
+ width="0.80769223"
+ height="15.215795"
+ x="86.848549"
+ y="-307.29474"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect903-4-7"
+ id="use905-0-0"
+ transform="translate(-2.8293828e-6,83.192301)"
+ width="100%"
+ height="100%" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,-308.18686,-3.6562323)"
+ id="g1328-4">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-8"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-4"
+ xlink:href="#rect867-6-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-308.18686,-32.340603)"
+ id="g1328-0-2">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-4-9"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-6-6"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-2-1"
+ xlink:href="#rect867-6-6-6"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-308.18686,25.028137)"
+ id="g1328-6-0">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2"
+ xlink:href="#rect867-6-5-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="g3849"
+ style="fill:#efede3;fill-opacity:1"
+ transform="matrix(3.8446542,0,0,3.8446542,-282.35569,-1661.1217)">
+ <text
+ id="text3817"
+ y="387.69995"
+ x="6.9821672"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;line-height:6.61450005px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke:none;stroke-width:0.26458001"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.99714661px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#efede3;fill-opacity:1;stroke-width:0.26458001"
+ y="387.69995"
+ x="6.9821672"
+ id="tspan3815"
+ sodipodi:role="line">0</tspan></text>
+ <circle
+ r="0.38097724"
+ cy="385.56229"
+ cx="8.7391434"
+ id="path3844"
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-4-0"
+ width="3"
+ height="1.7"
+ x="147.06755"
+ y="-232.86758"
+ transform="rotate(-90)" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-6-8"
+ width="1"
+ height="1"
+ x="152.04492"
+ y="-232.51758"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-6-8"
+ id="use885-2-6"
+ transform="translate(-2.8293828e-6,8.0000007)"
+ width="100%"
+ height="100%" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-4-2"
+ width="3"
+ height="1.7"
+ x="111.55356"
+ y="-232.86758"
+ transform="rotate(-90)" />
+ <rect
+ style="opacity:1;fill:#efede3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-6-4"
+ width="1"
+ height="1"
+ x="116.53094"
+ y="-232.51758"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-6-4"
+ id="use885-2-7"
+ transform="translate(-2.8293828e-6,8.0000007)"
+ width="100%"
+ height="100%" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,-241.5689,-3.2396023)"
+ id="g1328-4-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-8-8"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-0-2"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-4-5"
+ xlink:href="#rect867-6-0-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-241.5689,-3.2396023)"
+ id="g1328-0-2-3">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-4-9-4"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-6-6-9"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-2-1-0"
+ xlink:href="#rect867-6-6-6-9"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-241.5689,-3.2396023)"
+ id="g1328-6-0-2">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-1"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-9"
+ xlink:href="#rect867-6-5-2-1"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="-1.9619111e-15"
+ x="-84"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <g
+ id="g1918"
+ transform="translate(21.565405,-0.54116058)">
+ <rect
+ transform="rotate(-90)"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.88252258"
+ id="rect3598-1-3-9-0"
+ width="81"
+ height="1"
+ x="-83.041161"
+ y="-21.065405" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.9896911,-2.932238e-6)"
+ id="use884-8-1-7"
+ xlink:href="#rect3598-1-3-9-0"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.9793835,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3"
+ xlink:href="#rect3598-1-3-9-0"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(8.9690759,-2.932238e-6)"
+ id="use888-5-7-1"
+ xlink:href="#rect3598-1-3-9-0"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(11.958769,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1"
+ xlink:href="#rect3598-1-3-9-0"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(14.948461,-2.932238e-6)"
+ id="use892-6-8-9"
+ xlink:href="#rect3598-1-3-9-0"
+ y="0"
+ x="0" />
+ <rect
+ transform="rotate(-90)"
+ y="-21.065405"
+ x="-2.0411606"
+ height="16"
+ width="1"
+ id="rect903-4-7-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,82)"
+ id="use905-0-0-5"
+ xlink:href="#rect903-4-7-0"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="-273.12115"
+ x="2.0494127"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-6"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <rect
+ y="-273.12115"
+ x="3.3079729"
+ height="1"
+ width="82"
+ id="rect3598-1-3-9-0-6"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.88795358"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-6"
+ id="use884-8-1-7-6"
+ transform="translate(3.9999972)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-6"
+ id="use888-5-7-1-6"
+ transform="translate(11.999997)"
+ width="100%"
+ height="100%" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-6"
+ id="use892-6-8-9-8"
+ transform="translate(15.999997)"
+ width="100%"
+ height="100%" />
+ <rect
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15580064;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect903-4-7-0-9"
+ width="1"
+ height="17"
+ x="85.307976"
+ y="-273.12115"
+ transform="rotate(-90)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect903-4-7-0-9"
+ id="use905-0-0-5-6"
+ transform="translate(-2.8293828e-6,83.000001)"
+ width="100%"
+ height="100%" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,-273.12117,13.525357)"
+ id="g1328-4-6-0">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-8-7-7"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-0-7-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-4-4-1"
+ xlink:href="#rect867-6-0-7-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="g1505"
+ transform="translate(-331.4295,-154.43481)">
+ <rect
+ transform="rotate(-90)"
+ y="65.958321"
+ x="-111.32011"
+ height="1.7"
+ width="2.4230766"
+ id="rect867-4-9-6-1"
+ style="opacity:1;fill:#111111;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05234921;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-90)"
+ y="66.308327"
+ x="-107.29992"
+ height="1"
+ width="0.80769223"
+ id="rect867-6-6-6-4-3"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02318062;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,6.4615395)"
+ id="use885-2-1-7-7"
+ xlink:href="#rect867-6-6-6-4-3"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-273.12117,29.358687)"
+ id="g1328-6-0-4-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-2"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-6"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-4"
+ xlink:href="#rect867-6-5-2-5-6"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="g1505-5"
+ transform="translate(-331.42949,-170.26814)">
+ <rect
+ transform="rotate(-90)"
+ y="65.958321"
+ x="-111.32011"
+ height="1.7"
+ width="2.4230766"
+ id="rect867-4-9-6-1-2"
+ style="opacity:1;fill:#111111;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05234921;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-90)"
+ y="66.308327"
+ x="-107.29992"
+ height="1"
+ width="0.80769223"
+ id="rect867-6-6-6-4-3-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02318062;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,6.4615395)"
+ id="use885-2-1-7-7-2"
+ xlink:href="#rect867-6-6-6-4-3-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="g1505-5-9"
+ transform="translate(-331.48102,-186.10147)">
+ <rect
+ transform="rotate(-90)"
+ y="65.958321"
+ x="-111.32011"
+ height="1.7"
+ width="2.4230766"
+ id="rect867-4-9-6-1-2-0"
+ style="opacity:1;fill:#111111;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05234921;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ transform="rotate(-90)"
+ y="66.308327"
+ x="-107.29992"
+ height="1"
+ width="0.80769223"
+ id="rect867-6-6-6-4-3-0-9"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02318062;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,6.4615395)"
+ id="use885-2-1-7-7-2-9"
+ xlink:href="#rect867-6-6-6-4-3-0-9"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="-200.1109"
+ x="1.6411648"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-5"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <g
+ style="display:inline"
+ id="g876-4-2-1"
+ transform="matrix(0,-0.80769224,1,0,-200.04339,-1.641159)">
+ <rect
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ id="rect3598-1-3-9-0-0"
+ width="104"
+ height="1"
+ x="-3.8146973e-06"
+ y="0.82458687" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,2.8431578)"
+ id="use884-8-1-7-3"
+ xlink:href="#rect3598-1-3-9-0-0"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,5.6863169)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3-7"
+ xlink:href="#rect3598-1-3-9-0-0"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,8.5294759)"
+ id="use888-5-7-1-8"
+ xlink:href="#rect3598-1-3-9-0-0"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.8837884e-8,11.372635)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1-8"
+ xlink:href="#rect3598-1-3-9-0-0"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(5.8837884e-8,14.215794)"
+ id="use892-6-8-9-6"
+ xlink:href="#rect3598-1-3-9-0-0"
+ y="0"
+ x="0" />
+ <rect
+ y="0.82458687"
+ x="103"
+ height="15.215795"
+ width="1"
+ id="rect903-4-7-0-0"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.14739816;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-103)"
+ id="use905-0-0-5-4"
+ xlink:href="#rect903-4-7-0-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-200.11091,-1.641159)"
+ id="g1328-4-6-6">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-8-7-76"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-0-7-09"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-4-4-7"
+ xlink:href="#rect867-6-0-7-09"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-200.11091,-30.325533)"
+ id="g1328-0-2-0-5">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-4-9-6-9"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-6-6-4-7"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-2-1-7-8"
+ xlink:href="#rect867-6-6-6-4-7"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-200.11091,27.043211)"
+ id="g1328-6-0-4-5">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8"
+ xlink:href="#rect867-6-5-2-5-3"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-35.368773,56.804494)"
+ id="g1328-6-0-4-5-7">
+ <g
+ id="g1798">
+ <rect
+ style="opacity:1;fill:#474747;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-7-4-8-3-8"
+ width="3"
+ height="1.7"
+ x="50.522621"
+ y="7.6500001" />
+ <rect
+ style="opacity:1;fill:#454545;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-5-2-5-3-7"
+ width="1"
+ height="1"
+ x="55.5"
+ y="8" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-5-2-5-3-7"
+ id="use885-6-2-8-8-4"
+ transform="translate(-8)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-219.31082"
+ y="-41.425175"
+ id="text1684"><tspan
+ sodipodi:role="line"
+ id="tspan1682"
+ x="-219.31082"
+ y="-41.425175">orig</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-11.624347"
+ y="-45.151184"
+ id="text1720"><tspan
+ sodipodi:role="line"
+ id="tspan1718"
+ x="-11.624347"
+ y="-45.151184">bg</tspan></text>
+ <rect
+ ry="0"
+ y="0.2456398"
+ x="-83.754364"
+ height="16.50872"
+ width="83.50872"
+ id="rect3592-3-3-1-1-3"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.491;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="rotate(-90)" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,-34.026392,83.999998)"
+ id="g1328-6-0-4-5-7-1">
+ <g
+ id="g1798-9">
+ <rect
+ style="opacity:1;fill:#474747;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-7-4-8-3-8-0"
+ width="3"
+ height="1.7"
+ x="50.522621"
+ y="7.6500001" />
+ <rect
+ style="opacity:1;fill:#454545;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-5-2-5-3-7-9"
+ width="1"
+ height="1"
+ x="55.5"
+ y="8" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-5-2-5-3-7-9"
+ id="use885-6-2-8-8-4-8"
+ transform="translate(-8)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,-34.218161,112.68437)"
+ id="g1328-6-0-4-5-7-1-8">
+ <g
+ id="g1798-9-5">
+ <rect
+ style="opacity:1;fill:#474747;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-7-4-8-3-8-0-8"
+ width="3"
+ height="1.7"
+ x="50.522621"
+ y="7.6500001" />
+ <rect
+ style="opacity:1;fill:#454545;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect867-6-5-2-5-3-7-9-4"
+ width="1"
+ height="1"
+ x="55.5"
+ y="8" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#rect867-6-5-2-5-3-7-9-4"
+ id="use885-6-2-8-8-4-8-3"
+ transform="translate(-8)"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <g
+ id="g2238"
+ transform="matrix(0,-0.80769224,1,0,36.182093,56.804494)">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0"
+ xlink:href="#rect867-6-5-2-5-3-7-8"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,0,56.804494)"
+ id="g1995-2">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,0,83.999997)"
+ id="g1995-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,0,112.68437)"
+ id="g1995-4">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="0.31405863"
+ x="-89.532883"
+ height="17"
+ width="84"
+ id="rect3592-3-2"
+ style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:0.69681358"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ ry="0"
+ y="0.80512083"
+ x="-89.041832"
+ height="16.017878"
+ width="83.017876"
+ id="rect3592-3-2-9"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:0.98212248;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ ry="0"
+ y="20"
+ x="-83.999992"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-1"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <g
+ id="g1918-7"
+ transform="translate(41.565408,-0.54116316)">
+ <rect
+ transform="rotate(-90)"
+ style="fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.88252258"
+ id="rect3598-1-3-9-0-04"
+ width="81"
+ height="1"
+ x="-83.041161"
+ y="-21.065405" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2.9896911,-2.932238e-6)"
+ id="use884-8-1-7-0"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(5.9793835,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3-8"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(8.9690759,-2.932238e-6)"
+ id="use888-5-7-1-5"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(11.958769,-2.932238e-6)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1-1"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(14.948461,-2.932238e-6)"
+ id="use892-6-8-9-66"
+ xlink:href="#rect3598-1-3-9-0-04"
+ y="0"
+ x="0" />
+ <rect
+ transform="rotate(-90)"
+ y="-21.065405"
+ x="-2.0411606"
+ height="16"
+ width="1"
+ id="rect903-4-7-0-2"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(0,82)"
+ id="use905-0-0-5-1"
+ xlink:href="#rect903-4-7-0-2"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="20.24564"
+ x="-83.754356"
+ height="16.50872"
+ width="83.508713"
+ id="rect3592-3-3-1-1-3-9"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.491;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="rotate(-90)" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,20.000003,56.804494)"
+ id="g1995-2-6">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-0"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-8"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,20.000003,84.000001)"
+ id="g1995-7-8">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-2"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,20.000003,112.68437)"
+ id="g1995-4-2">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-9"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-7"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-7"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="40"
+ x="-83.999992"
+ height="17"
+ width="83.999992"
+ id="rect3592-3-3-1-1-64"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:0.89871699"
+ transform="rotate(-90)" />
+ <g
+ id="g2340"
+ transform="matrix(0,-0.80769224,1,0,9.739912,55.990895)">
+ <rect
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.9819805"
+ id="rect3598-1-3-9-0-3"
+ width="100.28572"
+ height="1"
+ x="-32.820801"
+ y="30.760086" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,2.989691)"
+ id="use884-8-1-7-7"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(3.595635e-6,5.979383)"
+ height="100%"
+ width="100%"
+ id="use886-0-0-3-9"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,8.969076)"
+ id="use888-5-7-1-7"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ transform="translate(3.595635e-6,11.958769)"
+ height="100%"
+ width="100%"
+ id="use890-6-5-1-4"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(3.595635e-6,14.948461)"
+ id="use892-6-8-9-9"
+ xlink:href="#rect3598-1-3-9-0-3"
+ y="0"
+ x="0" />
+ <rect
+ y="30.760086"
+ x="67.46492"
+ height="16"
+ width="1.2380953"
+ id="rect903-4-7-0-1"
+ style="opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16818289;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-101.52381)"
+ id="use905-0-0-5-7"
+ xlink:href="#rect903-4-7-0-1"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ ry="0"
+ y="40.24564"
+ x="-83.754364"
+ height="16.50872"
+ width="83.508713"
+ id="rect3592-3-3-1-1-3-0"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.491;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="rotate(-90)" />
+ <g
+ transform="matrix(0,-0.80769224,1,0,40.000002,56.804491)"
+ id="g1995-2-60">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-3"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-5"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,40.000002,83.999995)"
+ id="g1995-7-9">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-1"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,40.000002,112.68437)"
+ id="g1995-4-4">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-1"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-5"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-54"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-5"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,77.90159,56.804494)"
+ id="g2238-9">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-8"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-8"
+ xlink:href="#rect867-6-5-2-5-3-7-8-3"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,77.90159,84.000001)"
+ id="g2238-5">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,77.90159,112.68437)"
+ id="g2238-3">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-4"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-6"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-3"
+ xlink:href="#rect867-6-5-2-5-3-7-8-6"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,97.901589,56.804491)"
+ id="g2238-6">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-34"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-4"
+ xlink:href="#rect867-6-5-2-5-3-7-8-34"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,97.901589,83.999995)"
+ id="g2238-39">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-7"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-25"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-89"
+ xlink:href="#rect867-6-5-2-5-3-7-8-25"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0,-0.80769224,1,0,97.901589,112.68437)"
+ id="g2238-0">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-24"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-76"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-76"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-182.83966"
+ y="9.9714842"
+ id="text2430"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan2428"
+ x="-182.83966"
+ y="9.9714842"
+ style="stroke-width:1">vscroll_handle_up</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-180.63913"
+ y="30.352526"
+ id="text2438"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan2436"
+ x="-180.63913"
+ y="30.352526"
+ style="stroke-width:1">vscroll_handle_hi</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="-183.70087"
+ y="51.313576"
+ id="text2442"
+ transform="rotate(-90)"><tspan
+ sodipodi:role="line"
+ id="tspan2440"
+ x="-183.70087"
+ y="51.313576"
+ style="stroke-width:1">vscroll_handle_dn</tspan></text>
+ <rect
+ ry="0"
+ y="-91.003998"
+ x="104.54752"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="-90.455185"
+ x="106.04752"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7"
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use884-8-1-7-9"
+ transform="translate(2e-6,2.9993461)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use886-0-0-3-93"
+ width="100%"
+ height="100%"
+ transform="translate(2e-6,5.9987112)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use888-5-7-1-9"
+ transform="translate(2e-6,8.9980602)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use890-6-5-1-84"
+ width="100%"
+ height="100%"
+ transform="translate(2e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7"
+ id="use892-6-8-9-0"
+ transform="translate(2e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,140.51006,-91.004001)"
+ id="g1995-2-8">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-0-0"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-2-59"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-1-09"
+ xlink:href="#rect867-6-5-2-5-3-7-8-2-59"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,114.54752,-90.955193)"
+ id="g1995-7-1">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,88.543988,-91.003998)"
+ id="g1995-4-7">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-1-6"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-7-8"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-11-4"
+ xlink:href="#rect867-6-5-2-5-3-7-8-7-8"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="-90.455185"
+ x="207.04753"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="-90.704788"
+ x="104.79791"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="-90.455185"
+ x="105.04752"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="226.22408"
+ y="-80.331635"
+ id="text2430-2"><tspan
+ sodipodi:role="line"
+ id="tspan2428-0"
+ x="226.22408"
+ y="-80.331635"
+ style="stroke-width:1">hscroll_handle_up</tspan></text>
+ <rect
+ ry="0"
+ y="-68.361015"
+ x="104.54752"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7-1"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="-67.826477"
+ x="106.04752"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7-5"
+ style="display:inline;fill:#141414;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5"
+ id="use884-8-1-7-9-2"
+ transform="translate(4e-6,2.9993453)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5"
+ id="use886-0-0-3-93-4"
+ width="100%"
+ height="100%"
+ transform="translate(4e-6,5.9987104)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5"
+ id="use888-5-7-1-9-3"
+ transform="translate(4e-6,8.9980602)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5"
+ id="use890-6-5-1-84-5"
+ width="100%"
+ height="100%"
+ transform="translate(4e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-5"
+ id="use892-6-8-9-0-7"
+ transform="translate(4e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,114.54753,-68.326499)"
+ id="g1995-7-1-5">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8-7"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2-4"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8-5"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2-4"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="-67.826477"
+ x="207.04753"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-47"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="-68.07608"
+ x="104.79791"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8-1"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="-67.826477"
+ x="105.04752"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4-3"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="225.52132"
+ y="-56.168766"
+ id="text2430-2-9"><tspan
+ sodipodi:role="line"
+ id="tspan2428-0-8"
+ x="225.52132"
+ y="-56.168766"
+ style="stroke-width:1">hscroll_handle_hi</tspan></text>
+ <rect
+ ry="0"
+ y="-42.678299"
+ x="104.54752"
+ height="17"
+ width="104"
+ id="rect3592-3-3-1-1-7-3"
+ style="display:inline;fill:#262626;fill-opacity:1;stroke:none;stroke-width:1" />
+ <rect
+ y="-42.129478"
+ x="106.04752"
+ height="1.0032316"
+ width="101"
+ id="rect3598-1-3-9-0-7-4"
+ style="display:inline;fill:#e6e4dd;fill-opacity:1;stroke:none;stroke-width:0.98706234" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4"
+ id="use884-8-1-7-9-1"
+ transform="translate(4e-6,2.9993461)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4"
+ id="use886-0-0-3-93-48"
+ width="100%"
+ height="100%"
+ transform="translate(4e-6,5.9987104)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4"
+ id="use888-5-7-1-9-6"
+ transform="translate(4e-6,8.9980602)"
+ width="100%"
+ height="100%" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4"
+ id="use890-6-5-1-84-8"
+ width="100%"
+ height="100%"
+ transform="translate(4e-6,11.997417)" />
+ <use
+ style="display:inline"
+ x="0"
+ y="0"
+ xlink:href="#rect3598-1-3-9-0-7-4"
+ id="use892-6-8-9-0-75"
+ transform="translate(4e-6,14.996766)"
+ width="100%"
+ height="100%" />
+ <g
+ style="display:inline"
+ transform="matrix(0.80769224,0,0,0.99999997,114.54753,-42.629488)"
+ id="g1995-7-1-3">
+ <rect
+ y="7.6500001"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-5-8-9"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="8"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-1-2-42"
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-7-8-59"
+ xlink:href="#rect867-6-5-2-5-3-7-8-1-2-42"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ y="-42.129478"
+ x="207.04753"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-1"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ ry="0"
+ y="-42.379086"
+ x="104.79791"
+ height="16.499207"
+ width="103.49921"
+ id="rect3592-3-3-1-1-3-8-7"
+ style="display:inline;fill:none;fill-opacity:1;stroke:#404040;stroke-width:0.50079292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="-42.129478"
+ x="105.04752"
+ height="15.999999"
+ width="1"
+ id="use905-0-0-5-0-4-7"
+ style="display:inline;opacity:1;fill:#141414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.15114883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:24.99999809px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="226.67192"
+ y="-30.471777"
+ id="text2430-2-94"><tspan
+ sodipodi:role="line"
+ id="tspan2428-0-0"
+ x="226.67192"
+ y="-30.471777"
+ style="stroke-width:1">hscroll_handle_dn</tspan></text>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,88.543989,-10.459431)"
+ id="g2238-5-1"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,114.54753,-10.424918)"
+ id="g2238-5-1-4"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-7"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-0"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-6"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-0"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,140.51006,-10.424919)"
+ id="g2238-5-1-9"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-2"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-7"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-4"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-7"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,88.543988,15.223286)"
+ id="g2238-5-1-7"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-1"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-03"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-0"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-03"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,114.54753,15.272097)"
+ id="g2238-5-1-42"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-73"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-3"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-2"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-3"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.80769224,0,0,0.99999997,140.51006,15.223288)"
+ id="g2238-5-1-6"
+ inkscape:transform-center-x="-2.5888767"
+ inkscape:transform-center-y="8.1501674">
+ <rect
+ y="-50.251587"
+ x="50.522621"
+ height="1.7"
+ width="3"
+ id="rect867-7-4-8-3-8-3-2-0-9"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.05824883;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ y="-49.901588"
+ x="55.5"
+ height="1"
+ width="1"
+ id="rect867-6-5-2-5-3-7-8-22-4-77"
+ style="opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.02579302;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ style="fill:#ffcc00"
+ height="100%"
+ width="100%"
+ transform="translate(-8)"
+ id="use885-6-2-8-8-4-0-70-8-7"
+ xlink:href="#rect867-6-5-2-5-3-7-8-22-4-77"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+ x="108.54105"
+ y="29.154173"
+ id="text2927"><tspan
+ sodipodi:role="line"
+ id="tspan2925"
+ x="108.54105"
+ y="29.154173"
+ style="stroke-width:1">Kontrast ist wichtiger.</tspan></text>
+ <rect
+ ry="0"
+ y="-120.48754"
+ x="-277.54752"
+ height="17"
+ width="173"
+ id="rect3592-3-2-7"
+ style="fill:#050505;fill-opacity:1;stroke:none;stroke-width:1"
+ transform="scale(-1,1)" />
+ <rect
+ ry="0"
+ y="-119.98092"
+ x="-277.04089"
+ height="15.98676"
+ width="171.98676"
+ id="rect3592-3-2-9-1"
+ style="fill:none;fill-opacity:1;stroke:#262626;stroke-width:1.01323998;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1,1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="281.3909"
+ y="-109.04485"
+ id="text1720-5"><tspan
+ sodipodi:role="line"
+ id="tspan1718-0"
+ x="281.3909"
+ y="-109.04485">bg</tspan></text>
+ <rect
+ style="opacity:1;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.82585722;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect3352"
+ width="26"
+ height="3.8139825"
+ x="70.518036"
+ y="-58.730694" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-161.65302"
+ y="-127.24224"
+ id="text3472"><tspan
+ sodipodi:role="line"
+ id="tspan3470"
+ x="-161.65302"
+ y="-127.24224">to do: Scrollbar: Ausrichtung der Hervorhebung ·-·</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_left_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.749788"
+ y1="5.2364135"
+ x2="-21.749788"
+ y2="-1.5185461"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1,1,0,-24.154661,30.25)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3836"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)"
+ x1="-21.749788"
+ y1="5.2364135"
+ x2="-21.749788"
+ y2="-1.5185461" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="12.586453"
+ inkscape:cx="-7.4898528"
+ inkscape:cy="1.5011896"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="g3830"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 0,0 V 17 H 16 V 0 Z"
+ id="path3725"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910"
+ d="M 12,14.5 V 2.5 L 5,8.6016951 Z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3728"
+ d="M 2.94254,1.25 C 1.722426,1.25 0.75,2.181383 0.75,3.35 v 4.9 C 7.854127,6.7194065 12.392601,6.6048987 15.25,7.046 V 1.25 Z"
+ style="opacity:0.1;fill:url(#linearGradient3836);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.7679801,0.49976547 c -1.262227,0 -2.26821697,1.10882223 -2.26821697,2.50007383 V 13.966829 c 0,1.391252 1.00598997,2.533408 2.26821697,2.533408 H 15.500237 V 0.49976547 Z"
+ id="path4292"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M 1.5e-8,-6.6250001e-8 H 17 V 16 H 1.5e-8 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 14.5,11.5 H 2.5 L 8.601695,4.4999999 Z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.1;fill:url(#linearGradient3750);fill-opacity:1;stroke:none"
+ d="m -25.654661,2.9425397 c 0,-1.220114 0.931383,-2.19253996 2.1,-2.19253996 h 4.9 C -20.185254,7.8541267 -20.299762,12.392601 -19.858661,15.25 h -5.796 z"
+ id="path3728-1"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_left_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3828"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1,1,0,2.75,30.25)"
+ x1="-21.972042"
+ y1="5.5055122"
+ x2="-21.972042"
+ y2="-1.5051316" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-37.493644"
+ inkscape:cy="8.0000001"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3725"
+ d="M 0,0 H 17 V 16 H 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 14.5,12 H 2.5 L 8.6016951,5 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:0.4;fill:url(#linearGradient3828);fill-opacity:1;stroke:none"
+ d="M 1.25,2.94254 C 1.25,1.722426 2.181383,0.75 3.35,0.75 h 4.9 C 6.7194065,7.854127 6.6048987,12.392601 7.046,15.25 H 1.25 Z"
+ id="path3728" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292"
+ d="m 0.49976406,2.7679801 c 0,-1.262227 1.10882214,-2.26821697 2.50007374,-2.26821697 H 13.966828 c 1.391252,0 2.533408,1.00598997 2.533408,2.26821697 V 15.500237 H 0.49976407 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M -1e-7,-4.9999999e-8 H 17 V 16 H -1e-7 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5f8dd3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 14.501199,11.513416 H 2.5011991 l 6.101695,-6.9999999 z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_left_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_left_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)" />
+ <inkscape:perspective
+ id="perspective4578"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3820"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3016"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,1,1,0,2.75,30.25)"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.943262"
+ inkscape:cx="8.5"
+ inkscape:cy="7.9999999"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3725"
+ d="M 0,0 H 17 V 16 H 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 14.5,12 H 2.5 L 8.6016951,5 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292"
+ d="m 0.49976487,2.7679801 c 0,-1.262227 1.10882223,-2.26821697 2.50007383,-2.26821697 H 13.966829 c 1.391252,0 2.533408,1.00598997 2.533408,2.26821697 V 15.500237 H 0.49976487 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M 6.5000001e-8,1.3e-7 H 17 V 16 H 6.5000001e-8 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 14.501199,11.513416 H 2.5011992 l 6.101695,-6.9999998 z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3725-3-9"
+ d="m -30.159207,-0.24771111 h 17 V 15.752289 h -17 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5f8dd3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -15.658008,11.265705 h -12 l 6.101695,-7.0000001 z"
+ id="path2910-1-6"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3725-3-93"
+ d="m -30.159207,17.466938 h 17 v 16 h -17 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m -15.659207,28.966938 h -12 l 6.101695,-7 z"
+ id="path2910-1-3"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_right_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3040"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1,0,0,1,-14.25,2.75)"
+ x1="-22.74757"
+ y1="5.5176229"
+ x2="-22.74757"
+ y2="-1.5155107" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="13.882353"
+ inkscape:cx="-40.08524"
+ inkscape:cy="8.0000002"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3034"
+ transform="matrix(0,1,1,0,0,0)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 16,0 V 17 H 0 V 0 Z"
+ id="path3725"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910"
+ d="m 5,14.5 v -12 l 7,6.1016951 z"
+ style="fill:#989898;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3728"
+ d="m 13.05746,1.25 c 1.220114,0 2.19254,0.931383 2.19254,2.1 v 4.9 C 8.145873,6.7194065 3.607399,6.6048987 0.75,7.046 V 1.25 Z"
+ style="opacity:0.1;fill:url(#linearGradient3040);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 13.23202,0.49976457 c 1.262227,0 2.268217,1.10882223 2.268217,2.50007383 V 13.966829 c 0,1.391252 -1.00599,2.533408 -2.268217,2.533408 H 0.49976313 V 0.49976457 Z"
+ id="path4292"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-93"
+ d="M 17,16 H 0 V -9.9999994e-8 h 17 z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2.5,4.4999999 h 12 L 8.398305,11.5 Z"
+ id="path2910-1-3"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_right_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3032"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.96551724,0,0,1,-13.732759,2.75)"
+ x1="-22.480219"
+ y1="5.5033317"
+ x2="-22.480219"
+ y2="-1.9131187" />
+ </defs>
+ <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="748"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="26.693281"
+ inkscape:cx="-1.4275918"
+ inkscape:cy="7.9999999"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <g
+ id="g3026"
+ transform="matrix(0,1,1,0,0,1.1141664e-8)">
+ <path
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none"
+ d="M 16,0 V 17 H 0 V 0 Z"
+ id="path3725"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect3597"
+ d="m 13.23202,0.4997646 c 1.262227,0 2.268217,1.1088221 2.268217,2.5000738 V 13.966829 c 0,1.391252 -1.00599,2.533408 -2.268217,2.533408 H 0.49976312 V 0.4997646 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2910"
+ d="m 5,14.5 v -12 l 7,6.1016951 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3728"
+ d="M 12.633065,1.25 C 13.811106,1.25 14.75,2.181383 14.75,3.35 v 4.9 C 7.8908429,6.7194065 3.508868,6.6048987 0.75,7.046 V 1.25 Z"
+ style="opacity:0.4;fill:url(#linearGradient3032);fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3-9"
+ d="M 17,16 H 3.2785419e-8 L 3.2785416e-8,3.5570833e-8 17,3.5570831e-8 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5f8dd3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 2.4988011,4.4865841 H 14.498801 L 8.397106,11.486584 Z"
+ id="path2910-1-6"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="17"
+ height="16"
+ sodipodi:docname="vscroll_right_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vscroll_right_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.1210697,-0.0902489)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2976"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-5" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.1133063,-0.21472942,0.21359115,1.1074049,-4.2313326,0.59150577)"
+ r="8.094326"
+ fy="8.6998415"
+ fx="11.289229"
+ cy="8.6998415"
+ cx="11.289229"
+ id="radialGradient3622"
+ xlink:href="#linearGradient3614"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-2" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective2895" />
+ <linearGradient
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="8.9094315"
+ x2="32.828682"
+ y1="8.9094315"
+ x1="16.775095"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#4d4d4d;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#202020;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2891"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,1,-1.7019555,0)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2896"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0644052,0,0,0.18772014,-5.0499329,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-0"
+ 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" />
+ <linearGradient
+ id="linearGradient3608">
+ <stop
+ style="stop-color:#4d4d4d;stop-opacity:1;"
+ offset="0"
+ id="stop3610" />
+ <stop
+ style="stop-color:#e6e6e6;stop-opacity:1"
+ offset="1"
+ id="stop3612" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3614"
+ inkscape:collect="always">
+ <stop
+ id="stop3616"
+ offset="0"
+ style="stop-color:#e6e6e6;stop-opacity:1;" />
+ <stop
+ id="stop3618"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3687"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.0662034,0,0,0.18772014,-5.0923568,-0.0589989)"
+ x1="16.775095"
+ y1="8.9094315"
+ x2="32.828682"
+ y2="8.9094315" />
+ <inkscape:perspective
+ id="perspective10-03"
+ 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" />
+ <inkscape:perspective
+ id="perspective4556"
+ 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" />
+ <inkscape:perspective
+ id="perspective2849"
+ 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" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3750"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(30.25,2.75)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3744">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.58301158"
+ offset="0"
+ id="stop3746" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3748" />
+ </linearGradient>
+ <linearGradient
+ y2="-1.5005946"
+ x2="-21.286995"
+ y1="5.6297989"
+ x1="-21.286995"
+ gradientTransform="matrix(-1,0,0,1,-14.291689,2.4817911)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2858"
+ xlink:href="#linearGradient3744"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3024"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1,0,0,1,-14.291689,2.4817911)"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3744"
+ id="linearGradient3017"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0,-1,1,0,2.4817911,-14.291689)"
+ x1="-21.286995"
+ y1="5.6297989"
+ x2="-21.286995"
+ y2="-1.5005946" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="23.246137"
+ inkscape:cx="5.9465034"
+ inkscape:cy="9.1259672"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3725"
+ d="M 0,16 H 17 V 0 H 0 Z"
+ style="fill:#4d4d4d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 14.5,5 h -12 l 6.1016951,7 z"
+ id="path2910"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292"
+ d="m 0.49976537,13.23202 c 0,1.262227 1.10882253,2.268217 2.50007353,2.268217 H 13.966829 c 1.391252,0 2.533408,-1.00599 2.533408,-2.268217 V 0.49976313 H 0.49976537 Z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.99952626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <path
+ id="path3725-3"
+ d="M 17,16 H 2.7e-7 V -3.5e-7 H 17 Z"
+ style="fill:#262626;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 2.5000003,4.4999997 H 14.5 L 8.3983047,11.5 Z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="240"
+ height="20"
+ sodipodi:docname="vwindow_timebar.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/vwindow_timebar.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient4301">
+ <stop
+ style="stop-color:#1d0000;stop-opacity:1;"
+ offset="0"
+ id="stop4303" />
+ <stop
+ style="stop-color:#aa0000;stop-opacity:1;"
+ offset="1"
+ id="stop4305" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4301"
+ id="linearGradient1532"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.51875,0,0,0.34200002,-69.691306,-22.637799)"
+ x1="160"
+ y1="25"
+ x2="160"
+ y2="0" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.2541667"
+ inkscape:cx="41.700555"
+ inkscape:cy="-28.595194"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <g
+ id="g1524"
+ transform="matrix(1.4457831,0,0,1.1764706,100.75852,36.573883)">
+ <rect
+ inkscape:export-ydpi="96"
+ inkscape:export-xdpi="96"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/timebar_view.png"
+ y="-22.6378"
+ x="-69.691315"
+ height="8.5500002"
+ width="166"
+ id="rect3594-9"
+ style="fill:url(#linearGradient1532);fill-opacity:1;stroke:none;stroke-width:0.70918345" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(180,13.308688,-22.5878)"
+ id="use14989"
+ xlink:href="#rect3594-9"
+ y="0"
+ x="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="waveform.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/waveform.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title912">waveform</title>
+ <metadata
+ id="metadata8">
+ <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>waveform</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>cpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.913411"
+ inkscape:cx="8.7105192"
+ inkscape:cy="9.3659467"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <image
+ y="-0.039641999"
+ x="-32.367062"
+ id="image871"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDQUWH9wMhikAAAAddEVYdENv
+bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAG1JREFUSMftU0EKwCAMM2Ufy8v7NHca
+DJlS2w48NMdok0pMa4XjoapdVbt3HivhkSOJXQOxiq/41Tl2RWaveeZGXiLZWJa6oh/AlUEmyuBw
+A5LwtNdk8BaOmIilpVaTrzvIKtdsAWQ0OJpT4V/cgV0zWZsx/acAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <path
+ style="fill:#e6e4dd;stroke:#e6e4dd;stroke-width:1.41490674px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+ d="M 0.7074536,20.253372 V 5.9312085 c 0,0 4.1150859,-5.26900738 7.0686169,-5.22337653 C 11.984885,0.7728605 13.396799,8.6131984 17.60317,8.4586493 20.203327,8.3631134 23.292546,3.2352728 23.292546,3.2352728 V 18.568412 c 0,0 -4.718561,4.90695 -7.758239,4.717889 -3.994956,-0.248477 -5.306849,-7.4111 -9.3098843,-7.413825 -2.3694837,-0.0017 -5.5169691,4.380896 -5.5169691,4.380896 z"
+ id="path910"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccasccasc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="waveform_rgb.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/waveform_rgb.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title912">waveform</title>
+ <metadata
+ id="metadata8">
+ <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>waveform</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>cpanel_*</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <marker
+ inkscape:stockid="TriangleInS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInS"
+ style="overflow:visible">
+ <path
+ id="path3735"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutM"
+ style="overflow:visible">
+ <path
+ id="path3741"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleOutS"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleOutS"
+ style="overflow:visible">
+ <path
+ id="path3744"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.2)" />
+ </marker>
+ <marker
+ inkscape:stockid="TriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="TriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3732"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="EmptyTriangleInM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="EmptyTriangleInM"
+ style="overflow:visible">
+ <path
+ id="path3750"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(-0.4) translate(-4.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Mstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Mstart"
+ style="overflow:visible">
+ <path
+ id="path3619"
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(0,0)" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ </defs>
+ <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="749"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="17.913411"
+ inkscape:cx="0.61602508"
+ inkscape:cy="9.4775949"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <path
+ style="fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-width:0.75483471px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0.37741741,5.7823675 V 1.8219048 c 0,0 4.23535369,-1.45702202 7.27520469,-1.4444038 4.3318219,0.0179821 5.7849999,2.1860459 10.1143069,2.1433089 2.67615,-0.026418 5.855654,-1.4444038 5.855654,-1.4444038 v 4.2400247 c 0,0 -4.856466,1.3569034 -7.984981,1.3046229 C 11.525888,6.5523432 10.175654,4.5716856 6.0556257,4.5709321 3.6168914,4.570462 0.37741741,5.7823675 0.37741741,5.7823675 Z"
+ id="path910"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccasccasc" />
+ <image
+ y="-1.2796915"
+ x="-28.865322"
+ id="image871-2"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A
+/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDQUYDig/i1UAAAAddEVYdENv
+bW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAJhJREFUSMftk0sOwzAIRHm9/53popWS
+IoZM3FTdBO8MzMeYiDv+HahERmQp5DKCCv4N0cNQgAvaCUMVMeRqXt2PM3BUEsEEPhNksUuv+Gg2
+WOANyXrk+6j71D9szNlFRwLsGby6dg2w8oR44AYJ9pArMEgnbe9nfthk2Ir3TZm+Y+lAqeyczO4W
+/rVywIlFO03CBQt4x6/iCW/4R/9ZAl7pAAAAAElFTkSuQmCC
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="24"
+ width="24" />
+ <path
+ style="fill:#00ff00;fill-opacity:1;stroke:#00ff00;stroke-width:0.75483471px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 0.37741738,14.282377 v -3.960463 c 0,0 4.23535362,-1.4570227 7.27520462,-1.4444047 4.331822,0.01798 5.785,2.1860467 10.114307,2.1433097 2.67615,-0.02642 5.855654,-1.4444047 5.855654,-1.4444047 V 13.81644 c 0,0 -4.856466,1.356903 -7.984981,1.304623 -4.111714,-0.06871 -5.461948,-2.049368 -9.5819764,-2.050122 -2.4387343,-4.7e-4 -5.67820821,1.211436 -5.67820822,1.211436 z"
+ id="path910-6"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccasccasc" />
+ <path
+ style="fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.75483471px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 0.37741735,22.782384 v -3.960462 c 0,0 4.23535355,-1.457022 7.27520455,-1.444404 4.3318221,0.01798 5.7850001,2.186046 10.1143071,2.143309 2.67615,-0.02642 5.855654,-1.444404 5.855654,-1.444404 v 4.240025 c 0,0 -4.856466,1.356903 -7.984981,1.304623 -4.111714,-0.06871 -5.461948,-2.049369 -9.5819765,-2.050122 -2.4387343,-4.7e-4 -5.67820815,1.211435 -5.67820815,1.211435 z"
+ id="path910-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccasccasc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="24"
+ height="24"
+ sodipodi:docname="wrench.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/wrench.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.284916,0.000000,30.08928)"
+ r="15.821514"
+ fy="42.07798"
+ fx="24.306795"
+ cy="42.07798"
+ cx="24.306795"
+ id="radialGradient4548"
+ xlink:href="#linearGradient4542"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient259">
+ <stop
+ style="stop-color:#fafafa;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop260" />
+ <stop
+ style="stop-color:#bbbbbb;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop261" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient269">
+ <stop
+ style="stop-color:#a3a3a3;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop270" />
+ <stop
+ style="stop-color:#4c4c4c;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop271" />
+ </linearGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ fy="114.5684"
+ fx="20.8921"
+ r="5.256"
+ cy="114.5684"
+ cx="20.8921"
+ id="aigrd2">
+ <stop
+ id="stop15566"
+ style="stop-color:#F0F0F0"
+ offset="0" />
+ <stop
+ id="stop15568"
+ style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
+ offset="1.0000000" />
+ </radialGradient>
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ fy="64.5679"
+ fx="20.8921"
+ r="5.257"
+ cy="64.5679"
+ cx="20.8921"
+ id="aigrd3">
+ <stop
+ id="stop15573"
+ style="stop-color:#F0F0F0"
+ offset="0" />
+ <stop
+ id="stop15575"
+ style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
+ offset="1.0000000" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient15662">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1.0000000;"
+ offset="0.0000000"
+ id="stop15664" />
+ <stop
+ style="stop-color:#f8f8f8;stop-opacity:1.0000000;"
+ offset="1.0000000"
+ id="stop15666" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4542"
+ inkscape:collect="always">
+ <stop
+ id="stop4544"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop4546"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5048">
+ <stop
+ id="stop5050"
+ offset="0"
+ style="stop-color:black;stop-opacity:0;" />
+ <stop
+ style="stop-color:black;stop-opacity:1;"
+ offset="0.5"
+ id="stop5056" />
+ <stop
+ id="stop5052"
+ offset="1"
+ style="stop-color:black;stop-opacity:0;" />
+ </linearGradient>
+ <inkscape:perspective
+ id="perspective83"
+ inkscape:persp3d-origin="24 : 16 : 1"
+ inkscape:vp_z="48 : 24 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 24 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="9.8333333"
+ inkscape:cx="-34.977265"
+ inkscape:cy="12"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="color:#000000;fill:#e6e4dd;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9898987;marker:none;visibility:visible;display:inline;overflow:visible"
+ d="m 7.5121483,5.8255741 2.315379,1.780791 0.2591717,1.717274 -1.4590167,1.5481859 -1.899381,-0.03972 -2.100733,-1.6213139 -0.627046,0.7085653 c -0.049,2.9819376 3.358477,5.3645006 6.4492297,3.3158266 l 6.656661,5.619227 c 1.665497,0.695874 3.594129,-1.235253 2.640196,-2.983433 L 13.039036,10.208773 C 13.899134,7.0158371 11.512422,4.5882281 8.6357693,5.0584101 c -0.166418,0.0272 -0.323753,0.05783 -0.493121,0.104946 l -0.6305,0.662215 z"
+ id="path2140"
+ sodipodi:nodetypes="cccccccccccscc" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e4dd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.02147198;marker:none"
+ d="m -10.262712,37.275424 v -11.5 l 13.0000001,5.75 z"
+ id="path3375-6-7-2-1-6-7-9-7-4"
+ sodipodi:nodetypes="cccc" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="xmeter_green.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_green.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(72.677963,6.5084796)"
+ gradientUnits="userSpaceOnUse"
+ y2="57.49152"
+ x2="-57.677963"
+ y1="57.49152"
+ x1="-72.677963"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#008000;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#0bff0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2909"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient75125">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#135c36;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#27ae60;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient75125"
+ id="linearGradient905"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581249,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="4.2265625"
+ inkscape:cx="13.012939"
+ inkscape:cy="12.468577"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer23" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer22"
+ inkscape:label="Layer 1" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer23"
+ inkscape:label="Layer 2">
+ <g
+ id="g901">
+ <rect
+ transform="rotate(-90)"
+ y="6.9802859e-08"
+ x="-14.999998"
+ height="128"
+ width="15"
+ id="rect2818"
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect3594"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5"
+ style="fill:url(#linearGradient905);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="xmeter_normal.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_normal.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(72.677963,6.5084796)"
+ gradientUnits="userSpaceOnUse"
+ y2="57.49152"
+ x2="-57.677963"
+ y1="57.49152"
+ x1="-72.677963"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#008000;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#0bff0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2909"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4178">
+ <stop
+ style="stop-color:#141414;stop-opacity:1;"
+ offset="0"
+ id="stop4174" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop4176" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4178"
+ id="linearGradient853"
+ x1="-14.999998"
+ y1="64"
+ x2="1.9073486e-06"
+ y2="64"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="8.453125"
+ inkscape:cx="63.053604"
+ inkscape:cy="4.1876155"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient853);fill-opacity:1.0;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-14.999998"
+ y="6.9802859e-08"
+ transform="matrix(0,-1,1,0,0,0)" />
+ <path
+ id="path3599"
+ d="M 128,15 127,15 2.0338985e-7,15 l 0,-1 L 127,14 127,-1.6949144e-8 l 1,0 L 128,14 l 0,1 z"
+ style="fill:#404040;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#121212;fill-opacity:1;stroke:none"
+ d="M 0,0 H 0.99999995 128 V 1 H 0.99999995 V 15 H 0 V 1 Z"
+ id="rect3594"
+ inkscape:connector-curvature="0" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="40"
+ height="14"
+ sodipodi:docname="xmeter_over.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#008000;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#0bff0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient75125">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#135c36;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#27ae60;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient75125"
+ id="linearGradient81055"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50000002,0,0,1,36.338987,6.5084793)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient79288">
+ <stop
+ id="stop79286"
+ offset="0"
+ style="stop-color:#5c0000;stop-opacity:1" />
+ <stop
+ id="stop79284"
+ offset="1"
+ style="stop-color:#e30000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient79288"
+ id="linearGradient81151"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50000002,0,0,1,36.338989,6.5084803)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="12.726562"
+ inkscape:cx="-6.7745324"
+ inkscape:cy="4.434149"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer36" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer35"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ transform="matrix(0.28940907,0,0,0.3265645,17.189245,2.9550837)"
+ id="text2818"
+ style="font-style:normal;font-weight:bold;font-size:40px;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'AlArabiya Bold';fill:#000000;fill-opacity:1;stroke:none">
+ <path
+ id="path2823"
+ d="m -33.728153,-2.1196365 c -2.291682,2.42e-5 -4.069024,0.8463775 -5.332031,2.53906246 -1.263032,1.69272834 -1.894541,4.07553844 -1.894532,7.14843754 -9e-6,3.0599075 0.6315,5.4362065 1.894532,7.1289065 1.263007,1.692714 3.040349,2.539067 5.332031,2.539062 2.304668,5e-6 4.08852,-0.846348 5.351562,-2.539062 1.262997,-1.6927 1.894507,-4.068999 1.894532,-7.1289065 -2.5e-5,-3.0728991 -0.631535,-5.4557092 -1.894532,-7.14843754 -1.263042,-1.69268496 -3.046894,-2.53903826 -5.351562,-2.53906246 m 0,-5.4492188 c 4.687478,2.97e-5 8.359349,1.3411742 11.015625,4.0234375 2.656219,2.68231466 3.984343,6.386738 3.984375,11.1132813 -3.2e-5,4.7135515 -1.328156,8.4114645 -3.984375,11.0937495 -2.656276,2.682293 -6.328147,4.023437 -11.015625,4.023438 -4.674492,-1e-6 -8.346363,-1.341145 -11.015625,-4.023438 -2.656254,-2.682285 -3.984377,-6.380198 -3.984375,-11.0937495 -2e-6,-4.7265433 1.328121,-8.43096664 3.984375,-11.1132813 2.669262,-2.6822633 6.341133,-4.0234078 11.015625,-4.0234375"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2825"
+ d="m -17.634403,-7.0415115 h 7.558594 L -2.3414345,14.481926 5.3734093,-7.0415115 H 12.932003 L 2.1312218,22.118645 H -6.833622 L -17.634403,-7.0415115"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2827"
+ d="m 16.779659,-7.0415115 h 20.292969 v 5.6835937 H 24.299191 V 4.0717697 H 36.310909 V 9.7553635 H 24.299191 v 6.6796875 h 13.203125 v 5.683594 H 16.779659 V -7.0415115"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2829"
+ d="m 54.807003,5.888176 c 1.575505,1.62e-5 2.701806,-0.2929523 3.378906,-0.8789063 0.690086,-0.5859198 1.035138,-1.5494605 1.035157,-2.890625 -1.9e-5,-1.32810366 -0.345071,-2.27862354 -1.035157,-2.85156249 C 57.508809,-1.305811 56.382508,-1.5922691 54.807003,-1.5922928 H 51.642941 V 5.888176 h 3.164062 m -3.164062,5.195312 V 22.118645 H 44.123409 V -7.0415115 h 11.484375 c 3.841127,2.91e-5 6.653624,0.6445597 8.4375,1.9335937 1.79685,1.2890885 2.695286,3.3268468 2.695313,6.1132813 -2.7e-5,1.9271025 -0.468776,3.5091322 -1.40625,4.7460937 -0.924503,1.2369943 -2.324242,2.1484517 -4.199219,2.734375 1.028624,0.2343884 1.946592,0.768242 2.753906,1.6015628 0.820289,0.820323 1.647111,2.070322 2.480469,3.75 l 4.082031,8.28125 h -8.007812 l -3.554688,-7.246094 c -0.716163,-1.458325 -1.445329,-2.454417 -2.1875,-2.988281 -0.729182,-0.533844 -1.705743,-0.800771 -2.929687,-0.800782 h -2.128906"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer37"
+ inkscape:label="Layer xmeter_green"
+ style="display:none">
+ <g
+ transform="translate(-44,-0.49999905)"
+ id="g80943">
+ <rect
+ transform="rotate(-90)"
+ y="6.9802859e-08"
+ x="-14.999998"
+ height="128"
+ width="15"
+ id="rect2818"
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ id="path3599" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3594"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="-3.1889343e-07"
+ x="-6.2963869e-07"
+ height="128"
+ width="7.5"
+ id="rect2818-5"
+ style="fill:url(#linearGradient81055);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.499999)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.69485474px;line-height:29.21071053px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#5c0000;fill-opacity:1;stroke:none;stroke-width:1.16842842"
+ x="-0.50209415"
+ y="32.195614"
+ id="text79969"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"
+ transform="scale(1.0499751,0.95240353)"><tspan
+ sodipodi:role="line"
+ id="tspan79967"
+ x="-0.50209415"
+ y="32.195614"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.69485474px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#5c0000;fill-opacity:1;stroke-width:1.16842842">over</tspan></text>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer36"
+ inkscape:label="Layer 2">
+ <g
+ transform="matrix(0.3125,0,0,0.93333367,0,-2.0583332e-6)"
+ id="g81061">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="4.9774172e-07"
+ x="2.1754151e-06"
+ height="128"
+ width="7.5"
+ id="rect2818-5-8"
+ style="fill:url(#linearGradient81151);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.4999995)"
+ id="use75127-4"
+ xlink:href="#rect2818-5-8"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#e30000;stroke-width:0.48819804;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect80631"
+ width="39.511799"
+ height="13.511802"
+ x="0.24410057"
+ y="0.24409914" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.39359474px;line-height:28.73999214px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.14959967"
+ x="0.19855969"
+ y="11.78937"
+ id="text79969-5"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"
+ transform="scale(1.0330552,0.96800251)"><tspan
+ sodipodi:role="line"
+ id="tspan79967-4"
+ x="0.19855969"
+ y="11.78937"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.39359474px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffcc00;fill-opacity:1;stroke-width:1.14959967">over</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="xmeter_red.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_red..png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient79288">
+ <stop
+ id="stop79286"
+ offset="0"
+ style="stop-color:#5c0000;stop-opacity:1" />
+ <stop
+ id="stop79284"
+ offset="1"
+ style="stop-color:#e30000;stop-opacity:1" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(72.677963,6.5084796)"
+ gradientUnits="userSpaceOnUse"
+ y2="57.49152"
+ x2="-57.677963"
+ y1="57.49152"
+ x1="-72.677963"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#800000;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#ff0b0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2909"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient75125-9">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#ab8900;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#ffcc00;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient79288"
+ id="linearGradient853"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581248,6.5084798)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="6.3632812"
+ inkscape:cx="22.354819"
+ inkscape:cy="7.500001"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer29" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer28"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-14.999998"
+ y="6.9802859e-08"
+ transform="rotate(-90)" />
+ <path
+ id="path3599"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ id="rect3594"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer29"
+ inkscape:label="Layer 2">
+ <g
+ id="g857">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5"
+ style="fill:url(#linearGradient853);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="xmeter_white.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_white.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient833">
+ <stop
+ style="stop-color:#ccc9bc;stop-opacity:1"
+ offset="0"
+ id="stop829" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop831" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(72.677963,6.5084796)"
+ gradientUnits="userSpaceOnUse"
+ y2="57.49152"
+ x2="-57.677963"
+ y1="57.49152"
+ x1="-72.677963"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#c8c8c8;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2909"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(3.639843,6.843081)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient3601-9">
+ <stop
+ id="stop3603-8"
+ offset="0"
+ style="stop-color:#008000;stop-opacity:1;" />
+ <stop
+ id="stop3605-7"
+ offset="1"
+ style="stop-color:#0bff0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient75125">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#135c36;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#27ae60;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient845"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581249,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="5.977262"
+ inkscape:cx="9.0649887"
+ inkscape:cy="-4.7313817"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:showpageshadow="false" />
+ <rect
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-69.038116"
+ y="0.33460143"
+ transform="rotate(-90)" />
+ <path
+ id="path3599"
+ d="m 128.3346,69.03812 h -1 H 0.33460156 v -1 H 127.3346 v -14 h 1 v 14 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ d="M 0.33460136,54.03812 H 1.3346014 128.3346 v 1 H 1.3346014 v 14 H 0.33460136 v -14 z"
+ id="rect3594"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g852">
+ <rect
+ transform="rotate(-90)"
+ y="6.9802859e-08"
+ x="-14.999998"
+ height="128"
+ width="15"
+ id="rect2818-2"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ id="path3599-8" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3594-2"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5"
+ style="fill:url(#linearGradient845);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="128"
+ height="15"
+ sodipodi:docname="xmeter_yellow.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/xmeter_yellow.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient75125">
+ <stop
+ style="stop-color:#135c36;stop-opacity:1"
+ offset="0"
+ id="stop76659" />
+ <stop
+ style="stop-color:#27ae60;stop-opacity:1"
+ offset="1"
+ id="stop76661" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(72.677963,6.5084796)"
+ gradientUnits="userSpaceOnUse"
+ y2="57.49152"
+ x2="-57.677963"
+ y1="57.49152"
+ x1="-72.677963"
+ id="linearGradient3607"
+ xlink:href="#linearGradient3601"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ id="stop3603"
+ offset="0"
+ style="stop-color:#807800;stop-opacity:1;" />
+ <stop
+ id="stop3605"
+ offset="1"
+ style="stop-color:#ffee0b;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2901"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2909"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(26.446909,8.8744685)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient75125-9">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#ab8900;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#ffcc00;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient75125-9"
+ id="linearGradient853"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581248,6.5084798)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="14.765625"
+ inkscape:cx="64"
+ inkscape:cy="7.5"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer25"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer24"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-14.999998"
+ y="6.9802859e-08"
+ transform="rotate(-90)" />
+ <path
+ id="path3599"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ id="rect3594"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Layer 2">
+ <g
+ id="g891">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5"
+ style="fill:url(#linearGradient853);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="5"
+ height="184"
+ viewBox="0 0 1.3229166 48.683335"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="xpane_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="-291.66146"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-248.31665)">
+ <image
+ y="248.31665"
+ x="1.452401e-08"
+ id="image842"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAC4CAIAAACkWbEZAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP iAAAD4gBFsilhgAAAAd0SU1FB94FGQQPDxE/6RgAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IEdJTVBXgQ4XAAAANklEQVRIx+3IsREAIAzDQIdjkPTZL6N4Xio46BhA6l6Rmdp195RUVWcNvWGM McYYY4z/HbZvL2S5BXbTgGAwAAAAAElFTkSuQmCC "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="48.683334"
+ width="1.3229166" />
+ </g>
+</svg>
--- /dev/null
+<?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="5"
+ height="184"
+ viewBox="0 0 1.3229166 48.683335"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="xpane_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="-291.66146"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-248.31665)">
+ <rect
+ style="opacity:1;fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.16086666;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1920"
+ width="63.185898"
+ height="9.0573645"
+ x="-29.011703"
+ y="234.47119" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-6.9613357"
+ y="239.5929"
+ id="text1924"><tspan
+ sodipodi:role="line"
+ id="tspan1922"
+ x="-6.9613357"
+ y="239.5929"
+ style="stroke-width:0.26458332">Unknown use.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-33.852467"
+ y="267.41718"
+ id="text845"><tspan
+ sodipodi:role="line"
+ id="tspan843"
+ x="-33.852467"
+ y="267.41718"
+ style="stroke-width:0.26458332">xpane_hi</tspan></text>
+ <image
+ y="247.91977"
+ x="1.4524019e-08"
+ id="image831"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAC4CAIAAACkWbEZAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP iAAAD4gBFsilhgAAAAd0SU1FB94FGQQNLIFu+ugAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IEdJTVBXgQ4XAAAAOklEQVRIx+3IwQ3AIAzAQBe6fnbJBpko6gp9gcSPAezf+akqVhHxApm51+BM a6211lprfe/Z3d8K+AEEIRKV56svJQAAAABJRU5ErkJggg== "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="49.477081"
+ width="1.3229166" />
+ </g>
+</svg>
--- /dev/null
+<?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="5"
+ height="184"
+ viewBox="0 0 1.3229166 48.683335"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="xpane_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="-138.93266"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-248.31665)">
+ <rect
+ style="opacity:1;fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.16086666;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1920"
+ width="63.185898"
+ height="9.0573645"
+ x="-29.011703"
+ y="234.47119" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-6.9613357"
+ y="239.5929"
+ id="text1924"><tspan
+ sodipodi:role="line"
+ id="tspan1922"
+ x="-6.9613357"
+ y="239.5929"
+ style="stroke-width:0.26458332">Unknown use.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-21.500896"
+ y="312.24887"
+ id="text841"><tspan
+ sodipodi:role="line"
+ id="tspan839"
+ x="-21.500896"
+ y="312.24887"
+ style="stroke-width:0.26458332">xpane_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-50.473732"
+ y="313.16379"
+ id="text845"><tspan
+ sodipodi:role="line"
+ id="tspan843"
+ x="-50.473732"
+ y="313.16379"
+ style="stroke-width:0.26458332">xpane_hi</tspan></text>
+ <image
+ y="317.19385"
+ x="-42.979809"
+ id="image831"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAC4CAIAAACkWbEZAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP
+iAAAD4gBFsilhgAAAAd0SU1FB94FGQQNLIFu+ugAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IEdJTVBXgQ4XAAAAOklEQVRIx+3IwQ3AIAzAQBe6fnbJBpko6gp9gcSPAezf+akqVhHxApm51+BM
+a6211lprfe/Z3d8K+AEEIRKV56svJQAAAABJRU5ErkJggg==
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="49.477081"
+ width="1.3229166" />
+ <image
+ y="316.46271"
+ x="-10.347237"
+ id="image842"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAC4CAIAAACkWbEZAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP
+iAAAD4gBFsilhgAAAAd0SU1FB94FGQQPDxE/6RgAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IEdJTVBXgQ4XAAAANklEQVRIx+3IsREAIAzDQIdjkPTZL6N4Xio46BhA6l6Rmdp195RUVWcNvWGM
+McYYY4z/HbZvL2S5BXbTgGAwAAAAAElFTkSuQmCC
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="48.683334"
+ width="1.3229166" />
+ <image
+ y="248.31665"
+ x="1.4524009e-08"
+ id="image853"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAC4CAIAAACkWbEZAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP
+iAAAD4gBFsilhgAAAAd0SU1FB94FGQQKGZicqAwAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IEdJTVBXgQ4XAAAAN0lEQVRIx+3IQREAIAzEwCuDkOqtgAo5hbxg4IeA5LeJ7tauqqYk22cNvWGM
+McYYY4z/HZl5ewH2tAdHW6KcsgAAAABJRU5ErkJggg==
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="48.683334"
+ width="1.3229166" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="128"
+ sodipodi:docname="ymeter_green.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_green.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient75125">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#135c36;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#27ae60;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#008000;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#0bff0b;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient863"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient75125"
+ id="linearGradient877"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581249,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="4.6973895"
+ inkscape:cx="-33.969793"
+ inkscape:cy="64.291028"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer21" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer20"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient3607);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-15"
+ y="0"
+ transform="scale(-1,1)" />
+ <g
+ id="g3609">
+ <path
+ id="rect3594"
+ d="M 0,0 V 1 128 H 1 V 1 H 15 V 0 H 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15,128 V 127 2.0338985e-7 H 14 V 127 H -1.6949144e-8 v 1 H 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer21"
+ inkscape:label="Layer 2">
+ <g
+ transform="rotate(-90,64,64)"
+ id="g901">
+ <rect
+ transform="rotate(-90)"
+ y="6.9802859e-08"
+ x="-14.999998"
+ height="128"
+ width="15"
+ id="rect2818-4"
+ style="fill:url(#linearGradient863);fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ id="path3599-7"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect3594-2"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5-4"
+ style="fill:url(#linearGradient877);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127-0"
+ xlink:href="#rect2818-5-4"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="128"
+ sodipodi:docname="ymeter_normal.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_normal.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#008000;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#0bff0b;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="translate(9.2895517e-8,-7.6293945e-6)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient4178"
+ id="linearGradient853"
+ x1="-14.999998"
+ y1="64"
+ x2="1.9073486e-06"
+ y2="64"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4178">
+ <stop
+ style="stop-color:#141414;stop-opacity:1;"
+ offset="0"
+ id="stop4174" />
+ <stop
+ style="stop-color:#262626;stop-opacity:1"
+ offset="1"
+ id="stop4176" />
+ </linearGradient>
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="26.803766"
+ inkscape:cx="5.0205625"
+ inkscape:cy="15.456029"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-24.949152"
+ y="1.6271186" />
+ <g
+ id="g3609"
+ transform="translate(-24.949153,1.6271186)">
+ <path
+ id="rect3594"
+ d="M 0,0 V 1 128 H 1 V 1 H 15 V 0 H 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15,128 V 127 2.0338985e-7 H 14 V 127 H -1.6949144e-8 v 1 H 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="fill:url(#linearGradient853);fill-opacity:1;stroke:none"
+ id="rect2818-7"
+ width="15"
+ height="128"
+ x="-15"
+ y="1.1376418e-23"
+ transform="scale(-1,1)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3599-3"
+ d="m 15,127.99999 v -1 L 15,-7.6293945e-6 H 14 V 126.99999 H -9.2895517e-8 v 1 H 14 Z"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <path
+ style="fill:#121212;fill-opacity:1;stroke:none"
+ d="M -9.2895517e-8,-7.6293945e-6 V 0.99999237 127.99999 H 0.99999991 V 0.99999237 H 15 V -7.6293945e-6 H 0.99999991 Z"
+ id="rect3594-6"
+ inkscape:connector-curvature="0" />
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="14"
+ height="40"
+ sodipodi:docname="ymeter_over.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted
+See: xmeter_over</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10-4" />
+ <inkscape:perspective
+ id="perspective10-8"
+ 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" />
+ <linearGradient
+ id="linearGradient79288">
+ <stop
+ id="stop79286"
+ offset="0"
+ style="stop-color:#5c0000;stop-opacity:1" />
+ <stop
+ id="stop79284"
+ offset="1"
+ style="stop-color:#e30000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient79288"
+ id="linearGradient81834"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50000002,0,0,1,36.338989,6.5084803)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="483"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.9"
+ inkscape:cx="-57.491525"
+ inkscape:cy="20"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="layer39" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer38"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <g
+ style="font-style:normal;font-weight:bold;font-size:40px;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'AlArabiya Bold';fill:#000000;fill-opacity:1;stroke:none"
+ id="text2818"
+ transform="matrix(0,-0.28940907,0.3265645,0,4.3114546,24.160421)">
+ <path
+ d="m -33.728153,-2.1196365 c -2.291682,2.42e-5 -4.069024,0.8463775 -5.332031,2.53906246 -1.263032,1.69272834 -1.894541,4.07553844 -1.894532,7.14843754 -9e-6,3.0599075 0.6315,5.4362065 1.894532,7.1289065 1.263007,1.692714 3.040349,2.539067 5.332031,2.539062 2.304668,5e-6 4.08852,-0.846348 5.351562,-2.539062 1.262997,-1.6927 1.894507,-4.068999 1.894532,-7.1289065 -2.5e-5,-3.0728991 -0.631535,-5.4557092 -1.894532,-7.14843754 -1.263042,-1.69268496 -3.046894,-2.53903826 -5.351562,-2.53906246 m 0,-5.4492188 c 4.687478,2.97e-5 8.359349,1.3411742 11.015625,4.0234375 2.656219,2.68231466 3.984343,6.386738 3.984375,11.1132813 -3.2e-5,4.7135515 -1.328156,8.4114645 -3.984375,11.0937495 -2.656276,2.682293 -6.328147,4.023437 -11.015625,4.023438 -4.674492,-1e-6 -8.346363,-1.341145 -11.015625,-4.023438 -2.656254,-2.682285 -3.984377,-6.380198 -3.984375,-11.0937495 -2e-6,-4.7265433 1.328121,-8.43096664 3.984375,-11.1132813 2.669262,-2.6822633 6.341133,-4.0234078 11.015625,-4.0234375"
+ id="path2823"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -17.634403,-7.0415115 h 7.558594 L -2.3414345,14.481926 5.3734093,-7.0415115 H 12.932003 L 2.1312218,22.118645 H -6.833622 L -17.634403,-7.0415115"
+ id="path2825"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 16.779659,-7.0415115 h 20.292969 v 5.6835937 H 24.299191 V 4.0717697 H 36.310909 V 9.7553635 H 24.299191 v 6.6796875 h 13.203125 v 5.683594 H 16.779659 V -7.0415115"
+ id="path2827"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 54.807003,5.888176 c 1.575505,1.62e-5 2.701806,-0.2929523 3.378906,-0.8789063 0.690086,-0.5859198 1.035138,-1.5494605 1.035157,-2.890625 -1.9e-5,-1.32810366 -0.345071,-2.27862354 -1.035157,-2.85156249 C 57.508809,-1.305811 56.382508,-1.5922691 54.807003,-1.5922928 H 51.642941 V 5.888176 h 3.164062 m -3.164062,5.195312 V 22.118645 H 44.123409 V -7.0415115 h 11.484375 c 3.841127,2.91e-5 6.653624,0.6445597 8.4375,1.9335937 1.79685,1.2890885 2.695286,3.3268468 2.695313,6.1132813 -2.7e-5,1.9271025 -0.468776,3.5091322 -1.40625,4.7460937 -0.924503,1.2369943 -2.324242,2.1484517 -4.199219,2.734375 1.028624,0.2343884 1.946592,0.768242 2.753906,1.6015628 0.820289,0.820323 1.647111,2.070322 2.480469,3.75 l 4.082031,8.28125 h -8.007812 l -3.554688,-7.246094 c -0.716163,-1.458325 -1.445329,-2.454417 -2.1875,-2.988281 -0.729182,-0.533844 -1.705743,-0.800771 -2.929687,-0.800782 h -2.128906"
+ id="path2829"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer39"
+ inkscape:label="Layer 2">
+ <g
+ transform="matrix(0,-0.3125,0.93333367,0,-2.0583332e-6,40)"
+ id="g81061">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="4.9774172e-07"
+ x="2.1754151e-06"
+ height="128"
+ width="7.5"
+ id="rect2818-5-8"
+ style="fill:url(#linearGradient81834);fill-opacity:1;stroke:none;stroke-width:0.70710677" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.4999995)"
+ id="use75127-4"
+ xlink:href="#rect2818-5-8"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#e30000;stroke-width:0.48819804;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect80631"
+ width="39.511799"
+ height="13.511802"
+ x="-39.755898"
+ y="0.24409914"
+ transform="rotate(-90)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.39359474px;line-height:28.73999214px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:1.14959967"
+ x="-38.521542"
+ y="11.78937"
+ id="text79969-5"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/over.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96"
+ transform="matrix(0,-1.0330552,0.96800249,0,0,0)"><tspan
+ sodipodi:role="line"
+ id="tspan79967-4"
+ x="-38.521542"
+ y="11.78937"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.39359474px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffcc00;fill-opacity:1;stroke-width:1.14959967">over</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="128"
+ sodipodi:docname="ymeter_red.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_red.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#800000;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#ff0b0b;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)" />
+ <linearGradient
+ id="linearGradient79288">
+ <stop
+ id="stop79286"
+ offset="0"
+ style="stop-color:#5c0000;stop-opacity:1" />
+ <stop
+ id="stop79284"
+ offset="1"
+ style="stop-color:#e30000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient79288"
+ id="linearGradient864"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581248,6.5084798)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="4.71875"
+ inkscape:cx="-48.65894"
+ inkscape:cy="64"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer31" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer30"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient3607);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-15"
+ y="0"
+ transform="scale(-1,1)" />
+ <g
+ id="g3609">
+ <path
+ id="rect3594"
+ d="M 0,0 V 1 128 H 1 V 1 H 15 V 0 H 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15,128 V 127 2.0338985e-7 H 14 V 127 H -1.6949144e-8 v 1 H 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer31"
+ inkscape:label="Layer 2">
+ <g
+ id="g857"
+ transform="rotate(-90,64.000001,63.999999)">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5-2"
+ style="fill:url(#linearGradient864);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127-4"
+ xlink:href="#rect2818-5-2"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="128"
+ sodipodi:docname="ymeter_white.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_white.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#c8c8c8;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(155.26381,7.4382817)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient2915"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(180.64087,7.3179956)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient833">
+ <stop
+ style="stop-color:#ccc9bc;stop-opacity:1"
+ offset="0"
+ id="stop829" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="1"
+ id="stop831" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient910"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50000002,0,0,1,36.338987,6.5084793)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ id="linearGradient3601-9">
+ <stop
+ id="stop3603-8"
+ offset="0"
+ style="stop-color:#008000;stop-opacity:1;" />
+ <stop
+ id="stop3605-7"
+ offset="1"
+ style="stop-color:#141414;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient967"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50000002,0,0,1,36.338988,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient833"
+ id="linearGradient874"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581249,6.5084796)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="3.3418205"
+ inkscape:cx="-78.953571"
+ inkscape:cy="80.761802"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <rect
+ style="fill:url(#linearGradient3607);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="82.585846"
+ y="0.92980206"
+ transform="scale(-1,1)" />
+ <g
+ id="g3609"
+ transform="translate(-97.585844,0.92980208)">
+ <path
+ id="rect3594"
+ d="M 0,0 V 1 128 H 1 V 1 H 15 V 0 H 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15,128 V 127 2.0338985e-7 H 14 V 127 H -1.6949144e-8 v 1 H 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="fill:url(#linearGradient2915);fill-opacity:1;stroke:none"
+ id="rect2818-7"
+ width="15"
+ height="128"
+ x="107.9629"
+ y="0.80953318"
+ transform="scale(-1,1)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3599-8"
+ d="m -107.9629,128.80953 v -1 V 0.80951555 h -1 V 127.80953 h -14 v 1 h 14 z"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#141414;fill-opacity:1;stroke:none"
+ d="M -122.9629,0.80951555 V 1.8095156 128.80953 h 1 V 1.8095156 h 14 V 0.80951555 h -14 z"
+ id="rect3594-4" />
+ <g
+ transform="rotate(-90,64,64)"
+ id="g852">
+ <rect
+ transform="rotate(-90)"
+ y="6.9802859e-08"
+ x="-14.999998"
+ height="128"
+ width="15"
+ id="rect2818-2"
+ style="fill:#e6e4dd;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 128,15 H 127 2.0338985e-7 V 14 H 127 V -1.6949144e-8 h 1 V 14 Z"
+ id="path3599-8-2" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3594-2"
+ d="M 0,0 H 1 128 V 1 H 1 V 15 H 0 V 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="0"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5"
+ style="fill:url(#linearGradient874);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,64,7.5)"
+ id="use75127"
+ xlink:href="#rect2818-5"
+ y="0"
+ x="0" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="15"
+ height="128"
+ sodipodi:docname="ymeter_yellow.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ymeter_yellow.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3601">
+ <stop
+ style="stop-color:#807800;stop-opacity:1;"
+ offset="0"
+ id="stop3603" />
+ <stop
+ style="stop-color:#fff10b;stop-opacity:1;"
+ offset="1"
+ id="stop3605" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3601"
+ id="linearGradient3607"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(57.677963,6.5084796)" />
+ <linearGradient
+ id="linearGradient75125-9">
+ <stop
+ id="stop75121"
+ offset="0"
+ style="stop-color:#ab8900;stop-opacity:1" />
+ <stop
+ id="stop75123"
+ offset="1"
+ style="stop-color:#ffcc00;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient75125-9"
+ id="linearGradient837"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.50333337,0,0,1,36.581245,-121.49153)"
+ x1="-72.677963"
+ y1="57.49152"
+ x2="-57.677963"
+ y2="57.49152" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:zoom="9.8749988"
+ inkscape:cx="7.5"
+ inkscape:cy="64"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer27" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer26"
+ inkscape:label="Layer 1"
+ style="display:none">
+ <rect
+ style="fill:url(#linearGradient3607);fill-opacity:1;stroke:none"
+ id="rect2818"
+ width="15"
+ height="128"
+ x="-15"
+ y="0"
+ transform="scale(-1,1)" />
+ <g
+ id="g3609">
+ <path
+ id="rect3594"
+ d="M 0,0 V 1 128 H 1 V 1 H 15 V 0 H 1 Z"
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 15,128 V 127 2.0338985e-7 H 14 V 127 H -1.6949144e-8 v 1 H 14 Z"
+ id="path3599"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer27"
+ inkscape:label="Layer 2">
+ <g
+ id="g841">
+ <rect
+ transform="scale(1,-1)"
+ y="-128"
+ x="0"
+ height="128"
+ width="7.5500002"
+ id="rect2818-5-9"
+ style="fill:url(#linearGradient837);fill-opacity:1;stroke:none;stroke-width:0.7094599" />
+ <use
+ height="100%"
+ width="100%"
+ transform="rotate(-180,7.5,64)"
+ id="use75127-0"
+ xlink:href="#rect2818-5-9"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+<?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="184"
+ height="5"
+ viewBox="0 0 48.683332 1.3229167"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ypane_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="-138.93266"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-295.67707)">
+ <image
+ y="295.67706"
+ x="-5.35293e-07"
+ id="image836"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAAFCAIAAAB5BbE7AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP iAAAD4gBFsilhgAAAAd0SU1FB94FGQQQFrgOT0YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IEdJTVBXgQ4XAAAANUlEQVRIx+3SQREAMAjEwKNTIfzxh5TTiwP66TMrIZPITAGr7r6SqooW2B0S gFHwTdimAp4Gc64EEDx5oWMAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="1.3229166"
+ width="48.683334" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-27.295465"
+ y="297"
+ id="text841"><tspan
+ sodipodi:role="line"
+ id="tspan839"
+ x="-27.295465"
+ y="297"
+ style="stroke-width:0.26458332">ypane_dn</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="184"
+ height="5"
+ viewBox="0 0 48.683332 1.3229167"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ypane_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="-138.93266"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-295.67707)">
+ <image
+ y="295.67706"
+ x="-5.35293e-07"
+ id="image825"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAAFCAIAAAB5BbE7AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP iAAAD4gBFsilhgAAAAd0SU1FB94FGQQMOmyhfvgAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IEdJTVBXgQ4XAAAANUlEQVRIx+3SQREAMAjEwKNTeVjDCw7OGg7op8+shEzCtoBVVV1J3U0L7A4J wCj4JjKTCngaeKgG42MBpkUAAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="1.3229166"
+ width="48.683334" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-29.125322"
+ y="297.91495"
+ id="text845"><tspan
+ sodipodi:role="line"
+ id="tspan843"
+ x="-29.125322"
+ y="297.91495"
+ style="stroke-width:0.26458332">ypane_hi</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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="184"
+ height="5"
+ viewBox="0 0 48.683332 1.3229167"
+ version="1.1"
+ id="svg1343"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ sodipodi:docname="ypane_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/ypane_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title1918">ypane_up</title>
+ <defs
+ id="defs1337" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.7351017"
+ inkscape:cx="13.796141"
+ inkscape:cy="-79.339583"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:showpageshadow="false" />
+ <metadata
+ id="metadata1340">
+ <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>ypane_up</dc:title>
+ <dc:date>2018-08-16</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-16: new. </dc:description>
+ <dc:relation>x/ypane_up</dc:relation>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-295.67707)">
+ <image
+ y="295.67706"
+ x="-5.35293e-07"
+ id="image1915"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAAFCAIAAAB5BbE7AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP iAAAD4gBFsilhgAAAAd0SU1FB94FGQQJFboHt+QAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo IEdJTVBXgQ4XAAAANUlEQVRIx+3SQREAMAjEwKNTIehFAEJOIQ7op8+shEyiuwWsqupKsk0L7A4J wCj4JjKTCngaEo0F4WJMVh4AAAAASUVORK5CYII= "
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="1.3229166"
+ width="48.683334" />
+ <rect
+ style="opacity:1;fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.16086666;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1920"
+ width="63.185898"
+ height="9.0573645"
+ x="-6.9008493"
+ y="281.74268" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="15.14952"
+ y="286.86438"
+ id="text1924"><tspan
+ sodipodi:role="line"
+ id="tspan1922"
+ x="15.14952"
+ y="286.86438"
+ style="stroke-width:0.26458332">Unknown use.</tspan></text>
+ <image
+ y="307.3967"
+ x="-66.163727"
+ id="image825"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAAFCAIAAAB5BbE7AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP
+iAAAD4gBFsilhgAAAAd0SU1FB94FGQQMOmyhfvgAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IEdJTVBXgQ4XAAAANUlEQVRIx+3SQREAMAjEwKNTeVjDCw7OGg7op8+shEzCtoBVVV1J3U0L7A4J
+wCj4JjKTCngaeKgG42MBpkUAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="1.3229166"
+ width="48.683334" />
+ <image
+ y="324.32291"
+ x="-66.011238"
+ id="image836"
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAAFCAIAAAB5BbE7AAAAAXNSR0IArs4c6QAAAAlwSFlzAAAP
+iAAAD4gBFsilhgAAAAd0SU1FB94FGQQQFrgOT0YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRo
+IEdJTVBXgQ4XAAAANUlEQVRIx+3SQREAMAjEwKNTIfzxh5TTiwP66TMrIZPITAGr7r6SqooW2B0S
+gFHwTdimAp4Gc64EEDx5oWMAAAAASUVORK5CYII=
+"
+ style="image-rendering:optimizeQuality"
+ preserveAspectRatio="none"
+ height="1.3229166"
+ width="48.683334" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-58.555641"
+ y="320.48325"
+ id="text841"><tspan
+ sodipodi:role="line"
+ id="tspan839"
+ x="-58.555641"
+ y="320.48325"
+ style="stroke-width:0.26458332">ypane_dn</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:6.61458302px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+ x="-56.268303"
+ y="303.09955"
+ id="text845"><tspan
+ sodipodi:role="line"
+ id="tspan843"
+ x="-56.268303"
+ y="303.09955"
+ style="stroke-width:0.26458332">ypane_hi</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="164"
+ height="20"
+ sodipodi:docname="zoompopup_dn.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_dn.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3740"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2843696,0,0,0.97500609,0.96126597,0.16744278)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1-3"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-165.95131,-62.327288)" />
+ <linearGradient
+ id="linearGradient2362">
+ <stop
+ id="stop2358"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop2360"
+ offset="1"
+ style="stop-color:#1a1a1a;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-14"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-1.951442,-42.327295)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="6.8971181"
+ inkscape:cx="81.093984"
+ inkscape:cy="23.774416"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2962"
+ width="164"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:1.11904788"
+ id="rect2818"
+ width="160.88094"
+ height="18.881069"
+ x="1.5595305"
+ y="0.55941379"
+ ry="2.6384637" />
+ <rect
+ ry="2.6384637"
+ y="0.55941379"
+ x="1.5595305"
+ height="18.881069"
+ width="160.88094"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3740);fill-opacity:1;stroke:#000000;stroke-width:1.11904788" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-14);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-0"
+ width="164"
+ height="10.05"
+ x="0"
+ y="9.9499998" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1-3);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1-3"
+ width="164"
+ height="10.05"
+ x="-164"
+ y="-10.05"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:1.01917326;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8-1"
+ width="162.98083"
+ height="18.980827"
+ x="0.50958252"
+ y="0.50958633" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="29.08551"
+ y="-24.955444"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="29.08551"
+ y="-24.955444">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="164"
+ height="20"
+ sodipodi:docname="zoompopup_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609"
+ inkscape:collect="always">
+ <stop
+ id="stop3611"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3737"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2843696,0,0,0.97500606,0.96126597,0.16744276)"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3740"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2843696,0,0,0.97500609,0.96126597,0.16744278)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1-2"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-165.95139,-72.302276)" />
+ <linearGradient
+ id="linearGradient2362">
+ <stop
+ id="stop2358"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop2360"
+ offset="1"
+ style="stop-color:#1a1a1a;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-2"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-1.9513899,-52.302302)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="2.4384995"
+ inkscape:cx="-86.895569"
+ inkscape:cy="34.938499"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2962"
+ width="164"
+ height="20"
+ x="0"
+ y="0" />
+ <rect
+ style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:1.11904788"
+ id="rect2818"
+ width="160.88094"
+ height="18.881069"
+ x="1.5595305"
+ y="0.55941379"
+ ry="2.6384637" />
+ <rect
+ ry="2.6384637"
+ y="0.55941379"
+ x="1.5595305"
+ height="18.881069"
+ width="160.88094"
+ id="rect2820"
+ style="opacity:0.5;fill:url(#linearGradient3740);fill-opacity:1;stroke:#000000;stroke-width:1.11904788" />
+ <path
+ style="opacity:0.3;fill:url(#linearGradient3737);fill-opacity:1;stroke:none"
+ d="m 5.0551943,0.56353898 c -1.9255005,0 -3.4918801,1.15861992 -3.4918801,2.62032882 V 16.803483 c 0,1.072258 0.8423912,1.993498 2.0469642,2.407047 v -7.617235 c 0,-1.466585 1.5599557,-2.6507978 3.4918801,-2.6507978 H 156.36999 c 1.93192,0 3.49189,1.1842128 3.49189,2.6507978 v 7.739111 c 1.47754,-0.304031 2.56874,-1.308448 2.56874,-2.528923 V 3.1838678 c 0,-1.4617089 -1.52625,-2.62032882 -3.45175,-2.62032882 z"
+ id="rect3602"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="15.076292"
+ y="-45.594112"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="15.076292"
+ y="-45.594112">see: recordpatch_up</tspan></text>
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-9"
+ width="164"
+ height="10.05"
+ x="1.758337e-06"
+ y="-0.024999768" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1-7"
+ width="164"
+ height="10.05"
+ x="-164"
+ y="-20.024994"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:1.01917326;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8-4"
+ width="162.98083"
+ height="18.980827"
+ x="0.50958431"
+ y="0.53458583" />
+ <rect
+ style="fill:#5f8dd3;fill-opacity:0.5;stroke:none;stroke-width:1.01364899"
+ id="rect3611-3-64-8-2-1"
+ width="162"
+ height="18"
+ x="1.0000018"
+ y="1.0249957" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="164"
+ height="20"
+ sodipodi:docname="zoompopup_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoompopup_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ id="linearGradient2362">
+ <stop
+ id="stop2358"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop2360"
+ offset="1"
+ style="stop-color:#1a1a1a;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2315">
+ <stop
+ style="stop-color:#404040;stop-opacity:1"
+ offset="0"
+ id="stop2311" />
+ <stop
+ style="stop-color:#141414;stop-opacity:1"
+ offset="1"
+ id="stop2313" />
+ </linearGradient>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ id="perspective10" />
+ <linearGradient
+ gradientTransform="matrix(0.99800072,0,0,0.98167414,-0.00416685,0.3673472)"
+ gradientUnits="userSpaceOnUse"
+ y2="12.436287"
+ x2="59.855824"
+ y1="0.40625"
+ x1="59.855824"
+ id="linearGradient3615"
+ xlink:href="#linearGradient3609"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3606"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="matrix(0.99800072,0,0,0.98167417,-0.00416685,0.36734722)"
+ gradientUnits="userSpaceOnUse"
+ y2="-0.097980887"
+ x2="63.096119"
+ y1="20.267097"
+ x1="63.096119"
+ id="linearGradient3600"
+ xlink:href="#linearGradient3594"
+ inkscape:collect="always" />
+ <inkscape:perspective
+ id="perspective10-4"
+ 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" />
+ <linearGradient
+ id="linearGradient3594"
+ inkscape:collect="always">
+ <stop
+ id="stop3596"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop3598"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3609"
+ inkscape:collect="always">
+ <stop
+ id="stop3611"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3613"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3609"
+ id="linearGradient3737"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2843696,0,0,0.97500606,0.96126597,0.16744276)"
+ x1="59.855824"
+ y1="0.40625"
+ x2="59.855824"
+ y2="12.436287" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3594"
+ id="linearGradient3740"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.2843696,0,0,0.97500609,0.96126597,0.16744278)"
+ x1="63.096119"
+ y1="20.267097"
+ x2="63.096119"
+ y2="-0.097980887" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-1.9513909,-52.327281)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient2362"
+ id="linearGradient2309-1"
+ x1="165.95139"
+ y1="57.218918"
+ x2="165.95139"
+ y2="68.218918"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.91363632,-165.95139,-72.277282)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="4.9359756"
+ inkscape:cx="82"
+ inkscape:cy="10"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect2962"
+ width="164"
+ height="20"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845"
+ width="164"
+ height="10.05"
+ x="0"
+ y="-0.050000001" />
+ <rect
+ style="opacity:1;fill:url(#linearGradient2309-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7914114;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect845-1"
+ width="164"
+ height="10.05"
+ x="-164"
+ y="-20"
+ transform="scale(-1)" />
+ <rect
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#141414;stroke-width:1.01917326;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect2341-8"
+ width="162.98083"
+ height="18.980827"
+ x="0.50958252"
+ y="0.50958633" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="19"
+ height="20"
+ sodipodi:docname="zoomtumble_bottom.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_bottom.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870487,-0.5612269)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870643,-20.561212)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.608696"
+ inkscape:cx="1.4374095"
+ inkscape:cy="8.6898219"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0-1);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57-9"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825172"
+ y="-19.825157"
+ transform="scale(-1)" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52-4);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3-5"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17484081"
+ y="0.17484856" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2-7"
+ d="M 3.5266327,8.0780331 H 15.473583 l -6.0747203,-6.07004 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="M 15.473583,11.921952 H 3.5266327 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-7-4"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 18.500113,9.9999931 H 0.50011266"
+ id="path1006-7-2-1"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="-19.757004"
+ x="-18.756996"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-2"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <rect
+ y="-19.383118"
+ x="-18.383156"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3-2"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ transform="scale(-1)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-74.190536"
+ y="-8.5038891"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-74.190536"
+ y="-8.5038891">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="18.99999"
+ height="20"
+ sodipodi:docname="zoomtumble_hi.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_hi.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3909">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3911" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3913" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3901">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop3903" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3905" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3909"
+ id="linearGradient3242"
+ gradientUnits="userSpaceOnUse"
+ x1="9.609375"
+ y1="17.31839"
+ x2="9.609375"
+ y2="12.814619"
+ gradientTransform="matrix(0.99557949,0,0,0.86714754,3.6282073e-7,0.02789196)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3901"
+ id="linearGradient3246"
+ gradientUnits="userSpaceOnUse"
+ x1="9.5606461"
+ y1="6.0659428"
+ x2="9.5606461"
+ y2="1.2171611"
+ gradientTransform="matrix(0.99557949,0,0,0.86714754,3.6282073e-7,0.02789196)" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3389">
+ <stop
+ id="stop3387"
+ offset="0"
+ style="stop-color:#87aade;stop-opacity:1" />
+ <stop
+ id="stop3385"
+ offset="1"
+ style="stop-color:#3771c8;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870593,-20.561221)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870537,-0.56121762)" />
+ <linearGradient
+ gradientTransform="rotate(-180,300.71664,-27.341628)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-8-4"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="translate(-520.68533,75.564666)"
+ inkscape:collect="always"
+ xlink:href="#linearGradient3389"
+ id="linearGradient3391-9"
+ x1="560.95807"
+ y1="-73.115959"
+ x2="560.99158"
+ y2="-67.037628"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-5-1"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-72.744567,-21.001924)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-4-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,8.0034376,-0.12051405)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="8.8918678"
+ inkscape:cx="-48.811463"
+ inkscape:cy="10"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="Layer 1"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ id="path3120"
+ d="m 18.584635,18.193957 c 0,0.773896 -1.249183,1.390689 -2.816547,1.390689 H 3.4128308 c -1.567365,0 -2.8541018,-0.616793 -2.8541018,-1.390689 v -7.806406 h 18.025906 z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070958;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3725"
+ d="M 19,-0.027715 H 0 v 20 h 19 z"
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4292"
+ d="m 18.584635,1.8060446 c 0,-0.7738969 -1.249183,-1.39068982 -2.816547,-1.39068982 H 3.4128308 c -1.567365,0 -2.8541018,0.61679292 -2.8541018,1.39068982 v 7.8064048 h 18.025906 z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070958;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070958;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 18.584635,18.193957 c 0,0.773896 -1.249183,1.390689 -2.816547,1.390689 H 3.4128308 c -1.567365,0 -2.8541018,-0.616793 -2.8541018,-1.390689 v -7.806406 h 18.025906 z"
+ id="path3106"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="M 3.4845281,7.8322198 H 15.431482 L 9.3567596,1.762187 Z"
+ id="path2910"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient3246);fill-opacity:1;stroke:none"
+ d="m 3.9364297,1.0833501 c -1.423847,0 -2.6002014,0.5641499 -2.6002014,1.2514636 v 2.021595 C 2.5700645,4.5304771 3.8296741,4.7015091 5.066952,4.885874 8.0322703,5.3277317 13.018354,6.2364991 17.700539,6.4502034 V 2.3348137 c 0,-0.6873137 -1.119829,-1.2514636 -2.543675,-1.2514636 z"
+ id="path3112"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path3917"
+ d="M 15.431482,12.167957 H 3.4845284 l 6.0747229,6.070033 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.5;fill:url(#linearGradient3242);fill-opacity:1;stroke:none"
+ d="m 1.3362283,11.140057 v 1.859855 c 3.1495784,1.51905 8.2023567,2.102093 12.6232017,2.041304 1.083637,-0.0149 2.400203,-0.09937 3.838136,-0.226812 v -3.674347 z"
+ id="path3118"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17482358"
+ y="0.17483598" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825153"
+ y="-19.825161"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5"
+ d="M 15.473473,11.921961 H 3.5265227 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#3771c8;fill-opacity:1;stroke:none"
+ d="M 3.5265227,8.0780423 H 15.473473 L 9.3987527,2.0080025 Z"
+ id="path2910-1-9-2-6"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.49999265,10.000001 H 18.499993"
+ id="path1006-7-8"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24299699"
+ x="0.24299985"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.6168831"
+ x="0.61684018"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#2c5aa0;fill-opacity:1;stroke:none"
+ d="M 15.473473,11.921961 H 3.5265227 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-6-7"
+ sodipodi:nodetypes="cccc" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-53.572174"
+ y="-7.1690168"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-53.572174"
+ y="-7.1690168">see: recordpatch_up</tspan></text>
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-4-9);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-5-3"
+ width="18.650328"
+ height="9.6503277"
+ x="31.048798"
+ y="0.61553961" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-5-1);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-6-3"
+ width="18.650328"
+ height="9.6503277"
+ x="-49.699127"
+ y="-20.265865"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-5-8"
+ d="m 46.347447,12.362664 h -11.94695 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-9);fill-opacity:1;stroke:none"
+ d="m 34.400497,8.5187459 h 11.94695 l -6.07472,-6.0700398 z"
+ id="path2910-1-9-2-6-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 31.373967,10.440704 h 18"
+ id="path1006-7-8-5"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.68370062"
+ x="31.116974"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-4-6"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="1.0575867"
+ x="31.490814"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-8-6"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3391-8-4);fill-opacity:1;stroke:none"
+ d="m 46.347447,12.362664 h -11.94695 l 6.07472,6.07004 z"
+ id="path2910-1-9-2-6-7-4"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="19"
+ height="20"
+ sodipodi:docname="zoomtumble_top.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_top.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0-52"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.870546,-20.561227)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-7-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870584,-0.56121245)" />
+ </defs>
+ <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="750"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="20.608696"
+ inkscape:cx="-5.5907169"
+ inkscape:cy="9.1453059"
+ inkscape:window-x="0"
+ inkscape:window-y="25"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ borderlayer="false"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ style="display:inline">
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-7-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-57"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17482835"
+ y="0.17484283" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0-52);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8-3"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825159"
+ y="-19.825153"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8-6-2"
+ d="M 15.473426,11.921967 H 3.5264758 l 6.07472,6.07004 z"
+ style="fill:#e8e8e8;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffcc00;fill-opacity:1;stroke:none"
+ d="M 3.5264758,8.0780476 H 15.473426 l -6.0747202,-6.07004 z"
+ id="path2910-1-9-2-7"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.49994572,10.000007 H 18.499946"
+ id="path1006-7-2"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24299622"
+ x="0.24300462"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.61688232"
+ x="0.61684495"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1-1-3"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-53.228508"
+ y="-4.0882773"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-53.228508"
+ y="-4.0882773">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
+ width="19"
+ height="20"
+ sodipodi:docname="zoomtumble_up.svg"
+ inkscape:export-filename="/home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/plugins/theme_neophyte/data/zoomtumble_up.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <metadata
+ id="metadata8">
+ <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:date>2018-08-01</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Olaf</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:description>2018-08-01: adapted. </dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6">
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9-0"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-41.8706,-20.561245)" />
+ <linearGradient
+ id="linearGradient1817">
+ <stop
+ id="stop1852"
+ offset="0"
+ style="stop-color:#404040;stop-opacity:1" />
+ <stop
+ id="stop1854"
+ offset="1"
+ style="stop-color:#151515;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient1817"
+ id="linearGradient1811-8-7-3-9"
+ x1="44.737286"
+ y1="1.0084742"
+ x2="44.737286"
+ y2="18.728813"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.71732028,0,0,0.56766624,-22.870528,-0.56119979)" />
+ </defs>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1316"
+ inkscape:window-height="744"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="5.347495"
+ inkscape:cx="-39.555914"
+ inkscape:cy="10"
+ inkscape:window-x="50"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="layer2"
+ inkscape:showpageshadow="false" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Layer 2"
+ transform="translate(0,-2.4795532e-5)"
+ style="display:inline">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3120-0"
+ d="m 42.362858,18.130144 c 0,0.773897 -1.249182,1.390691 -2.816545,1.390691 H 27.191064 c -1.567364,0 -2.8541,-0.616794 -2.8541,-1.390691 v -7.806415 h 18.025894 z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3725-8"
+ d="m 42.849911,-0.06380856 h -19 V 19.936191 h 19 z"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292-1"
+ d="m 42.362858,1.742213 c 0,-0.77389782 -1.249182,-1.39069147 -2.816545,-1.39069147 H 27.191064 c -1.567364,0 -2.8541,0.61679365 -2.8541,1.39069147 v 7.8064143 h 18.025894 z"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#1a1a1a;stroke-width:0.83070976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 42.362858,18.130144 c 0,0.773897 -1.249182,1.390691 -2.816545,1.390691 H 27.191064 c -1.567364,0 -2.8541,-0.616794 -2.8541,-1.390691 v -7.806415 h 18.025894 z"
+ id="path3106-3" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff6600;fill-opacity:1;stroke:none"
+ d="m 27.376437,7.7683954 h 11.946947 l -6.074719,-6.07004 z"
+ id="path2910-1"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1"
+ d="M 39.323384,12.104137 H 27.376437 l 6.074719,6.070041 z"
+ style="fill:#ffb380;fill-opacity:1;stroke:none" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-9.1333208"
+ y="-13.540649"
+ id="text945"><tspan
+ sodipodi:role="line"
+ id="tspan943"
+ x="-9.1333208"
+ y="-13.540649">Hauptfenster</tspan></text>
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot947"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+ id="flowRegion949"><rect
+ id="rect951"
+ width="33.550224"
+ height="30.10301"
+ x="-6.2931724"
+ y="-5.9342594" /></flowRegion><flowPara
+ id="flowPara953" /></flowRoot> <rect
+ style="fill:url(#linearGradient1811-8-7-3-9);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9"
+ width="18.650328"
+ height="9.6503277"
+ x="0.17483726"
+ y="0.17486125" />
+ <rect
+ style="fill:url(#linearGradient1811-8-7-3-9-0);fill-opacity:1;stroke:#141414;stroke-width:0.34967291;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect3597-9-6-9-3-9-8"
+ width="18.650328"
+ height="9.6503277"
+ x="-18.825165"
+ y="-19.825188"
+ transform="scale(-1)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ id="path3917-1-8"
+ d="M 15.473475,11.921989 H 3.526525 l 6.07472,6.07004 z"
+ style="fill:#cccccc;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc;fill-opacity:1;stroke:none"
+ d="m 3.526525,8.0780602 h 11.94695 L 9.3987551,2.0080203 Z"
+ id="path2910-1-9"
+ sodipodi:nodetypes="cccc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.23717083;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 0.50000001,10.000025 H 18.5"
+ id="path1006"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="0.24302101"
+ x="0.24299622"
+ height="19.514008"
+ width="18.514008"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8"
+ style="fill:none;fill-opacity:1;stroke:#141414;stroke-width:0.48599187;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="0.61690235"
+ x="0.61687756"
+ height="18.766245"
+ width="17.766245"
+ id="rect3597-5-7-9-4-8-9-8-27-0-8-1"
+ style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.23375539;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:25px;font-family:Andika;-inkscape-font-specification:'Andika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
+ x="-26.637474"
+ y="-30.779339"
+ id="text1473-8-6"><tspan
+ sodipodi:role="line"
+ id="tspan1471-9-5"
+ x="-26.637474"
+ y="-30.779339">see: recordpatch_up</tspan></text>
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+# This is a little utility that make all pngs that this theme needs
+
+if [ -z "$(which inkscape)" ]; then
+ echo "Error: program inkscape not found."
+ exit 1
+fi
+
+var="$@"
+if [ -z "$var" ]; then
+ SOURCE=$(ls -1 Source | grep '\.svg$' | grep -v '_all.svg$\|^0\.[0-9A-Za-z].*\.svg$')
+ echo $(echo "$SOURCE" | wc -l) SVG files found.
+ Z=0
+ for i in $SOURCE ; do
+ let Z+=1
+ echo " [$Z] Convert: $i ..."
+ inkscape -e $(basename "$i" .svg).png Source/"$i"
+ done
+else
+ for i in $@; do
+ case "$i" in
+ *.svg) inkscape -e $(basename "$i" .svg).png "$i" ;;
+ *) echo "Error: This program only converts SVG to PNG." ;;
+ esac
+ done
+fi
#define BlackSevenTwo 0x474747 // 72% black
#define BlackEightFive 0x262626 // 85% black
#define BlackFive 0xf2f2f2 // 5% black
-#define BabyBlue 0x5f8dd3 // baby-blue
+#define BabyBlue 0x5f8dd3
#define BabyBlueDark 0x162d50 // baby-blue -3 (inkscape), e.g. dialog Subtitle
-// traffic lights
-// light green 0x27ae60/0x37c871 - just on the buttons.
+// traffic lights, light green: 0x27ae60/0x37c871 - just on the buttons.
#define ComicYellow 0xffcc00 // heads up!
#define DarkRed 0xaa0000 // locked or not switched on.
#define LockedRed 0x400000
}
NEOPHYTETHEMEMain::NEOPHYTETHEMEMain(PluginServer *server)
- : PluginTClient(server)
+ : PluginTClient(server)
{
}
}
NEOPHYTETHEME::NEOPHYTETHEME()
- : Theme()
+ : Theme()
{
}
{
BC_Resources *resources = BC_WindowBase::get_resources();
- // something own, fitting to the theme and independent of the integrated splash screen/about
- about_bg = new VFramePng(get_image_data("about_bg.png")); // Preferences: About (logo)
- // new_image("mwindow_icon", "cinelerra_icon_mwin.png"); // replacement for the heroine icon, maybe
- // new_image("vwindow_icon", "cinelerra_icon_vwin.png");
- // new_image("cwindow_icon", "cinelerra_icon_cwin.png");
- // new_image("awindow_icon", "cinelerra_icon_awin.png");
- // new_image("record_icon", "cinelerra_icon_rec.png");
+ /* Something own, fitting to the theme and independent of
+ the integrated splash screen/about */
+ // Preferences: About (logo)
+ about_bg = new VFramePng(get_image_data("about_bg.png"));
+
+ /* Replacement for the heroine icon, maybe. Everyone has his
+ own ideas about this, especially in connection with the
+ new desktops[tm]. It would be better to solve this globally,
+ irrespective of the theme currently in use. */
+ // new_image("mwindow_icon", "cin_icon_mwin.png");
+ // new_image("vwindow_icon", "cin_icon_vwin.png");
+ // new_image("cwindow_icon", "cin_icon_cwin.png");
+ // new_image("awindow_icon", "cin_icon_awin.png");
+ // new_image("record_icon", "cin_icon_rec.png");
resources->text_default = CreamyWhite; // general text color
- resources->text_background = BlackNineTwo; //
+ resources->text_background = BlackNineTwo;
resources->text_background_disarmed = LockedRed; // arm track locked (!)
-
- resources->text_border2 = BlackNineTwo; // l,t outside
- resources->text_border1 = BLACK; // l,t inside
- resources->text_border3 = BlackSevenTwo; // r,d inside
- resources->text_border4 = BlackNineTwo; // r,d outside
- resources->text_border2_hi = ComicYellow; // highlighting on mouseover
- resources->text_border3_hi = ComicYellow;
-
- resources->text_inactive_highlight = BabyBlueDark; // e.g. Subtitle (double click on inactive text, choose next or prev and be amazed).
+ resources->text_border2 = BlackNineTwo; // l,t outside
+ resources->text_border1 = BLACK; // l,t inside
+ resources->text_border3 = BlackSevenTwo; // r,d inside
+ resources->text_border4 = BlackNineTwo; // r,d outside
+ resources->text_border2_hi = ComicYellow; // highlighting on mouseover
+ resources->text_border3_hi = ComicYellow;
+ resources->text_inactive_highlight = BabyBlueDark; /* e.g. Subtitle (double click
+ on inactive text, choose next or
+ prev and be amazed). */
resources->text_highlight = BabyBlue;
resources->bg_color = BlackEightFive;
- resources->border_light2 = resources->bg_color;
+ resources->border_light2 = resources->bg_color;
resources->border_shadow2 = resources->bg_color;
- resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more.
- resources->menu_title_text = WHITE; // high contrast
- resources->popup_title_text = WHITE; //
- resources->menu_item_text = WHITE; //
+ resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more.
+ resources->menu_title_text = WHITE; // high contrast
+ resources->popup_title_text = WHITE;
+ resources->menu_item_text = WHITE;
- resources->menu_highlighted_fontcolor = CreamyWhiteBright;
- resources->generic_button_margin = 20; // [15] (Pref top right, 17)
+ resources->menu_highlighted_fontcolor = CreamyWhiteBright;
+ resources->generic_button_margin = 20; // [15] (Pref top right: ~17)
resources->pot_needle_color = CreamyWhite; // [resources->text_default] – marginal
resources->pot_offset = 1; // only the needle
resources->progress_text = resources->text_default;
resources->meter_font_color = resources->default_text_color;
- resources->menu_light = BlackEightFive; // the following four are overwritten by graphics
- resources->menu_down = ALARM; //
- resources->menu_up = ALARM; //
- resources->menu_shadow = ALARM; //
+ // the following four are overwritten by graphics
+ resources->menu_light = BlackEightFive;
+ resources->menu_down = ALARM;
+ resources->menu_up = ALARM;
+ resources->menu_shadow = ALARM;
- resources->menu_highlighted = BabyBlue; //
+ resources->menu_highlighted = BabyBlue;
resources->popupmenu_margin = 15; // indent, moves the button text to the right
resources->popupmenu_triangle_margin = 15;
resources->listbox_title_margin = 15; // [20] indent
resources->listbox_title_hotspot = 15; // [20]
- resources->listbox_border2 = BlackNineTwo; // as text_border
- resources->listbox_border1 = BLACK;
- resources->listbox_border3 = BlackSevenTwo;
- resources->listbox_border4 = BlackNineTwo;
- // ../../guicast/bcresources.C:684:
- resources->listbox_border2_hi = BabyBlue; // highlighting on mouseover
- resources->listbox_border3_hi = BabyBlue;
+ resources->listbox_border2 = BlackNineTwo; // as text_border
+ resources->listbox_border1 = BLACK;
+ resources->listbox_border3 = BlackSevenTwo;
+ resources->listbox_border4 = BlackNineTwo;
+ // ../../guicast/bcresources.C:684, highlighting on mouseover
+ resources->listbox_border2_hi = BabyBlue;
+ resources->listbox_border3_hi = BabyBlue;
resources->listbox_highlighted = BabyBlue; // recources, loadfiles
- resources->listbox_inactive = BlackNineTwo; // background
- resources->listbox_bg = 0; // see ../theme_blond_cv/blondcvtheme.C:249
- resources->listbox_text = CreamyWhite; //
- resources->listbox_selected = 0x3d5477; // approximately matches column_hi
+ resources->listbox_inactive = BlackNineTwo; // background
+ resources->listbox_bg = 0; // s.a. ../theme_blond_cv/blondcvtheme.C:249
+ resources->listbox_text = CreamyWhite;
+ resources->listbox_selected = 0x3d5477; // approximately matches column_hi
resources->filebox_margin = 130; // [130]
resources->file_color = WHITE;
resources->directory_color = BabyBlue;
- // Footage in the timeline
- title_font = MEDIUMFONT; // ../../guicast/fonts.h
+ // Footage in the timeline
+ title_font = MEDIUMFONT;
title_color = WHITE;
- // Because the colors of the text in the list are fixed. So it is at least uniform.
- recordgui_fixed_color = YELLOW; //
- recordgui_variable_color = RED; // [RED]
+ /* Because the colors of the text in the list are fixed.
+ So it is at least uniform. */
+ recordgui_fixed_color = YELLOW;
+ recordgui_variable_color = RED;
- channel_position_color = ComicYellow; // Set Format, speaker numbers
+ channel_position_color = ComicYellow; // Set Format, speaker numbers
resources->meter_title_w = 25;
- // (asset) edit info text color
- edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282
- assetedit_color = CreamyWhiteBright; // variable attributes
+ // (asset) edit info text color
+ edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282
+ assetedit_color = CreamyWhiteBright; // variable attributes
- // flash_color = ALARM; // ../../cinelerra/recordgui.C:135
- timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73
+ // flash_color = ALARM; // ../../cinelerra/recordgui.C:135
+ timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73
- // tooltip ../../guicast/bcresources.C:786
- resources->tooltip_bg_color = CreamyWhiteBright;
- // resources->tooltip_fg_color = ALARM; // undefined.
- resources->tooltip_delay = 1500; // [1000]
+ // tooltip ../../guicast/bcresources.C:786
+ resources->tooltip_bg_color = CreamyWhiteBright;
+ // resources->tooltip_fg_color = ALARM; // undefined.
+ resources->tooltip_delay = 1500; // [1000]
- // Waveform of audio tracks.
- // Instead of squeaky [GREEN]. This three are soft, warm and matte.
- // 848661 beige
- // 6d876f green
- // 665f8a purple
+ /* Waveform of audio tracks.
+ Instead of squeaky [GREEN]. This three are soft, warm and matte:
+ 848661 beige, 6d876f green, 665f8a purple */
audio_color = 0x6d876f;
- // Resources: the text overlay location display. What for?
- // Affects a) Preferences, Performace: BR "Video" (text).
- // b) Render.
- resources->audiovideo_color = CreamyWhite; // BlackNineTwo;
+ /* Resources: the text overlay location display. Affects
+ a) Preferences, Performace: BR "Video" (text).
+ b) Render. */
+ resources->audiovideo_color = CreamyWhite; // BlackNineTwo;
- // ../../guicast/bcresources.C-781 ff.: Delays must all be different for repeaters
- resources->blink_rate = 750; // [250] - we're not on the run.
+ /* ../../guicast/bcresources.C:781 ff.
+ Delays must all be different for repeaters */
+ resources->blink_rate = 750; // [250] - we're not on the run.
+
+ // ../../cinelerra/theme.C:87
+ clock_fg_color = ComicYellow;
+ // clock_bg_color = ALARM; // see vclock
- // ../../cinelerra/theme.C:87
- // clock_bg_color = BLACK; // -> vclock
- clock_fg_color = ComicYellow;
-
new_toggle(
- "loadmode_new.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_new");
+ "loadmode_new.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_new");
new_toggle(
- "loadmode_none.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_none");
+ "loadmode_none.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_none");
new_toggle(
- "loadmode_newcat.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_newcat");
+ "loadmode_newcat.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_newcat");
new_toggle(
- "loadmode_cat.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_cat");
+ "loadmode_cat.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_cat");
new_toggle(
- "loadmode_newtracks.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_newtracks");
+ "loadmode_newtracks.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_newtracks");
new_toggle(
- "loadmode_paste.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_paste");
+ "loadmode_paste.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_paste");
new_toggle(
- "loadmode_resource.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_resource");
+ "loadmode_resource.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_resource");
new_toggle(
- "loadmode_nested.png",
- "loadmode_up.png",
- "loadmode_hi.png",
- "loadmode_checked.png",
- "loadmode_dn.png",
- "loadmode_checkedhi.png",
- "loadmode_nested");
-
+ "loadmode_nested.png",
+ "loadmode_up.png",
+ "loadmode_hi.png",
+ "loadmode_checked.png",
+ "loadmode_dn.png",
+ "loadmode_checkedhi.png",
+ "loadmode_nested");
resources->filebox_icons_images = new_button(
- "icons.png",
- "fileboxbutton_up.png",
- "fileboxbutton_hi.png",
- "fileboxbutton_dn.png",
- "filebox_icons");
-
- resources->filebox_text_images = new_button("text.png",
+ "icons.png",
+ "fileboxbutton_up.png",
+ "fileboxbutton_hi.png",
+ "fileboxbutton_dn.png",
+ "filebox_icons");
+ resources->filebox_text_images = new_button(
+ "text.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_text");
-
- resources->filebox_newfolder_images = new_button("folder.png",
+ resources->filebox_newfolder_images = new_button(
+ "folder.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_newfolder");
-
- resources->filebox_rename_images = new_button("rename.png",
+ resources->filebox_rename_images = new_button(
+ "rename.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_rename");
-
- resources->filebox_updir_images = new_button("updir.png",
+ resources->filebox_updir_images = new_button(
+ "updir.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_updir");
-
- resources->filebox_delete_images = new_button("delete.png",
+ resources->filebox_delete_images = new_button(
+ "delete.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_delete");
-
- resources->filebox_reload_images = new_button("reload.png",
+ resources->filebox_reload_images = new_button(
+ "reload.png",
"fileboxbutton_up.png",
"fileboxbutton_hi.png",
"fileboxbutton_dn.png",
"filebox_reload");
-
- resources->filebox_descend_images = new_button("openfolder.png",
+ resources->filebox_descend_images = new_button(
+ "openfolder.png",
"filebox_bigbutton_up.png",
"filebox_bigbutton_hi.png",
"filebox_bigbutton_dn.png",
"filebox_descend");
-
- resources->usethis_button_images =
- resources->ok_images = new_button("ok.png",
+ resources->usethis_button_images = resources->ok_images = new_button(
+ "ok.png",
"filebox_bigbutton_up.png",
"filebox_bigbutton_hi.png",
"filebox_bigbutton_dn.png",
"ok_button");
-
- new_button("ok.png",
+ new_button(
+ "ok.png",
"new_bigbutton_up.png",
"new_bigbutton_hi.png",
"new_bigbutton_dn.png",
"new_ok_images");
-
- resources->cancel_images = new_button("cancel.png",
+ resources->cancel_images = new_button(
+ "cancel.png",
"filebox_bigbutton_up.png",
"filebox_bigbutton_hi.png",
"filebox_bigbutton_dn.png",
"cancel_button");
-
- new_button("cancel.png",
+ new_button(
+ "cancel.png",
"new_bigbutton_up.png",
"new_bigbutton_hi.png",
"new_bigbutton_dn.png",
"new_cancel_images");
-
- // Clock - is not used (AFAIK). See also clock color.
+ // Clock - is not used (AFAIK). See also clock color.
// resources->medium_7segment = new_image_set(TOTAL_7SEGMENT,
- // "0.png",
+ // "0.png",
// "1.png",
// "2.png",
// "3.png",
resources->min_menu_w = 96;
resources->menu_popup_bg = new_image("menu_popup_bg.png");
- resources->menu_item_bg = new_image_set(3,
+ resources->menu_item_bg = new_image_set(
+ 3,
"menuitem_up.png",
"menuitem_hi.png",
"menuitem_dn.png");
resources->menu_bar_bg = new_image("menubar_bg.png");
- resources->menu_title_bg = new_image_set(3,
- "menubar_up.png",
- "menubar_hi.png",
- "menubar_dn.png");
-
+ resources->menu_title_bg = new_image_set
+ (3,
+ "menubar_up.png",
+ "menubar_hi.png",
+ "menubar_dn.png");
resources->popupmenu_images = 0;
-// new_image_set(3,
-// "menupopup_up.png",
-// "menupopup_hi.png",
-// "menupopup_dn.png");
-
- resources->toggle_highlight_bg = new_image("toggle_highlight_bg",
+ // new_image_set(3,
+ // "menupopup_up.png",
+ // "menupopup_hi.png",
+ // "menupopup_dn.png");
+ resources->toggle_highlight_bg = new_image(
+ "toggle_highlight_bg",
"text_highlight.png");
-
- resources->generic_button_images = new_image_set(3,
- "generic_up.png",
- "generic_hi.png",
- "generic_dn.png");
- resources->horizontal_slider_data = new_image_set(6,
- "hslider_fg_up.png",
- "hslider_fg_hi.png",
- "hslider_fg_dn.png",
- "hslider_bg_up.png",
- "hslider_bg_hi.png",
- "hslider_bg_dn.png");
- resources->vertical_slider_data = new_image_set(6,
- "hslider_fg_up.png",
- "hslider_fg_hi.png",
- "hslider_fg_dn.png",
- "hslider_bg_up.png",
- "hslider_bg_hi.png",
- "hslider_bg_dn.png");
+ resources->generic_button_images = new_image_set(
+ 3,
+ "generic_up.png",
+ "generic_hi.png",
+ "generic_dn.png");
+ resources->horizontal_slider_data = new_image_set(
+ 6,
+ "hslider_fg_up.png",
+ "hslider_fg_hi.png",
+ "hslider_fg_dn.png",
+ "hslider_bg_up.png",
+ "hslider_bg_hi.png",
+ "hslider_bg_dn.png");
+ resources->vertical_slider_data = new_image_set(
+ 6,
+ "hslider_fg_up.png",
+ "hslider_fg_hi.png",
+ "hslider_fg_dn.png",
+ "hslider_bg_up.png",
+ "hslider_bg_hi.png",
+ "hslider_bg_dn.png");
+
for( int i=0; i<6; ++i )
resources->vertical_slider_data[i]->rotate90();
- resources->progress_images = new_image_set(2,
- "progress_bg.png",
- "progress_hi.png");
- resources->tumble_data = new_image_set(4,
+ resources->progress_images = new_image_set(
+ 2,
+ "progress_bg.png",
+ "progress_hi.png");
+ resources->tumble_data = new_image_set(
+ 4,
"tumble_up.png",
"tumble_hi.png",
"tumble_bottom.png",
"tumble_top.png");
- resources->listbox_button = new_button4("listbox_button.png",
+ resources->listbox_button = new_button4(
+ "listbox_button.png",
"editpanel_up.png",
"editpanel_hi.png",
"editpanel_dn.png",
"editpanel_hi.png",
"listbox_button");
-
- // Dialog "Load files…" switch SI/IEC
- resources->filebox_szfmt_images = new_image_set(12,
- "file_size_capb_up.png",
- "file_size_capb_hi.png",
- "file_size_capb_dn.png",
- "file_size_semi_up.png",
- "file_size_semi_hi.png",
- "file_size_semi_dn.png",
- "file_size_lwrb_up.png",
- "file_size_lwrb_hi.png",
- "file_size_lwrb_dn.png",
- "file_size_zero_up.png",
- "file_size_zero_hi.png",
- "file_size_zero_dn.png");
-
- resources->listbox_column = new_image_set(3,
+ // Dialog "Load files…" switch SI/IEC
+ resources->filebox_szfmt_images = new_image_set(
+ 12,
+ "file_size_capb_up.png",
+ "file_size_capb_hi.png",
+ "file_size_capb_dn.png",
+ "file_size_semi_up.png",
+ "file_size_semi_hi.png",
+ "file_size_semi_dn.png",
+ "file_size_lwrb_up.png",
+ "file_size_lwrb_hi.png",
+ "file_size_lwrb_dn.png",
+ "file_size_zero_up.png",
+ "file_size_zero_hi.png",
+ "file_size_zero_dn.png");
+ resources->listbox_column = new_image_set(
+ 3,
"column_up.png",
"column_hi.png",
"column_dn.png");
resources->listbox_up = new_image("listbox_up.png");
resources->listbox_dn = new_image("listbox_dn.png");
- resources->pan_data = new_image_set(7,
- "pan_up.png",
- "pan_hi.png",
- "pan_popup.png",
- "pan_channel.png",
- "pan_stick.png",
- "pan_channel_small.png",
- "pan_stick_small.png");
+ resources->pan_data = new_image_set(
+ 7,
+ "pan_up.png",
+ "pan_hi.png",
+ "pan_popup.png",
+ "pan_channel.png",
+ "pan_stick.png",
+ "pan_channel_small.png",
+ "pan_stick_small.png");
resources->pan_text_color = CreamyWhiteBright;
-
- resources->pot_images = new_image_set(3,
+ resources->pot_images = new_image_set(
+ 3,
"pot_up.png",
"pot_hi.png",
"pot_dn.png");
-
- resources->checkbox_images = new_image_set(5,
+ resources->checkbox_images = new_image_set(
+ 5,
"checkbox_up.png",
"checkbox_hi.png",
"checkbox_checked.png",
"checkbox_dn.png",
"checkbox_checkedhi.png");
-
- resources->radial_images = new_image_set(5,
+ resources->radial_images = new_image_set(
+ 5,
"radial_up.png",
"radial_hi.png",
"radial_checked.png",
"radial_dn.png",
"radial_checkedhi.png");
-
- resources->xmeter_images = new_image_set(7,
+ resources->xmeter_images = new_image_set(
+ 7,
"xmeter_normal.png",
"xmeter_green.png",
"xmeter_red.png",
"xmeter_white.png",
"xmeter_over.png",
"downmix51_2.png");
- resources->ymeter_images = new_image_set(7,
+ resources->ymeter_images = new_image_set(
+ 7,
"ymeter_normal.png",
"ymeter_green.png",
"ymeter_red.png",
"ymeter_white.png",
"ymeter_over.png",
"downmix51_2.png");
-
- resources->hscroll_data = new_image_set(10,
- "hscroll_handle_up.png",
- "hscroll_handle_hi.png",
- "hscroll_handle_dn.png",
- "hscroll_handle_bg.png",
- "hscroll_left_up.png",
- "hscroll_left_hi.png",
- "hscroll_left_dn.png",
- "hscroll_right_up.png",
- "hscroll_right_hi.png",
- "hscroll_right_dn.png");
-
- resources->vscroll_data = new_image_set(10,
- "vscroll_handle_up.png",
- "vscroll_handle_hi.png",
- "vscroll_handle_dn.png",
- "vscroll_handle_bg.png",
- "vscroll_left_up.png",
- "vscroll_left_hi.png",
- "vscroll_left_dn.png",
- "vscroll_right_up.png",
- "vscroll_right_hi.png",
- "vscroll_right_dn.png");
+ resources->hscroll_data = new_image_set(
+ 10,
+ "hscroll_handle_up.png",
+ "hscroll_handle_hi.png",
+ "hscroll_handle_dn.png",
+ "hscroll_handle_bg.png",
+ "hscroll_left_up.png",
+ "hscroll_left_hi.png",
+ "hscroll_left_dn.png",
+ "hscroll_right_up.png",
+ "hscroll_right_hi.png",
+ "hscroll_right_dn.png");
+ resources->vscroll_data = new_image_set(
+ 10,
+ "vscroll_handle_up.png",
+ "vscroll_handle_hi.png",
+ "vscroll_handle_dn.png",
+ "vscroll_handle_bg.png",
+ "vscroll_left_up.png",
+ "vscroll_left_hi.png",
+ "vscroll_left_dn.png",
+ "vscroll_right_up.png",
+ "vscroll_right_hi.png",
+ "vscroll_right_dn.png");
resources->scroll_minhandle = 20;
-
- new_button("prevtip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
- new_button("nexttip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
- new_button("closetip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
- new_button("swap_extents.png",
- "editpanel_up.png",
- "editpanel_hi.png",
- "editpanel_dn.png",
- "swap_extents");
-
-// Record windows
+
+ new_button(
+ "prevtip.png", "tipbutton_up.png",
+ "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
+ new_button(
+ "nexttip.png", "tipbutton_up.png",
+ "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
+ new_button(
+ "closetip.png", "tipbutton_up.png",
+ "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
+ new_button(
+ "swap_extents.png", "editpanel_up.png",
+ "editpanel_hi.png", "editpanel_dn.png", "swap_extents");
+
+ // Record windows
preferences_category_overlap = 0;
preferencescategory_x = 0;
preferencescategory_y = 5;
preferencesoptions_x = 5;
preferencesoptions_y = 0;
-// MWindow
+ // MWindow
message_normal = resources->text_default;
- mtransport_margin = 10;
+ mtransport_margin = 10;
toggle_margin = 10;
- new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png", "pane");
- new_image_set("xpane", 3, "xpane_up.png", "xpane_hi.png", "xpane_dn.png");
- new_image_set("ypane", 3, "ypane_up.png", "ypane_hi.png", "ypane_dn.png");
+ new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png",
+ "pane");
+ new_image_set("xpane", 3,
+ "xpane_up.png",
+ "xpane_hi.png",
+ "xpane_dn.png");
+ new_image_set("ypane", 3,
+ "ypane_up.png",
+ "ypane_hi.png",
+ "ypane_dn.png");
new_image("mbutton_bg", "mbutton_bg.png");
new_image("timebar_bg", "timebar_bg_flat.png");
new_image("clock_bg", "mclock_flat.png");
new_image("patchbay_bg", "patchbay_bg.png");
new_image("statusbar", "statusbar.png");
-// new_image("mscroll_filler", "mscroll_filler.png");
-
- new_image_set("zoombar_menu", 3, "zoompopup_up.png", "zoompopup_hi.png", "zoompopup_dn.png");
- new_image_set("zoombar_tumbler", 4, "zoomtumble_up.png", "zoomtumble_hi.png", "zoomtumble_bottom.png", "zoomtumble_top.png");
-
- new_image_set("mode_popup", 3, "mode_up.png", "mode_hi.png", "mode_dn.png");
+ // new_image("mscroll_filler", "mscroll_filler.png");
+
+ new_image_set("zoombar_menu", 3,
+ "zoompopup_up.png",
+ "zoompopup_hi.png",
+ "zoompopup_dn.png");
+ new_image_set("zoombar_tumbler", 4,
+ "zoomtumble_up.png",
+ "zoomtumble_hi.png",
+ "zoomtumble_bottom.png",
+ "zoomtumble_top.png");
+
+ new_image_set("mode_popup", 3,
+ "mode_up.png", "mode_hi.png", "mode_dn.png");
new_image("mode_add", "mode_add.png");
new_image("mode_divide", "mode_divide.png");
new_image("mode_multiply", "mode_multiply.png");
new_image("mode_subtract", "mode_subtract.png");
new_image("mode_max", "mode_max.png");
- new_image_set("plugin_on", 5, "plugin_on.png", "plugin_onhi.png", "plugin_onselect.png", "plugin_ondn.png", "plugin_onselecthi.png");
- new_image_set("plugin_show", 5, "plugin_show.png", "plugin_showhi.png", "plugin_showselect.png", "plugin_showdn.png", "plugin_showselecthi.png");
-
- // Mixer
- new_image_set("mixpatch_data", 5, "mixpatch_up.png", "mixpatch_hi.png", "mixpatch_checked.png", "mixpatch_dn.png", "mixpatch_checkedhi.png");
-
-// CWindow
+ new_image_set("plugin_on", 5,
+ "plugin_on.png",
+ "plugin_onhi.png",
+ "plugin_onselect.png",
+ "plugin_ondn.png",
+ "plugin_onselecthi.png");
+ new_image_set("plugin_show", 5,
+ "plugin_show.png",
+ "plugin_showhi.png",
+ "plugin_showselect.png",
+ "plugin_showdn.png",
+ "plugin_showselecthi.png");
+
+ // Mixer
+ new_image_set("mixpatch_data", 5,
+ "mixpatch_up.png",
+ "mixpatch_hi.png",
+ "mixpatch_checked.png",
+ "mixpatch_dn.png",
+ "mixpatch_checkedhi.png");
+
+ // CWindow
new_image("cpanel_bg", "cpanel_bg.png");
new_image("cbuttons_left", "cbuttons_left.png");
new_image("cbuttons_right", "cbuttons_right.png");
new_image("cmeter_bg", "cmeter_bg.png");
-
-// VWindow
+
+ // VWindow
+ /* The red position indicator is currently only 5 px high.
+ The backgrounds were made according to this. */
new_image("vbuttons_left", "vbuttons_left.png");
+ new_image("vbuttons_right", "vbuttons_right.png"); // unset = cbuttons_right
new_image("vclock", "vclock.png");
-
+ //new_image("vmeter_bg", ".png"); // !
+
new_image("preferences_bg", "preferences_bg.png");
new_image("new_bg", "new_bg.png");
setformat_h = get_image("setformat_bg")->get_h();
setformat_x1 = 15;
setformat_x2 = 110;
-
setformat_x3 = 315;
setformat_x4 = 425;
setformat_y1 = 20;
browse_pad = 20;
new_toggle("playpatch.png",
- "playpatch_up.png",
- "playpatch_hi.png",
- "playpatch_checked.png",
- "playpatch_dn.png",
- "playpatch_checkedhi.png",
- "playpatch_data");
-
+ "playpatch_up.png",
+ "playpatch_hi.png",
+ "playpatch_checked.png",
+ "playpatch_dn.png",
+ "playpatch_checkedhi.png",
+ "playpatch_data");
new_toggle("recordpatch.png",
- "recordpatch_up.png",
- "recordpatch_hi.png",
- "recordpatch_checked.png",
- "recordpatch_dn.png",
- "recordpatch_checkedhi.png",
- "recordpatch_data");
-
+ "recordpatch_up.png",
+ "recordpatch_hi.png",
+ "recordpatch_checked.png",
+ "recordpatch_dn.png",
+ "recordpatch_checkedhi.png",
+ "recordpatch_data");
new_toggle("gangpatch.png",
- "patch_up.png",
- "patch_hi.png",
- "patch_checked.png",
- "patch_dn.png",
- "patch_checkedhi.png",
- "gangpatch_data");
-
+ "patch_up.png",
+ "patch_hi.png",
+ "patch_checked.png",
+ "patch_dn.png",
+ "patch_checkedhi.png",
+ "gangpatch_data");
new_toggle("drawpatch.png",
- "patch_up.png",
- "patch_hi.png",
- "patch_checked.png",
- "patch_dn.png",
- "patch_checkedhi.png",
- "drawpatch_data");
+ "patch_up.png",
+ "patch_hi.png",
+ "patch_checked.png",
+ "patch_dn.png",
+ "patch_checkedhi.png",
+ "drawpatch_data");
new_image_set("mutepatch_data",
- 5,
- "mutepatch_up.png",
- "mutepatch_hi.png",
- "mutepatch_checked.png",
- "mutepatch_dn.png",
- "mutepatch_checkedhi.png");
-
+ 5,
+ "mutepatch_up.png",
+ "mutepatch_hi.png",
+ "mutepatch_checked.png",
+ "mutepatch_dn.png",
+ "mutepatch_checkedhi.png");
new_image_set("expandpatch_data",
- 5,
- "expandpatch_up.png",
- "expandpatch_hi.png",
- "expandpatch_checked.png",
- "expandpatch_dn.png",
- "expandpatch_checkedhi.png");
+ 5,
+ "expandpatch_up.png",
+ "expandpatch_hi.png",
+ "expandpatch_checked.png",
+ "expandpatch_dn.png",
+ "expandpatch_checkedhi.png");
build_bg_data();
build_overlays();
- out_point = new_image_set(5,
+ out_point = new_image_set(
+ 5,
"out_up.png",
"out_hi.png",
"out_checked.png",
"out_dn.png",
"out_checkedhi.png");
- in_point = new_image_set(5,
+ in_point = new_image_set(
+ 5,
"in_up.png",
"in_hi.png",
"in_checked.png",
"in_dn.png",
"in_checkedhi.png");
-
- label_toggle = new_image_set(5,
+ label_toggle = new_image_set(
+ 5,
"labeltoggle_up.png",
"labeltoggle_uphi.png",
"label_checked.png",
"labeltoggle_dn.png",
"label_checkedhi.png");
-
- ffmpeg_toggle = new_image_set(5,
+ ffmpeg_toggle = new_image_set(
+ 5,
"ff_up.png",
"ff_hi.png",
"ff_checked.png",
"ff_down.png",
"ff_checkedhi.png");
-
- proxy_p_toggle = new_image_set(5,
+ proxy_p_toggle = new_image_set(
+ 5,
"proxy_p_up.png",
"proxy_p_hi.png",
"proxy_p_chkd.png",
"proxy_p_down.png",
"proxy_p_chkdhi.png");
-
- proxy_s_toggle = new_image_set(5, // proxy use ffmpeg scaler
+ proxy_s_toggle = new_image_set( // proxy use ffmpeg scaler
+ 5,
"proxy_s_up.png",
"proxy_s_hi.png",
"proxy_s_chkd.png",
"proxy_s_down.png",
"proxy_s_chkdhi.png");
-
- shbtn_data = new_image_set(3,
+ shbtn_data = new_image_set(
+ 3,
"shbtn_up.png",
"shbtn_hi.png",
"shbtn_dn.png");
-
- new_image_set("preset_edit",
+ new_image_set(
+ "preset_edit",
3,
"preset_edit0.png",
"preset_edit1.png",
"preset_edit2.png");
-
- new_image_set("histogram_carrot",
+ new_image_set(
+ "histogram_carrot",
5,
"histogram_carrot_up.png",
"histogram_carrot_hi.png",
"histogram_carrot_checked.png",
"histogram_carrot_dn.png",
"histogram_carrot_checkedhi.png");
-
- statusbar_cancel_data = new_image_set(3,
+ statusbar_cancel_data = new_image_set(
+ 3,
"statusbar_cancel_up.png",
"statusbar_cancel_hi.png",
"statusbar_cancel_dn.png");
VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
new_image("panel_divider", "panel_divider.png");
- new_button("bottom_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "bottom_justify");
- new_button("center_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "center_justify");
- new_button("channel.png", editpanel_up, editpanel_hi, editpanel_dn, "channel");
-
+ new_button("bottom_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "bottom_justify");
+ new_button("center_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "center_justify");
+ new_button("channel.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "channel");
new_toggle("histogram_toggle.png",
- editpanel_up,
- editpanel_hi,
- editpanel_checked,
- editpanel_dn,
- editpanel_checkedhi,
- "histogram_toggle");
+ editpanel_up,
+ editpanel_hi,
+ editpanel_checked,
+ editpanel_dn,
+ editpanel_checkedhi,
+ "histogram_toggle");
new_toggle("histogram_rgb.png",
- editpanel_up,
- editpanel_hi,
- editpanel_checked,
- editpanel_dn,
- editpanel_checkedhi,
- "histogram_rgb_toggle");
+ editpanel_up,
+ editpanel_hi,
+ editpanel_checked,
+ editpanel_dn,
+ editpanel_checkedhi,
+ "histogram_rgb_toggle");
new_toggle("waveform.png",
- editpanel_up,
- editpanel_hi,
- editpanel_checked,
- editpanel_dn,
- editpanel_checkedhi,
- "waveform_toggle");
+ editpanel_up,
+ editpanel_hi,
+ editpanel_checked,
+ editpanel_dn,
+ editpanel_checkedhi,
+ "waveform_toggle");
new_toggle("waveform_rgb.png",
- editpanel_up,
- editpanel_hi,
- editpanel_checked,
- editpanel_dn,
- editpanel_checkedhi,
- "waveform_rgb_toggle");
+ editpanel_up,
+ editpanel_hi,
+ editpanel_checked,
+ editpanel_dn,
+ editpanel_checkedhi,
+ "waveform_rgb_toggle");
new_toggle("scope.png",
- editpanel_up,
- editpanel_hi,
- editpanel_checked,
- editpanel_dn,
- editpanel_checkedhi,
- "scope_toggle");
-
- new_button("picture.png", editpanel_up, editpanel_hi, editpanel_dn, "picture");
- new_button("histogram_img.png", editpanel_up, editpanel_hi, editpanel_dn, "histogram_img");
-
- new_button("copy.png", editpanel_up, editpanel_hi, editpanel_dn, "copy");
- new_button("commercial.png", editpanel_up, editpanel_hi, editpanel_dn, "commercial"); // ?
- new_button("cut.png", editpanel_up, editpanel_hi, editpanel_dn, "cut");
- new_button("fit.png", editpanel_up, editpanel_hi, editpanel_dn, "fit");
- new_button("fitautos.png", editpanel_up, editpanel_hi, editpanel_dn, "fitautos");
- new_button("inpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "inbutton");
- new_button("label.png", editpanel_up, editpanel_hi, editpanel_dn, "labelbutton");
- new_button("left_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "left_justify");
- new_button("magnify.png", editpanel_up, editpanel_hi, editpanel_dn, "magnify_button");
- new_button("middle_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "middle_justify");
- new_button("nextlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "nextlabel");
- new_button("prevlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "prevlabel");
- new_button("nextedit.png", editpanel_up, editpanel_hi, editpanel_dn, "nextedit");
- new_button("prevedit.png", editpanel_up, editpanel_hi, editpanel_dn, "prevedit");
- new_button("outpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "outbutton");
- over_button = new_button("over.png", editpanel_up, editpanel_hi, editpanel_dn,"overbutton");
- overwrite_data = new_button("overwrite.png", editpanel_up, editpanel_hi, editpanel_dn,"overwritebutton");
- new_button("paste.png", editpanel_up, editpanel_hi, editpanel_dn, "paste");
- new_button("redo.png", editpanel_up, editpanel_hi, editpanel_dn, "redo");
- new_button("right_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "right_justify");
- splice_data = new_button("splice.png", editpanel_up, editpanel_hi, editpanel_dn,"splicebutton");
- new_button("toclip.png", editpanel_up, editpanel_hi, editpanel_dn, "toclip");
- new_button("goto.png", editpanel_up, editpanel_hi, editpanel_dn, "goto");
- new_button("top_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "top_justify");
- new_button("undo.png", editpanel_up, editpanel_hi, editpanel_dn, "undo");
- new_button("wrench.png", editpanel_up, editpanel_hi, editpanel_dn, "wrench");
+ editpanel_up,
+ editpanel_hi,
+ editpanel_checked,
+ editpanel_dn,
+ editpanel_checkedhi,
+ "scope_toggle");
+
+ new_button("picture.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "picture");
+ new_button("histogram_img.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "histogram_img");
+ new_button("copy.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "copy");
+ new_button("commercial.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "commercial"); // cdb
+ new_button("cut.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "cut");
+ new_button("fit.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "fit");
+ new_button("fitautos.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "fitautos");
+ new_button("inpoint.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "inbutton");
+ new_button("label.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "labelbutton");
+ new_button("left_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "left_justify");
+ new_button("magnify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "magnify_button");
+ new_button("middle_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "middle_justify");
+ new_button("nextlabel.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "nextlabel");
+ new_button("prevlabel.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "prevlabel");
+ new_button("nextedit.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "nextedit");
+ new_button("prevedit.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "prevedit");
+ new_button("outpoint.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "outbutton");
+ over_button = new_button("over.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "overbutton");
+ overwrite_data = new_button("overwrite.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "overwritebutton");
+ new_button("paste.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "paste");
+ new_button("redo.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "redo");
+ new_button("right_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "right_justify");
+ splice_data = new_button("splice.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "splicebutton");
+ new_button("toclip.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "toclip");
+ new_button("goto.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "goto");
+ new_button("top_justify.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "top_justify");
+ new_button("undo.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "undo");
+ new_button("wrench.png",
+ editpanel_up, editpanel_hi, editpanel_dn,
+ "wrench");
VFrame *transport_up = new_image("transportup.png");
VFrame *transport_hi = new_image("transporthi.png");
VFrame *transport_dn = new_image("transportdn.png");
- new_button("end.png", transport_up, transport_hi, transport_dn, "end");
- new_button("fastfwd.png", transport_up, transport_hi, transport_dn, "fastfwd");
- new_button("fastrev.png", transport_up, transport_hi, transport_dn, "fastrev");
- new_button("play.png", transport_up, transport_hi, transport_dn, "play");
- new_button("framefwd.png", transport_up, transport_hi, transport_dn, "framefwd");
- new_button("framerev.png", transport_up, transport_hi, transport_dn, "framerev");
- new_button("pause.png", transport_up, transport_hi, transport_dn, "pause");
- new_button("record.png", transport_up, transport_hi, transport_dn, "record");
- new_button("singleframe.png", transport_up, transport_hi, transport_dn, "recframe");
- new_button("reverse.png", transport_up, transport_hi, transport_dn, "reverse");
- new_button("rewind.png", transport_up, transport_hi, transport_dn, "rewind");
- new_button("stop.png", transport_up, transport_hi, transport_dn, "stop");
- new_button("stop.png", transport_up, transport_hi, transport_dn, "stoprec");
-
-// CWindow icons
+ new_button("end.png",
+ transport_up, transport_hi, transport_dn,
+ "end");
+ new_button("fastfwd.png",
+ transport_up, transport_hi, transport_dn,
+ "fastfwd");
+ new_button("fastrev.png",
+ transport_up, transport_hi, transport_dn,
+ "fastrev");
+ new_button("play.png",
+ transport_up, transport_hi, transport_dn,
+ "play");
+ new_button("framefwd.png",
+ transport_up, transport_hi, transport_dn,
+ "framefwd");
+ new_button("framerev.png",
+ transport_up, transport_hi, transport_dn,
+ "framerev");
+ new_button("pause.png",
+ transport_up, transport_hi, transport_dn,
+ "pause");
+ new_button("record.png",
+ transport_up, transport_hi, transport_dn,
+ "record");
+ new_button("singleframe.png",
+ transport_up, transport_hi, transport_dn,
+ "recframe");
+ new_button("reverse.png",
+ transport_up, transport_hi, transport_dn,
+ "reverse");
+ new_button("rewind.png",
+ transport_up, transport_hi, transport_dn,
+ "rewind");
+ new_button("stop.png",
+ transport_up, transport_hi, transport_dn,
+ "stop");
+ new_button("stop.png",
+ transport_up, transport_hi, transport_dn,
+ "stoprec");
+
+ // CWindow icons
new_image("cwindow_inactive", "cwindow_inactive.png");
new_image("cwindow_active", "cwindow_active.png");
new_image_set("category_button",
- 3,
- "preferencesbutton_dn.png",
- "preferencesbutton_dnhi.png",
- "preferencesbutton_dnlo.png");
-
+ 3,
+ "preferencesbutton_dn.png",
+ "preferencesbutton_dnhi.png",
+ "preferencesbutton_dnlo.png");
new_image_set("category_button_checked",
- 3,
- "preferencesbutton_up.png",
- "preferencesbutton_uphi.png",
- "preferencesbutton_dnlo.png");
-
+ 3,
+ "preferencesbutton_up.png",
+ "preferencesbutton_uphi.png",
+ "preferencesbutton_dnlo.png");
new_image_set("color3way_point",
- 3,
- "color3way_up.png",
- "color3way_hi.png",
- "color3way_dn.png");
-
- new_toggle("arrow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "arrow");
- new_toggle("autokeyframe.png", transport_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "autokeyframe");
- new_toggle("ibeam.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "ibeam");
- new_toggle("show_meters.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "meters");
+ 3,
+ "color3way_up.png",
+ "color3way_hi.png",
+ "color3way_dn.png");
+
+ new_toggle("arrow.png",
+ editpanel_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "arrow");
+ new_toggle("autokeyframe.png",
+ transport_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "autokeyframe");
+ new_toggle("ibeam.png",
+ editpanel_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "ibeam");
+ new_toggle("show_meters.png",
+ editpanel_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "meters");
new_toggle("blank30x30.png",
- new_image("locklabels_locked.png"),
- new_image("locklabels_lockedhi.png"),
- new_image("locklabels_unlocked.png"),
- new_image("locklabels_dn.png"), // can't have seperate down for each!!??
- new_image("locklabels_unlockedhi.png"),
- "locklabels");
+ new_image("locklabels_locked.png"),
+ new_image("locklabels_lockedhi.png"),
+ new_image("locklabels_unlocked.png"),
+ new_image("locklabels_dn.png"), // can't have seperate down for each!!??
+ new_image("locklabels_unlockedhi.png"),
+ "locklabels");
VFrame *cpanel_up = new_image("cpanel_up.png");
VFrame *cpanel_hi = new_image("cpanel_hi.png");
VFrame *cpanel_checked = new_image("cpanel_checked.png");
VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png");
- new_toggle("camera.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "camera");
- new_toggle("crop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "crop");
- new_toggle("eyedrop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "eyedrop");
- new_toggle("magnify.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "magnify");
- new_toggle("mask.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "mask");
- new_toggle("ruler.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "ruler");
- new_toggle("projector.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "projector");
- new_toggle("protect.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "protect");
- new_toggle("titlesafe.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "titlesafe");
- new_toggle("toolwindow.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "tool");
-
+ new_toggle("camera.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "camera");
+ new_toggle("crop.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "crop");
+ new_toggle("eyedrop.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "eyedrop");
+ new_toggle("magnify.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "magnify");
+ new_toggle("mask.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "mask");
+ new_toggle("ruler.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "ruler");
+ new_toggle("projector.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "projector");
+ new_toggle("protect.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "protect");
+ new_toggle("titlesafe.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "titlesafe");
+ new_toggle("toolwindow.png",
+ cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
+ "tool");
// toggle for tangent mode (compositor/tool window)
- new_toggle("tan_smooth.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_smooth");
- new_toggle("tan_linear.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_linear");
+ new_toggle("tan_smooth.png",
+ editpanel_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "tan_smooth");
+ new_toggle("tan_linear.png",
+ editpanel_up, editpanel_hi, editpanel_checked,
+ editpanel_dn, editpanel_checkedhi,
+ "tan_linear");
flush_images();
-
}
-// BD: CWINDOW is probalby ComposerWindow, V=ViewerWindow
-#define VWINDOW_METER_MARGIN 5
-//#define CWINDOW_METER_MARGIN 5
+// Re-align the Clock. theme.c:931
+void NEOPHYTETHEME::get_vwindow_sizes(VWindowGUI *gui)
+{
+ int edit_w = EditPanel::calculate_w(mwindow, 0, 10);
+ int transport_w = PlayTransport::get_transport_width(mwindow) + toggle_margin;
+ vtimebar_h = 16; // The height of the position indicator
+ int division_w = 30;
+
+ /* For the deco, [150]-10. The remaining space should theoretically
+ suffice for 999,999:59:59.960 hours. Total size: 140 x 26, where
+ a height of 24 or 22 px would be nicer. */
+ vtime_w = 140;
+
+ /* Indent, flat. Larger indentation also puts
+ the 35% view into the compact view. */
+ int vtime_border = 15;
+
+ vmeter_y = widget_border;
+ vmeter_h = mwindow->session->vwindow_h - cmeter_y - widget_border;
+
+ int buttons_h;
+ if (mwindow->edl->session->vwindow_meter) {
+ vmeter_x = mwindow->session->vwindow_w -
+ MeterPanel::get_meters_width(this,
+ mwindow->edl->session->audio_channels,
+ mwindow->edl->session->vwindow_meter);
+ } else {
+ vmeter_x = mwindow->session->vwindow_w + widget_border;
+ }
+
+ vcanvas_x = 0;
+ vcanvas_y = 0;
+ vcanvas_w = vmeter_x - vcanvas_x - widget_border;
+
+ if (edit_w +
+ widget_border * 2 +
+ transport_w + widget_border +
+ vtime_w + division_w +
+ vtime_border > vmeter_x) {
+ buttons_h = get_image("vbuttons_left")->get_h();
+ vedit_x = widget_border;
+ vedit_y = mwindow->session->vwindow_h -
+ buttons_h +
+ vtimebar_h +
+ widget_border;
+
+ vtransport_x = widget_border;
+ vtransport_y = mwindow->session->vwindow_h -
+ get_image_set("autokeyframe")[0]->get_h() -
+ widget_border;
+
+ vdivision_x = 280; // field width, compact
+ vtime_x = vedit_x + 38; // concentric
+ vtime_y = vedit_y + 24; // vertical alignment
+ } else {
+ buttons_h = vtimebar_h +
+ widget_border +
+ EditPanel::calculate_h(mwindow) +
+ widget_border;
+ vtransport_x = widget_border;
+ vtransport_y = mwindow->session->vwindow_h -
+ buttons_h +
+ vtimebar_h +
+ widget_border;
+
+ vedit_x = vtransport_x + transport_w + widget_border;
+ vedit_y = vtransport_y;
+
+ vdivision_x = vedit_x + edit_w + division_w;
+ vtime_x = vdivision_x + vtime_border;
+ vtime_y = vedit_y + widget_border - 7; // vertical height concentric at button height
+ }
+
+ // vtimebar_x = vcanvas_x;
+ // vtimebar_y = vcanvas_y + vcanvas_h;
+ // vtimebar_w = vcanvas_w;
+
+ vcanvas_h = mwindow->session->vwindow_h - buttons_h;
+ vtimebar_x = 0;
+ vtimebar_y = vcanvas_y + vcanvas_h;
+ vtimebar_w = vmeter_x - widget_border;
+}
void NEOPHYTETHEME::build_bg_data()
{
-// Audio settings
+ // Audio settings
channel_position_data = new VFramePng(get_image_data("channel_position.png"));
-
-// Track bitmaps
+ // Track bitmaps
new_image("resource1024", "resource1024.png");
new_image("resource512", "resource512.png");
new_image("resource256", "resource256.png");
keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
- modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
+ modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
}
void NEOPHYTETHEME::draw_rwindow_bg(RecordGUI *gui)
{
-// int y;
-// int margin = 50;
-// int margin2 = 80;
-// gui->draw_9segment(recordgui_batch_x - margin,
-// 0,
-// mwindow->session->rwindow_w - recordgui_status_x + margin,
-// recordgui_buttons_y,
-// rgui_batch);
-// gui->draw_3segmenth(recordgui_options_x - margin2,
-// recordgui_buttons_y - 5,
-// mwindow->session->rwindow_w - recordgui_options_x + margin2,
-// rgui_controls);
-// y = recordgui_buttons_y - 5 + rgui_controls->get_h();
-// gui->draw_9segment(0,
-// y,
-// mwindow->session->rwindow_w,
-// mwindow->session->rwindow_h - y,
-// rgui_list);
+ // int y;
+ // int margin = 50;
+ // int margin2 = 80;
+ // gui->draw_9segment(recordgui_batch_x - margin,
+ // 0,
+ // mwindow->session->rwindow_w - recordgui_status_x + margin,
+ // recordgui_buttons_y,
+ // rgui_batch);
+ // gui->draw_3segmenth(recordgui_options_x - margin2,
+ // recordgui_buttons_y - 5,
+ // mwindow->session->rwindow_w - recordgui_options_x + margin2,
+ // rgui_controls);
+ // y = recordgui_buttons_y - 5 + rgui_controls->get_h();
+ // gui->draw_9segment(0,
+ // y,
+ // mwindow->session->rwindow_w,
+ // mwindow->session->rwindow_h - y,
+ // rgui_list);
}
void NEOPHYTETHEME::draw_rmonitor_bg(RecordMonitorGUI *gui)
{
-// int margin = 45;
-// int panel_w = 300;
-// int x = rmonitor_meter_x - margin;
-// int w = mwindow->session->rmonitor_w - x;
-// if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
-// gui->clear_box(0,
-// 0,
-// mwindow->session->rmonitor_w,
-// mwindow->session->rmonitor_h);
-// gui->draw_9segment(x,
-// 0,
-// w,
-// mwindow->session->rmonitor_h,
-// rmonitor_meters);
+ // int margin = 45;
+ // int panel_w = 300;
+ // int x = rmonitor_meter_x - margin;
+ // int w = mwindow->session->rmonitor_w - x;
+ // if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
+ // gui->clear_box(0,
+ // 0,
+ // mwindow->session->rmonitor_w,
+ // mwindow->session->rmonitor_h);
+ // gui->draw_9segment(x,
+ // 0,
+ // w,
+ // mwindow->session->rmonitor_h,
+ // rmonitor_meters);
}
void NEOPHYTETHEME::draw_mwindow_bg(MWindowGUI *gui)
{
-// Button bar
+ // Button bar
gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1,
- gui->menu_w(), get_image("mbutton_bg"));
+ gui->menu_w(), get_image("mbutton_bg"));
int pdw = get_image("panel_divider")->get_w();
int x = mbuttons_x;
x += 9 * get_image("play")->get_w();
- x += mtransport_margin; // the control buttons
+ x += mtransport_margin; // the control buttons
gui->draw_vframe(get_image("panel_divider"),
- x - toggle_margin / 2 - pdw / 2 + 2,
- mbuttons_y - 1);
- x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons
+ x - toggle_margin / 2 - pdw / 2 + 2,
+ mbuttons_y - 1);
+ x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons
gui->draw_vframe(get_image("panel_divider"),
- x - toggle_margin / 2 - pdw / 2 + 2,
- mbuttons_y - 1);
+ x - toggle_margin / 2 - pdw / 2 + 2,
+ mbuttons_y - 1);
- x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
+ x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
gui->draw_vframe(get_image("panel_divider"),
- x - toggle_margin / 2 - pdw / 2 + 2,
- mbuttons_y - 1);
-
-// Clock
+ x - toggle_margin / 2 - pdw / 2 + 2,
+ mbuttons_y - 1);
+ // Clock
gui->draw_3segmenth(0,
- mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
- get_image("patchbay_bg")->get_w(),
- get_image("clock_bg"));
-
-// Patchbay
+ mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
+ get_image("patchbay_bg")->get_w(),
+ get_image("clock_bg"));
+ // Patchbay
gui->draw_3segmentv(patchbay_x,
- patchbay_y,
- patchbay_h,
- get_image("patchbay_bg"));
-
-// Track canvas
+ patchbay_y,
+ patchbay_h,
+ get_image("patchbay_bg"));
+ // Track canvas
gui->set_color(BLACK);
gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(),
- mcanvas_y + mtimebar_h,
- mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
- mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
-
-// Timebar
+ mcanvas_y + mtimebar_h,
+ mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
+ mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
+ // Timebar
gui->draw_3segmenth(mtimebar_x,
- mtimebar_y,
- mtimebar_w,
- get_image("timebar_bg"));
-
-// Zoombar
+ mtimebar_y,
+ mtimebar_w,
+ get_image("timebar_bg"));
+ // Zoombar
gui->set_color(BlackNineTwo);
gui->draw_box(mzoom_x,
- mzoom_y,
- mwindow->session->mwindow_w,
- 25);
-
-// Scrollbar filler
-// gui->draw_vframe(get_image("mscroll_filler"),
-// mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
-// mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
-
-// Status
+ mzoom_y,
+ mwindow->session->mwindow_w,
+ 25);
+ // Scrollbar filler
+ // gui->draw_vframe(get_image("mscroll_filler"),
+ // mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
+ // mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
+
+ // Status
gui->draw_3segmenth(mzoom_x,
- mzoom_y,
- mzoom_w,
- get_image("statusbar"));
-
+ mzoom_y,
+ mzoom_w,
+ get_image("statusbar"));
}
void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui)
if(mwindow->edl->session->cwindow_meter)
{
gui->draw_3segmenth(cstatus_x,
- ccomposite_h,
- cmeter_x - widget_border - cstatus_x,
- get_image("cbuttons_right"));
+ ccomposite_h,
+ cmeter_x - widget_border - cstatus_x,
+ get_image("cbuttons_right"));
gui->draw_9segment(cmeter_x - widget_border,
- 0,
- mwindow->session->cwindow_w - cmeter_x + widget_border,
- mwindow->session->cwindow_h,
- get_image("cmeter_bg"));
- }
- else
- {
+ 0,
+ mwindow->session->cwindow_w - cmeter_x + widget_border,
+ mwindow->session->cwindow_h,
+ get_image("cmeter_bg"));
+ } else {
gui->draw_3segmenth(cstatus_x,
- ccomposite_h,
- cmeter_x - widget_border - cstatus_x + 100,
- get_image("cbuttons_right"));
+ ccomposite_h,
+ cmeter_x - widget_border - cstatus_x + 100,
+ get_image("cbuttons_right"));
}
}
void NEOPHYTETHEME::draw_vwindow_bg(VWindowGUI *gui)
{
gui->draw_3segmenth(0,
- vcanvas_h,
- vdivision_x,
- get_image("vbuttons_left"));
+ vcanvas_h,
+ vdivision_x,
+ get_image("vbuttons_left"));
if(mwindow->edl->session->vwindow_meter)
{
gui->draw_3segmenth(vdivision_x,
- vcanvas_h,
- vmeter_x - widget_border - vdivision_x,
- get_image("cbuttons_right"));
+ vcanvas_h,
+ vmeter_x - widget_border - vdivision_x,
+ get_image("vbuttons_right"));
gui->draw_9segment(vmeter_x - widget_border,
- 0,
- mwindow->session->vwindow_w - vmeter_x + widget_border,
- mwindow->session->vwindow_h,
- get_image("cmeter_bg"));
- }
- else
- {
+ 0,
+ mwindow->session->vwindow_w - vmeter_x + widget_border,
+ mwindow->session->vwindow_h,
+ get_image("cmeter_bg"));
+ } else {
gui->draw_3segmenth(vdivision_x,
- vcanvas_h,
- vmeter_x - widget_border - vdivision_x + 100,
- get_image("cbuttons_right"));
+ vcanvas_h,
+ vmeter_x - widget_border - vdivision_x + 100,
+ get_image("vbuttons_right"));
}
-// Clock border
- gui->draw_3segmenth(vtime_x - 20,
- vtime_y - 1,
- vtime_w + 40,
+ // Clock deco
+ gui->draw_3segmenth(
+ vtime_x - 5, // -left, +right
+ vtime_y + 0, // -up, +down. Careful, move some of the buttons as well.
+ vtime_w + 10, // protruded l/r x*2
get_image("vclock"));
-}
+}
void NEOPHYTETHEME::draw_preferences_bg(PreferencesWindow *gui)
{
{
gui->draw_vframe(get_image("setformat_bg"), 0, 0);
}
-
-
void initialize();
void draw_mwindow_bg(MWindowGUI *gui);
-
void draw_rwindow_bg(RecordGUI *gui);
void draw_rmonitor_bg(RecordMonitorGUI *gui);
void draw_cwindow_bg(CWindowGUI *gui);
void draw_vwindow_bg(VWindowGUI *gui);
void draw_preferences_bg(PreferencesWindow *gui);
-
-
void draw_new_bg(NewWindow *gui);
void draw_setformat_bg(SetFormatWindow *gui);
+ void get_vwindow_sizes(VWindowGUI *gui);
private:
void build_bg_data();