RxFPC:fix RxSwitch
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6304 8e941d3f-bd1b-0410-a28a-d453659cc2b4
BIN
components/rx/trunk/demos/RxContols/RxSwitch/project1.ico
Normal file
After Width: | Height: | Size: 134 KiB |
79
components/rx/trunk/demos/RxContols/RxSwitch/project1.lpi
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<CONFIG>
|
||||||
|
<ProjectOptions>
|
||||||
|
<Version Value="11"/>
|
||||||
|
<General>
|
||||||
|
<SessionStorage Value="InProjectDir"/>
|
||||||
|
<MainUnit Value="0"/>
|
||||||
|
<Title Value="project1"/>
|
||||||
|
<Scaled Value="True"/>
|
||||||
|
<ResourceType Value="res"/>
|
||||||
|
<UseXPManifest Value="True"/>
|
||||||
|
<XPManifest>
|
||||||
|
<DpiAware Value="True"/>
|
||||||
|
</XPManifest>
|
||||||
|
<Icon Value="0"/>
|
||||||
|
</General>
|
||||||
|
<BuildModes Count="1">
|
||||||
|
<Item1 Name="Default" Default="True"/>
|
||||||
|
</BuildModes>
|
||||||
|
<PublishOptions>
|
||||||
|
<Version Value="2"/>
|
||||||
|
</PublishOptions>
|
||||||
|
<RunParams>
|
||||||
|
<FormatVersion Value="2"/>
|
||||||
|
<Modes Count="0"/>
|
||||||
|
</RunParams>
|
||||||
|
<RequiredPackages Count="2">
|
||||||
|
<Item1>
|
||||||
|
<PackageName Value="rxnew"/>
|
||||||
|
</Item1>
|
||||||
|
<Item2>
|
||||||
|
<PackageName Value="LCL"/>
|
||||||
|
</Item2>
|
||||||
|
</RequiredPackages>
|
||||||
|
<Units Count="2">
|
||||||
|
<Unit0>
|
||||||
|
<Filename Value="project1.lpr"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
</Unit0>
|
||||||
|
<Unit1>
|
||||||
|
<Filename Value="unit1.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
<ComponentName Value="Form1"/>
|
||||||
|
<ResourceBaseClass Value="Form"/>
|
||||||
|
<UnitName Value="Unit1"/>
|
||||||
|
</Unit1>
|
||||||
|
</Units>
|
||||||
|
</ProjectOptions>
|
||||||
|
<CompilerOptions>
|
||||||
|
<Version Value="11"/>
|
||||||
|
<Target>
|
||||||
|
<Filename Value="project1"/>
|
||||||
|
</Target>
|
||||||
|
<SearchPaths>
|
||||||
|
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||||
|
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||||
|
</SearchPaths>
|
||||||
|
<Linking>
|
||||||
|
<Options>
|
||||||
|
<Win32>
|
||||||
|
<GraphicApplication Value="True"/>
|
||||||
|
</Win32>
|
||||||
|
</Options>
|
||||||
|
</Linking>
|
||||||
|
</CompilerOptions>
|
||||||
|
<Debugging>
|
||||||
|
<Exceptions Count="3">
|
||||||
|
<Item1>
|
||||||
|
<Name Value="EAbort"/>
|
||||||
|
</Item1>
|
||||||
|
<Item2>
|
||||||
|
<Name Value="ECodetoolError"/>
|
||||||
|
</Item2>
|
||||||
|
<Item3>
|
||||||
|
<Name Value="EFOpenError"/>
|
||||||
|
</Item3>
|
||||||
|
</Exceptions>
|
||||||
|
</Debugging>
|
||||||
|
</CONFIG>
|
22
components/rx/trunk/demos/RxContols/RxSwitch/project1.lpr
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
program project1;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
uses
|
||||||
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||||
|
cthreads,
|
||||||
|
{$ENDIF}{$ENDIF}
|
||||||
|
Interfaces, // this includes the LCL widgetset
|
||||||
|
Forms, Unit1, rxnew
|
||||||
|
{ you can add units after this };
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
|
||||||
|
begin
|
||||||
|
RequireDerivedFormResource:=True;
|
||||||
|
Application.Scaled:=True;
|
||||||
|
Application.Initialize;
|
||||||
|
Application.CreateForm(TForm1, Form1);
|
||||||
|
Application.Run;
|
||||||
|
end.
|
||||||
|
|
193
components/rx/trunk/demos/RxContols/RxSwitch/project1.lps
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<CONFIG>
|
||||||
|
<ProjectSession>
|
||||||
|
<Version Value="11"/>
|
||||||
|
<BuildModes Active="Default"/>
|
||||||
|
<Units Count="9">
|
||||||
|
<Unit0>
|
||||||
|
<Filename Value="project1.lpr"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
<EditorIndex Value="-1"/>
|
||||||
|
<WindowIndex Value="-1"/>
|
||||||
|
<TopLine Value="-1"/>
|
||||||
|
<CursorPos X="-1" Y="-1"/>
|
||||||
|
<UsageCount Value="20"/>
|
||||||
|
</Unit0>
|
||||||
|
<Unit1>
|
||||||
|
<Filename Value="unit1.pas"/>
|
||||||
|
<IsPartOfProject Value="True"/>
|
||||||
|
<ComponentName Value="Form1"/>
|
||||||
|
<ResourceBaseClass Value="Form"/>
|
||||||
|
<UnitName Value="Unit1"/>
|
||||||
|
<CursorPos X="23" Y="16"/>
|
||||||
|
<UsageCount Value="20"/>
|
||||||
|
<Loaded Value="True"/>
|
||||||
|
<LoadedDesigner Value="True"/>
|
||||||
|
</Unit1>
|
||||||
|
<Unit2>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<IsVisibleTab Value="True"/>
|
||||||
|
<EditorIndex Value="1"/>
|
||||||
|
<TopLine Value="82"/>
|
||||||
|
<CursorPos X="16" Y="118"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
<Loaded Value="True"/>
|
||||||
|
</Unit2>
|
||||||
|
<Unit3>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.inc"/>
|
||||||
|
<EditorIndex Value="-1"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
</Unit3>
|
||||||
|
<Unit4>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<EditorIndex Value="2"/>
|
||||||
|
<TopLine Value="7723"/>
|
||||||
|
<CursorPos X="23" Y="7755"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
<Loaded Value="True"/>
|
||||||
|
</Unit4>
|
||||||
|
<Unit5>
|
||||||
|
<Filename Value="../../../rxcontrols/rxlclutils.pas"/>
|
||||||
|
<EditorIndex Value="3"/>
|
||||||
|
<TopLine Value="675"/>
|
||||||
|
<CursorPos X="29" Y="683"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
<Loaded Value="True"/>
|
||||||
|
</Unit5>
|
||||||
|
<Unit6>
|
||||||
|
<Filename Value="/home/install/source/fpcsrc/rtl/objpas/classes/streams.inc"/>
|
||||||
|
<EditorIndex Value="-1"/>
|
||||||
|
<TopLine Value="957"/>
|
||||||
|
<CursorPos Y="976"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
</Unit6>
|
||||||
|
<Unit7>
|
||||||
|
<Filename Value="/home/install/source/fpcsrc/rtl/objpas/classes/classesh.inc"/>
|
||||||
|
<EditorIndex Value="-1"/>
|
||||||
|
<TopLine Value="1025"/>
|
||||||
|
<CursorPos X="14" Y="1044"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
</Unit7>
|
||||||
|
<Unit8>
|
||||||
|
<Filename Value="/home/install/source/fpcsrc/rtl/inc/resh.inc"/>
|
||||||
|
<EditorIndex Value="-1"/>
|
||||||
|
<TopLine Value="45"/>
|
||||||
|
<CursorPos X="10" Y="64"/>
|
||||||
|
<UsageCount Value="10"/>
|
||||||
|
</Unit8>
|
||||||
|
</Units>
|
||||||
|
<JumpHistory Count="27" HistoryIndex="26">
|
||||||
|
<Position1>
|
||||||
|
<Filename Value="unit1.pas"/>
|
||||||
|
</Position1>
|
||||||
|
<Position2>
|
||||||
|
<Filename Value="unit1.pas"/>
|
||||||
|
<Caret Line="16" Column="23"/>
|
||||||
|
</Position2>
|
||||||
|
<Position3>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="155" Column="12" TopLine="140"/>
|
||||||
|
</Position3>
|
||||||
|
<Position4>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="308" TopLine="290"/>
|
||||||
|
</Position4>
|
||||||
|
<Position5>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="177" Column="21" TopLine="164"/>
|
||||||
|
</Position5>
|
||||||
|
<Position6>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="94" Column="17" TopLine="76"/>
|
||||||
|
</Position6>
|
||||||
|
<Position7>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="168" Column="3" TopLine="163"/>
|
||||||
|
</Position7>
|
||||||
|
<Position8>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="71" Column="15" TopLine="54"/>
|
||||||
|
</Position8>
|
||||||
|
<Position9>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="7737" Column="47" TopLine="7725"/>
|
||||||
|
</Position9>
|
||||||
|
<Position10>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="1217" Column="12" TopLine="1198"/>
|
||||||
|
</Position10>
|
||||||
|
<Position11>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="3651" Column="35" TopLine="3619"/>
|
||||||
|
</Position11>
|
||||||
|
<Position12>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="7739" Column="12" TopLine="7706"/>
|
||||||
|
</Position12>
|
||||||
|
<Position13>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="311" Column="20" TopLine="294"/>
|
||||||
|
</Position13>
|
||||||
|
<Position14>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="7755" Column="23" TopLine="7723"/>
|
||||||
|
</Position14>
|
||||||
|
<Position15>
|
||||||
|
<Filename Value="../../../rxcontrols/rxlclutils.pas"/>
|
||||||
|
<Caret Line="85" Column="10" TopLine="66"/>
|
||||||
|
</Position15>
|
||||||
|
<Position16>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="320" Column="11" TopLine="294"/>
|
||||||
|
</Position16>
|
||||||
|
<Position17>
|
||||||
|
<Filename Value="../../../rxdb/rxdbgrid.pas"/>
|
||||||
|
<Caret Line="7755" Column="23" TopLine="7723"/>
|
||||||
|
</Position17>
|
||||||
|
<Position18>
|
||||||
|
<Filename Value="../../../rxcontrols/rxlclutils.pas"/>
|
||||||
|
<Caret Line="85" Column="10" TopLine="66"/>
|
||||||
|
</Position18>
|
||||||
|
<Position19>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="318" TopLine="294"/>
|
||||||
|
</Position19>
|
||||||
|
<Position20>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="319" TopLine="294"/>
|
||||||
|
</Position20>
|
||||||
|
<Position21>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="318" TopLine="294"/>
|
||||||
|
</Position21>
|
||||||
|
<Position22>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="317" Column="41" TopLine="294"/>
|
||||||
|
</Position22>
|
||||||
|
<Position23>
|
||||||
|
<Filename Value="../../../rxcontrols/rxlclutils.pas"/>
|
||||||
|
<Caret Line="683" Column="29" TopLine="675"/>
|
||||||
|
</Position23>
|
||||||
|
<Position24>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="317" Column="41" TopLine="294"/>
|
||||||
|
</Position24>
|
||||||
|
<Position25>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="319" Column="7" TopLine="294"/>
|
||||||
|
</Position25>
|
||||||
|
<Position26>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="320" Column="12" TopLine="301"/>
|
||||||
|
</Position26>
|
||||||
|
<Position27>
|
||||||
|
<Filename Value="../../../rxcontrols/rxswitch.pas"/>
|
||||||
|
<Caret Line="194" TopLine="175"/>
|
||||||
|
</Position27>
|
||||||
|
</JumpHistory>
|
||||||
|
<RunParams>
|
||||||
|
<FormatVersion Value="2"/>
|
||||||
|
<Modes Count="0" ActiveMode=""/>
|
||||||
|
</RunParams>
|
||||||
|
</ProjectSession>
|
||||||
|
</CONFIG>
|
BIN
components/rx/trunk/demos/RxContols/RxSwitch/project1.res
Normal file
19
components/rx/trunk/demos/RxContols/RxSwitch/unit1.lfm
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
object Form1: TForm1
|
||||||
|
Left = 385
|
||||||
|
Height = 322
|
||||||
|
Top = 265
|
||||||
|
Width = 486
|
||||||
|
Caption = 'Form1'
|
||||||
|
ClientHeight = 322
|
||||||
|
ClientWidth = 486
|
||||||
|
Position = poScreenCenter
|
||||||
|
LCLVersion = '1.9.0.0'
|
||||||
|
object RxSwitch1: TRxSwitch
|
||||||
|
Left = 192
|
||||||
|
Height = 92
|
||||||
|
Top = 72
|
||||||
|
Width = 58
|
||||||
|
Caption = 'RxSwitch1'
|
||||||
|
TabOrder = 0
|
||||||
|
end
|
||||||
|
end
|
30
components/rx/trunk/demos/RxContols/RxSwitch/unit1.pas
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
unit Unit1;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, rxswitch;
|
||||||
|
|
||||||
|
type
|
||||||
|
|
||||||
|
{ TForm1 }
|
||||||
|
|
||||||
|
TForm1 = class(TForm)
|
||||||
|
RxSwitch1: TRxSwitch;
|
||||||
|
private
|
||||||
|
|
||||||
|
public
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form1: TForm1;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{$R *.lfm}
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 3.4 KiB |
@ -1,55 +0,0 @@
|
|||||||
/* XPM */
|
|
||||||
static char *RXSWITCH_OFF[]={
|
|
||||||
"32 48 4 1",
|
|
||||||
". c None",
|
|
||||||
"# c #000000",
|
|
||||||
"b c #808080",
|
|
||||||
"a c #ffffff",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"....########################....",
|
|
||||||
"....#aaaaaaaaaaaaaaaaaaaaaa#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#a##aaaaaaaaaaaaaaa#b#a#....",
|
|
||||||
"....#a#################bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#################bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....##aaa#########aaa#bbb#a#....",
|
|
||||||
"....##aa#aaaaaaaa#aaa#bbb#a#....",
|
|
||||||
"....#aaa#aaaaaaa#aaa#bbbb#a#....",
|
|
||||||
"....#aa#aaaaaaaa#aaa#bbbb#a#....",
|
|
||||||
"...#aaa#########aaa#bbbbb#a#....",
|
|
||||||
"...#aaaaaaaaaaaaaaa#bbbbb#a#....",
|
|
||||||
"..#aaaaaaaaaaaaaaa#bbbbbb#a#....",
|
|
||||||
"..#################bbbbbb#a#....",
|
|
||||||
"..#aaaaaaaaaaaaaaa#bbbbbb#a#....",
|
|
||||||
"...#aaaaaaaaaaaaaaa#bbbbb#a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaa#bbbb#a#....",
|
|
||||||
"....##aaaaaaaaaaaaaaa#bbb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a##aaaaaaaaaaaaaaa#b#a#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaaaaaaaaa#....",
|
|
||||||
"....########################....",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................"};
|
|
@ -1,56 +0,0 @@
|
|||||||
/* XPM */
|
|
||||||
static char *RXSWITCH_ON[]={
|
|
||||||
"32 48 5 1",
|
|
||||||
". c None",
|
|
||||||
"# c #000000",
|
|
||||||
"b c #808080",
|
|
||||||
"c c #ff0000",
|
|
||||||
"a c #ffffff",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"....########################....",
|
|
||||||
"....#aaaaaaaaaaaaaaaaaaaaaa#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#a##aaaaaaaaaaaaaaa#b#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....##aaaaaaaaaaaaaaa#bbb#a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaa#bbbb#a#....",
|
|
||||||
"...#aaaaaaaaaaaaaaa#bbbbb#a#....",
|
|
||||||
"..#aaaaaaaaaaaaaaa#bbbbbb#a#....",
|
|
||||||
"..#################bbbbbb#a#....",
|
|
||||||
"..#aaaaaaaaaaaaaaa#bbbbbb#a#....",
|
|
||||||
"...#aaaaaaaaaaaaaaa#bbbbb#a#....",
|
|
||||||
"...#aaaaaaaaaaaaaaa#bbbbb#a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaa#bbbb#a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaa#bbbb#a#....",
|
|
||||||
"....##aaaaaaaaaaaaaaa#bbb#a#....",
|
|
||||||
"....##aaaaaaaaaaaaaaa#bbb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#################bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaa#########aaa#bb#a#....",
|
|
||||||
"....#a#aaa#ccccccc#aaa#bb#a#....",
|
|
||||||
"....#a#aaa#ccccccc#aaa#bb#a#....",
|
|
||||||
"....#a#aaa#ccccccc#aaa#bb#a#....",
|
|
||||||
"....#a#aaa#ccccccc#aaa#bb#a#....",
|
|
||||||
"....#a#aaa#########aaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#aaaaaaaaaaaaaaa#bb#a#....",
|
|
||||||
"....#a#################bb#a#....",
|
|
||||||
"....#a#bbbbbbbbbbbbbbbb#b#a#....",
|
|
||||||
"....#a##bbbbbbbbbbbbbbbb##a#....",
|
|
||||||
"....#a####################a#....",
|
|
||||||
"....#aaaaaaaaaaaaaaaaaaaaaa#....",
|
|
||||||
"....########################....",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................",
|
|
||||||
"................................"};
|
|
@ -9,6 +9,5 @@ rm pickdate.rex
|
|||||||
/usr/local/share/lazarus/tools/lazres rx_lcl.res picDateEdit.png rxbtn_downarrow.png rx_range_h_back.png rx_range_h_sel.png rx_slader_bottom.png rx_slader_top.png rx_range_v_back.png rx_range_v_sel.png rx_slader_left.png rx_slader_right.png
|
/usr/local/share/lazarus/tools/lazres rx_lcl.res picDateEdit.png rxbtn_downarrow.png rx_range_h_back.png rx_range_h_sel.png rx_slader_bottom.png rx_slader_top.png rx_range_v_back.png rx_range_v_sel.png rx_slader_left.png rx_slader_right.png
|
||||||
|
|
||||||
/usr/local/share/lazarus/tools/lazres pickdate.res rx_next1.png rx_next2.png rx_prev1.png rx_prev2.png
|
/usr/local/share/lazarus/tools/lazres pickdate.res rx_next1.png rx_next2.png rx_prev1.png rx_prev2.png
|
||||||
|
/usr/local/share/lazarus/tools/lazres rxswitch.res rxswitch_off.png rxswitch_on.png
|
||||||
|
|
||||||
#../../../../tools\lazres.exe tooledit.lrs picDateEdit.bmp
|
|
||||||
#../../../../tools\lazres.exe rxdbgrid.lrs rx_markerdown.xpm rx_markerup.xpm
|
|
||||||
|
BIN
components/rx/trunk/images/componet_img/rxswitch_off.png
Normal file
After Width: | Height: | Size: 431 B |
BIN
components/rx/trunk/images/componet_img/rxswitch_on.png
Normal file
After Width: | Height: | Size: 406 B |
@ -14,15 +14,15 @@
|
|||||||
height="24"
|
height="24"
|
||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg439"
|
id="svg807"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
sodipodi:docname="tdbcalcedit_rx.svg">
|
sodipodi:docname="tdbcalcedit_rx.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs433">
|
id="defs801">
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient876"
|
id="linearGradient238"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -90,7 +90,7 @@
|
|||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient562"
|
id="linearGradient924"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -105,9 +105,9 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="15.839192"
|
inkscape:zoom="11.2"
|
||||||
inkscape:cx="20.628635"
|
inkscape:cx="21.683039"
|
||||||
inkscape:cy="0.83811325"
|
inkscape:cy="14.586496"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
@ -118,7 +118,7 @@
|
|||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1" />
|
inkscape:window-maximized="1" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata436">
|
id="metadata804">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
<cc:Work
|
<cc:Work
|
||||||
rdf:about="">
|
rdf:about="">
|
||||||
@ -133,18 +133,20 @@
|
|||||||
inkscape:label="Layer 1"
|
inkscape:label="Layer 1"
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(0,-290.64999)"
|
transform="translate(0,-290.64999)">
|
||||||
sodipodi:insensitive="true">
|
|
||||||
<g
|
<g
|
||||||
id="g215"
|
transform="matrix(0.5,0,0,0.5,0,290.64999)"
|
||||||
transform="matrix(0.5,0,0,0.5,0,290.64999)">
|
id="g510"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
<rect
|
<rect
|
||||||
y="0"
|
y="284.29999"
|
||||||
x="0"
|
x="0"
|
||||||
height="48"
|
height="48"
|
||||||
width="48"
|
width="48"
|
||||||
id="rect4670"
|
id="rect12"
|
||||||
style="fill:none;fill-rule:evenodd" />
|
style="fill:none;fill-rule:evenodd"
|
||||||
|
transform="translate(0,-284.29999)" />
|
||||||
<g
|
<g
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
@ -152,7 +154,7 @@
|
|||||||
id="g899"
|
id="g899"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<ellipse
|
<ellipse
|
||||||
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient562);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient924);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="ellipse880"
|
id="ellipse880"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
cy="1030.1925"
|
cy="1030.1925"
|
||||||
@ -199,288 +201,249 @@
|
|||||||
cy="1012.1926"
|
cy="1012.1926"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
id="ellipse868"
|
id="ellipse868"
|
||||||
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient238);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
transform="translate(-71.040515,-1029.2941)"
|
transform="matrix(0.99121443,0,0,0.99076354,1.131784,-994.12009)"
|
||||||
id="text846"
|
id="g265"
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="display:inline">
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
transform="translate(-97.05899,-1033.9995)"
|
|
||||||
id="text846-8"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g203"
|
|
||||||
transform="translate(-71.040515,-1029.2941)" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g205"
|
|
||||||
transform="translate(-97.05899,-1033.9995)" />
|
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
|
||||||
x="34.952477"
|
|
||||||
height="9.6322527"
|
|
||||||
width="9.6322289"
|
|
||||||
id="rect842"
|
id="rect842"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322289"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322527"
|
||||||
<rect
|
x="34.952477"
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
y="1020.2319"
|
||||||
x="15.688016"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="9.6322289"
|
inkscape:export-ydpi="104.53718" />
|
||||||
width="19.264458"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect848"
|
id="rect848"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="19.264458"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322289"
|
||||||
<rect
|
x="15.688016"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1020.2319"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect839"
|
<rect
|
||||||
width="22.016523"
|
|
||||||
height="20.640505"
|
|
||||||
x="18.440083"
|
|
||||||
y="1028.4882"
|
y="1028.4882"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="18.440083"
|
||||||
<rect
|
height="20.640505"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="22.016523"
|
||||||
|
id="rect839"
|
||||||
|
style="opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect836"
|
<rect
|
||||||
width="20.64049"
|
y="1029.1761"
|
||||||
|
x="19.128099"
|
||||||
height="2.7520895"
|
height="2.7520895"
|
||||||
x="19.128099"
|
width="20.64049"
|
||||||
y="1029.1761"
|
id="rect836"
|
||||||
transform="translate(0,-1004.3622)" />
|
style="opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1029.1761"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="19.128099"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect947"
|
id="rect947"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="19.128099"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1029.1761"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1034.3364"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="22.912189"
|
<rect
|
||||||
height="11.008263"
|
style="opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="13.072311"
|
|
||||||
id="rect949"
|
id="rect949"
|
||||||
style="display:inline;opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="13.072311"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="11.008263"
|
||||||
<rect
|
x="22.912189"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1034.3364"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1035.3683"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="2.0640371"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="9.6322355"
|
|
||||||
id="rect951"
|
id="rect951"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322355"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="2.0640371"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
height="1.3760328"
|
y="1035.3683"
|
||||||
width="1.3760328"
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect953"
|
id="rect953"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect955"
|
id="rect955"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect957"
|
id="rect957"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="24.632231"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="30.136362"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect959"
|
id="rect959"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect961"
|
id="rect961"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect963"
|
id="rect963"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="30.136362"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
|
x="32.888435"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect973"
|
id="rect973"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
height="1.3760328"
|
|
||||||
x="32.888435"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="32.888435"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect975"
|
id="rect975"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="32.888435"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1038.8085"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="0.68801641"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="0.68801641"
|
|
||||||
id="rect837"
|
id="rect837"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect840"
|
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="27.384296"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect843"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect845"
|
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
y="1041.5605"
|
y="1038.8085"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
x="27.384296"
|
x="27.384296"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
id="rect847"
|
id="rect840"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect849"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect843"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="30.136362"
|
x="30.136362"
|
||||||
y="1041.5605"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
y="1038.8085"
|
||||||
x="32.888428"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect851"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect853"
|
<rect
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="32.888428"
|
|
||||||
y="1041.5605"
|
y="1041.5605"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="24.632231"
|
||||||
<path
|
height="0.68801641"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="0.68801641"
|
||||||
|
id="rect845"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
sodipodi:nodetypes="ccccccc"
|
inkscape:export-ydpi="104.53718" />
|
||||||
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
<rect
|
||||||
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="path863-9"
|
id="rect847"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="30.136362"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect849"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect851"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="32.888428"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="32.888428"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect853"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
transform="translate(0,-1004.3622)" />
|
id="path863-9"
|
||||||
|
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
</g>
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.98276818;image-rendering:auto"
|
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.95829707;image-rendering:auto"
|
||||||
id="use4930"
|
id="use4930"
|
||||||
width="30.5"
|
width="29"
|
||||||
height="19"
|
height="19"
|
||||||
x="1"
|
x="1"
|
||||||
y="1"
|
y="1"
|
||||||
rx="5.0833335"
|
rx="4.8333335"
|
||||||
ry="4.75" />
|
ry="4.75" />
|
||||||
<text
|
<text
|
||||||
transform="scale(0.99166721,1.0084028)"
|
transform="scale(0.99166721,1.0084028)"
|
||||||
id="text3848"
|
id="text3848"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
id="tspan3846"
|
id="tspan3846"
|
||||||
sodipodi:role="line">Rx</tspan></text>
|
sodipodi:role="line">Rx</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 20 KiB |
@ -14,15 +14,15 @@
|
|||||||
height="36"
|
height="36"
|
||||||
viewBox="0 0 36 36"
|
viewBox="0 0 36 36"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg308"
|
id="svg682"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
sodipodi:docname="tdbcalcedit_rx_150.svg">
|
sodipodi:docname="tdbcalcedit_rx_150.svg">
|
||||||
<defs
|
<defs
|
||||||
id="defs302">
|
id="defs676">
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient876"
|
id="linearGradient238"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -90,7 +90,7 @@
|
|||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient431"
|
id="linearGradient799"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -105,9 +105,9 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="5.6"
|
inkscape:zoom="11.2"
|
||||||
inkscape:cx="17.516968"
|
inkscape:cx="13.603303"
|
||||||
inkscape:cy="33.87022"
|
inkscape:cy="9.9981962"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showgrid="false"
|
showgrid="false"
|
||||||
@ -118,7 +118,7 @@
|
|||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1" />
|
inkscape:window-maximized="1" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata305">
|
id="metadata679">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
<cc:Work
|
<cc:Work
|
||||||
rdf:about="">
|
rdf:about="">
|
||||||
@ -133,18 +133,20 @@
|
|||||||
inkscape:label="Layer 1"
|
inkscape:label="Layer 1"
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(0,-287.47498)"
|
transform="translate(0,-287.47498)">
|
||||||
sodipodi:insensitive="true">
|
|
||||||
<g
|
<g
|
||||||
id="g215"
|
transform="matrix(0.75,0,0,0.75,0,287.47498)"
|
||||||
transform="matrix(0.75,0,0,0.75,0,287.47498)">
|
id="g510"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
<rect
|
<rect
|
||||||
y="0"
|
y="284.29999"
|
||||||
x="0"
|
x="0"
|
||||||
height="48"
|
height="48"
|
||||||
width="48"
|
width="48"
|
||||||
id="rect4670"
|
id="rect12"
|
||||||
style="fill:none;fill-rule:evenodd" />
|
style="fill:none;fill-rule:evenodd"
|
||||||
|
transform="translate(0,-284.29999)" />
|
||||||
<g
|
<g
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
@ -152,7 +154,7 @@
|
|||||||
id="g899"
|
id="g899"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<ellipse
|
<ellipse
|
||||||
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient431);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient799);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="ellipse880"
|
id="ellipse880"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
cy="1030.1925"
|
cy="1030.1925"
|
||||||
@ -199,288 +201,249 @@
|
|||||||
cy="1012.1926"
|
cy="1012.1926"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
id="ellipse868"
|
id="ellipse868"
|
||||||
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient238);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
transform="translate(-71.040515,-1029.2941)"
|
transform="matrix(0.99121443,0,0,0.99076354,1.131784,-994.12009)"
|
||||||
id="text846"
|
id="g265"
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="display:inline">
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
transform="translate(-97.05899,-1033.9995)"
|
|
||||||
id="text846-8"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g203"
|
|
||||||
transform="translate(-71.040515,-1029.2941)" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g205"
|
|
||||||
transform="translate(-97.05899,-1033.9995)" />
|
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
|
||||||
x="34.952477"
|
|
||||||
height="9.6322527"
|
|
||||||
width="9.6322289"
|
|
||||||
id="rect842"
|
id="rect842"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322289"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322527"
|
||||||
<rect
|
x="34.952477"
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
y="1020.2319"
|
||||||
x="15.688016"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="9.6322289"
|
inkscape:export-ydpi="104.53718" />
|
||||||
width="19.264458"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect848"
|
id="rect848"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="19.264458"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322289"
|
||||||
<rect
|
x="15.688016"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1020.2319"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect839"
|
<rect
|
||||||
width="22.016523"
|
|
||||||
height="20.640505"
|
|
||||||
x="18.440083"
|
|
||||||
y="1028.4882"
|
y="1028.4882"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="18.440083"
|
||||||
<rect
|
height="20.640505"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="22.016523"
|
||||||
|
id="rect839"
|
||||||
|
style="opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect836"
|
<rect
|
||||||
width="20.64049"
|
y="1029.1761"
|
||||||
|
x="19.128099"
|
||||||
height="2.7520895"
|
height="2.7520895"
|
||||||
x="19.128099"
|
width="20.64049"
|
||||||
y="1029.1761"
|
id="rect836"
|
||||||
transform="translate(0,-1004.3622)" />
|
style="opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1029.1761"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="19.128099"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect947"
|
id="rect947"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="19.128099"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1029.1761"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1034.3364"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="22.912189"
|
<rect
|
||||||
height="11.008263"
|
style="opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="13.072311"
|
|
||||||
id="rect949"
|
id="rect949"
|
||||||
style="display:inline;opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="13.072311"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="11.008263"
|
||||||
<rect
|
x="22.912189"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1034.3364"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1035.3683"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="2.0640371"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="9.6322355"
|
|
||||||
id="rect951"
|
id="rect951"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322355"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="2.0640371"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
height="1.3760328"
|
y="1035.3683"
|
||||||
width="1.3760328"
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect953"
|
id="rect953"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect955"
|
id="rect955"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect957"
|
id="rect957"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="24.632231"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="30.136362"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect959"
|
id="rect959"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect961"
|
id="rect961"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect963"
|
id="rect963"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="30.136362"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
|
x="32.888435"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect973"
|
id="rect973"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
height="1.3760328"
|
|
||||||
x="32.888435"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="32.888435"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect975"
|
id="rect975"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="32.888435"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1038.8085"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="0.68801641"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="0.68801641"
|
|
||||||
id="rect837"
|
id="rect837"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect840"
|
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="27.384296"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect843"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect845"
|
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
y="1041.5605"
|
y="1038.8085"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
x="27.384296"
|
x="27.384296"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
id="rect847"
|
id="rect840"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect849"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect843"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="30.136362"
|
x="30.136362"
|
||||||
y="1041.5605"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
y="1038.8085"
|
||||||
x="32.888428"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect851"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect853"
|
<rect
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="32.888428"
|
|
||||||
y="1041.5605"
|
y="1041.5605"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="24.632231"
|
||||||
<path
|
height="0.68801641"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="0.68801641"
|
||||||
|
id="rect845"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
sodipodi:nodetypes="ccccccc"
|
inkscape:export-ydpi="104.53718" />
|
||||||
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
<rect
|
||||||
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="path863-9"
|
id="rect847"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="30.136362"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect849"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect851"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="32.888428"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="32.888428"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect853"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
transform="translate(0,-1004.3622)" />
|
id="path863-9"
|
||||||
|
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
</g>
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.98276818;image-rendering:auto"
|
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.95829707;image-rendering:auto"
|
||||||
id="use4930"
|
id="use4930"
|
||||||
width="30.5"
|
width="29"
|
||||||
height="19"
|
height="19"
|
||||||
x="1"
|
x="1"
|
||||||
y="1"
|
y="1"
|
||||||
rx="5.0833335"
|
rx="4.8333335"
|
||||||
ry="4.75" />
|
ry="4.75" />
|
||||||
<text
|
<text
|
||||||
transform="scale(0.99166721,1.0084028)"
|
transform="scale(0.99166721,1.0084028)"
|
||||||
id="text3848"
|
id="text3848"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
id="tspan3846"
|
id="tspan3846"
|
||||||
sodipodi:role="line">Rx</tspan></text>
|
sodipodi:role="line">Rx</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 20 KiB |
@ -2,7 +2,6 @@
|
|||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
@ -14,33 +13,25 @@
|
|||||||
width="48"
|
width="48"
|
||||||
height="48"
|
height="48"
|
||||||
viewBox="0 0 48 48"
|
viewBox="0 0 48 48"
|
||||||
id="svg4225"
|
|
||||||
version="1.1"
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
sodipodi:docname="tdbcalcedit_rx_200.svg"
|
sodipodi:docname="tdbcalcedit_rx_200.svg"
|
||||||
inkscape:export-filename="D:\temp\rx\tdbcalcedit_rx_200.png"
|
inkscape:export-filename="D:\temp\rx\work\tdbcalcedit_rx_200.png"
|
||||||
inkscape:export-xdpi="96"
|
inkscape:export-xdpi="96"
|
||||||
inkscape:export-ydpi="96">
|
inkscape:export-ydpi="96">
|
||||||
<defs
|
<defs
|
||||||
id="defs4227">
|
id="defs2">
|
||||||
<linearGradient
|
<linearGradient
|
||||||
osb:paint="solid"
|
|
||||||
id="linearGradient826">
|
|
||||||
<stop
|
|
||||||
id="stop824"
|
|
||||||
offset="0"
|
|
||||||
style="stop-color:#e6e6e6;stop-opacity:1;" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
y2="1035.3622"
|
|
||||||
x2="12"
|
|
||||||
y1="1035.3622"
|
|
||||||
x1="3"
|
|
||||||
id="linearGradient908"
|
|
||||||
xlink:href="#linearGradient914"
|
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)" />
|
xlink:href="#linearGradient914"
|
||||||
|
id="linearGradient876"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
|
x1="3"
|
||||||
|
y1="1035.3622"
|
||||||
|
x2="12"
|
||||||
|
y2="1035.3622" />
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
id="linearGradient914">
|
id="linearGradient914">
|
||||||
@ -57,16 +48,6 @@
|
|||||||
offset="1"
|
offset="1"
|
||||||
id="stop912" />
|
id="stop912" />
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<linearGradient
|
|
||||||
y2="1035.3622"
|
|
||||||
x2="12"
|
|
||||||
y1="1035.3622"
|
|
||||||
x1="3"
|
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1063.5316)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
id="linearGradient936"
|
|
||||||
xlink:href="#linearGradient914"
|
|
||||||
inkscape:collect="always" />
|
|
||||||
<linearGradient
|
<linearGradient
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1057.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1057.5318)"
|
||||||
y2="1035.3622"
|
y2="1035.3622"
|
||||||
@ -77,10 +58,20 @@
|
|||||||
id="linearGradient932"
|
id="linearGradient932"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
inkscape:collect="always" />
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="1035.3622"
|
||||||
|
x2="12"
|
||||||
|
y1="1035.3622"
|
||||||
|
x1="3"
|
||||||
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1063.5316)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient936"
|
||||||
|
xlink:href="#linearGradient914"
|
||||||
|
inkscape:collect="always" />
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient876"
|
id="linearGradient238"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -117,40 +108,24 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="4.2760417"
|
inkscape:zoom="7.9195959"
|
||||||
inkscape:cx="-6.6760188"
|
inkscape:cx="47.272041"
|
||||||
inkscape:cy="16.818227"
|
inkscape:cy="25.33229"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer5"
|
inkscape:current-layer="layer5"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:snap-bbox="true"
|
|
||||||
inkscape:bbox-paths="true"
|
|
||||||
inkscape:bbox-nodes="true"
|
|
||||||
inkscape:snap-bbox-edge-midpoints="true"
|
|
||||||
inkscape:snap-bbox-midpoints="true"
|
|
||||||
inkscape:object-paths="true"
|
|
||||||
inkscape:snap-intersection-paths="true"
|
|
||||||
inkscape:object-nodes="true"
|
|
||||||
inkscape:snap-smooth-nodes="true"
|
|
||||||
inkscape:snap-midpoints="true"
|
|
||||||
inkscape:snap-object-midpoints="true"
|
|
||||||
inkscape:snap-center="true"
|
|
||||||
units="px"
|
units="px"
|
||||||
inkscape:window-width="1920"
|
inkscape:window-width="1920"
|
||||||
inkscape:window-height="1018"
|
inkscape:window-height="1018"
|
||||||
inkscape:window-x="-8"
|
inkscape:window-x="-8"
|
||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1">
|
||||||
inkscape:snap-grids="true"
|
|
||||||
showguides="true"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:pagecheckerboard="false">
|
|
||||||
<inkscape:grid
|
<inkscape:grid
|
||||||
type="xygrid"
|
type="xygrid"
|
||||||
id="grid4241" />
|
id="grid10" />
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata4230">
|
id="metadata5">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
<cc:Work
|
<cc:Work
|
||||||
rdf:about="">
|
rdf:about="">
|
||||||
@ -164,17 +139,19 @@
|
|||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer5"
|
id="layer5"
|
||||||
inkscape:label="text"
|
inkscape:label="text">
|
||||||
sodipodi:insensitive="true">
|
|
||||||
<g
|
<g
|
||||||
id="g215">
|
id="g510"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
<rect
|
<rect
|
||||||
y="0"
|
y="284.29999"
|
||||||
x="0"
|
x="0"
|
||||||
height="48"
|
height="48"
|
||||||
width="48"
|
width="48"
|
||||||
id="rect4670"
|
id="rect12"
|
||||||
style="fill:none;fill-rule:evenodd" />
|
style="fill:none;fill-rule:evenodd"
|
||||||
|
transform="translate(0,-284.29999)" />
|
||||||
<g
|
<g
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
@ -182,7 +159,7 @@
|
|||||||
id="g899"
|
id="g899"
|
||||||
style="display:inline">
|
style="display:inline">
|
||||||
<ellipse
|
<ellipse
|
||||||
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient238);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="ellipse880"
|
id="ellipse880"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
cy="1030.1925"
|
cy="1030.1925"
|
||||||
@ -229,288 +206,249 @@
|
|||||||
cy="1012.1926"
|
cy="1012.1926"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
id="ellipse868"
|
id="ellipse868"
|
||||||
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient908);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
transform="translate(-71.040515,-1029.2941)"
|
transform="matrix(0.99121443,0,0,0.99076354,1.131784,-994.12009)"
|
||||||
id="text846"
|
id="g265"
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="display:inline">
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
transform="translate(-97.05899,-1033.9995)"
|
|
||||||
id="text846-8"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g203"
|
|
||||||
transform="translate(-71.040515,-1029.2941)" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="g205"
|
|
||||||
transform="translate(-97.05899,-1033.9995)" />
|
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
|
||||||
x="34.952477"
|
|
||||||
height="9.6322527"
|
|
||||||
width="9.6322289"
|
|
||||||
id="rect842"
|
id="rect842"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322289"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322527"
|
||||||
<rect
|
x="34.952477"
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1020.2319"
|
y="1020.2319"
|
||||||
x="15.688016"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="9.6322289"
|
inkscape:export-ydpi="104.53718" />
|
||||||
width="19.264458"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect848"
|
id="rect848"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="19.264458"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="9.6322289"
|
||||||
<rect
|
x="15.688016"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1020.2319"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect839"
|
<rect
|
||||||
width="22.016523"
|
|
||||||
height="20.640505"
|
|
||||||
x="18.440083"
|
|
||||||
y="1028.4882"
|
y="1028.4882"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="18.440083"
|
||||||
<rect
|
height="20.640505"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="22.016523"
|
||||||
|
id="rect839"
|
||||||
|
style="opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect836"
|
<rect
|
||||||
width="20.64049"
|
y="1029.1761"
|
||||||
|
x="19.128099"
|
||||||
height="2.7520895"
|
height="2.7520895"
|
||||||
x="19.128099"
|
width="20.64049"
|
||||||
y="1029.1761"
|
id="rect836"
|
||||||
transform="translate(0,-1004.3622)" />
|
style="opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1029.1761"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="19.128099"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect947"
|
id="rect947"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="19.128099"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1029.1761"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1034.3364"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="22.912189"
|
<rect
|
||||||
height="11.008263"
|
style="opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="13.072311"
|
|
||||||
id="rect949"
|
id="rect949"
|
||||||
style="display:inline;opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="13.072311"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="11.008263"
|
||||||
<rect
|
x="22.912189"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1034.3364"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1035.3683"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="2.0640371"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="9.6322355"
|
|
||||||
id="rect951"
|
id="rect951"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="9.6322355"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="2.0640371"
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
height="1.3760328"
|
y="1035.3683"
|
||||||
width="1.3760328"
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect953"
|
id="rect953"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect955"
|
id="rect955"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect957"
|
id="rect957"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="24.632231"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="30.136362"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect959"
|
id="rect959"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="27.384296"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="24.632231"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect961"
|
id="rect961"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1041.5605"
|
|
||||||
x="30.136362"
|
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
|
height="1.3760328"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect963"
|
id="rect963"
|
||||||
style="display:inline;opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="30.136362"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
|
x="32.888435"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect973"
|
id="rect973"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
height="1.3760328"
|
|
||||||
x="32.888435"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="32.888435"
|
<rect
|
||||||
height="1.3760328"
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="1.3760328"
|
|
||||||
id="rect975"
|
id="rect975"
|
||||||
style="display:inline;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
width="1.3760328"
|
||||||
transform="translate(0,-1004.3622)" />
|
height="1.3760328"
|
||||||
<rect
|
x="32.888435"
|
||||||
inkscape:export-ydpi="104.53718"
|
y="1041.5605"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1038.8085"
|
inkscape:export-ydpi="104.53718" />
|
||||||
x="24.632231"
|
<rect
|
||||||
height="0.68801641"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="0.68801641"
|
|
||||||
id="rect837"
|
id="rect837"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect840"
|
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="27.384296"
|
|
||||||
y="1038.8085"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
|
||||||
x="30.136362"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect843"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect845"
|
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="24.632231"
|
x="24.632231"
|
||||||
y="1041.5605"
|
y="1038.8085"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1038.8085"
|
||||||
x="27.384296"
|
x="27.384296"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
id="rect847"
|
id="rect840"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect849"
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect843"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="30.136362"
|
x="30.136362"
|
||||||
y="1041.5605"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
y="1038.8085"
|
y="1038.8085"
|
||||||
x="32.888428"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect851"
|
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
transform="translate(0,-1004.3622)" />
|
|
||||||
<rect
|
|
||||||
inkscape:export-ydpi="104.53718"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718" />
|
||||||
id="rect853"
|
<rect
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="32.888428"
|
|
||||||
y="1041.5605"
|
y="1041.5605"
|
||||||
transform="translate(0,-1004.3622)" />
|
x="24.632231"
|
||||||
<path
|
height="0.68801641"
|
||||||
inkscape:export-ydpi="104.53718"
|
width="0.68801641"
|
||||||
|
id="rect845"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
sodipodi:nodetypes="ccccccc"
|
inkscape:export-ydpi="104.53718" />
|
||||||
style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
<rect
|
||||||
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="path863-9"
|
id="rect847"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="27.384296"
|
||||||
|
y="1041.5605"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="30.136362"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect849"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect851"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="32.888428"
|
||||||
|
y="1038.8085"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<rect
|
||||||
|
y="1041.5605"
|
||||||
|
x="32.888428"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect853"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
transform="translate(0,-1004.3622)" />
|
id="path863-9"
|
||||||
|
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
inkscape:export-ydpi="104.53718" />
|
||||||
|
</g>
|
||||||
<rect
|
<rect
|
||||||
inkscape:export-ydpi="104.53718"
|
inkscape:export-ydpi="104.53718"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.98276818;image-rendering:auto"
|
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.95829707;image-rendering:auto"
|
||||||
id="use4930"
|
id="use4930"
|
||||||
width="30.5"
|
width="29"
|
||||||
height="19"
|
height="19"
|
||||||
x="1"
|
x="1"
|
||||||
y="1"
|
y="1"
|
||||||
rx="5.0833335"
|
rx="4.8333335"
|
||||||
ry="4.75" />
|
ry="4.75" />
|
||||||
<text
|
<text
|
||||||
transform="scale(0.99166721,1.0084028)"
|
transform="scale(0.99166721,1.0084028)"
|
||||||
id="text3848"
|
id="text3848"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
id="tspan3846"
|
id="tspan3846"
|
||||||
sodipodi:role="line">Rx</tspan></text>
|
sodipodi:role="line">Rx</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 20 KiB |
@ -2,7 +2,6 @@
|
|||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
@ -14,33 +13,22 @@
|
|||||||
width="48"
|
width="48"
|
||||||
height="48"
|
height="48"
|
||||||
viewBox="0 0 48 48"
|
viewBox="0 0 48 48"
|
||||||
id="svg4225"
|
|
||||||
version="1.1"
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
sodipodi:docname="tdbcalcedit_rx_200_src.svg"
|
sodipodi:docname="tdbcalcedit_rx_200_src.svg">
|
||||||
inkscape:export-filename="D:\temp\rx\tdbcalcedit_rx_200.png"
|
|
||||||
inkscape:export-xdpi="96"
|
|
||||||
inkscape:export-ydpi="96">
|
|
||||||
<defs
|
<defs
|
||||||
id="defs4227">
|
id="defs2">
|
||||||
<linearGradient
|
<linearGradient
|
||||||
osb:paint="solid"
|
|
||||||
id="linearGradient826">
|
|
||||||
<stop
|
|
||||||
id="stop824"
|
|
||||||
offset="0"
|
|
||||||
style="stop-color:#e6e6e6;stop-opacity:1;" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
y2="1035.3622"
|
|
||||||
x2="12"
|
|
||||||
y1="1035.3622"
|
|
||||||
x1="3"
|
|
||||||
id="linearGradient908"
|
|
||||||
xlink:href="#linearGradient914"
|
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)" />
|
xlink:href="#linearGradient914"
|
||||||
|
id="linearGradient876"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
|
x1="3"
|
||||||
|
y1="1035.3622"
|
||||||
|
x2="12"
|
||||||
|
y2="1035.3622" />
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
id="linearGradient914">
|
id="linearGradient914">
|
||||||
@ -57,16 +45,6 @@
|
|||||||
offset="1"
|
offset="1"
|
||||||
id="stop912" />
|
id="stop912" />
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<linearGradient
|
|
||||||
y2="1035.3622"
|
|
||||||
x2="12"
|
|
||||||
y1="1035.3622"
|
|
||||||
x1="3"
|
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1063.5316)"
|
|
||||||
gradientUnits="userSpaceOnUse"
|
|
||||||
id="linearGradient936"
|
|
||||||
xlink:href="#linearGradient914"
|
|
||||||
inkscape:collect="always" />
|
|
||||||
<linearGradient
|
<linearGradient
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1057.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1057.5318)"
|
||||||
y2="1035.3622"
|
y2="1035.3622"
|
||||||
@ -77,10 +55,20 @@
|
|||||||
id="linearGradient932"
|
id="linearGradient932"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
inkscape:collect="always" />
|
inkscape:collect="always" />
|
||||||
|
<linearGradient
|
||||||
|
y2="1035.3622"
|
||||||
|
x2="12"
|
||||||
|
y1="1035.3622"
|
||||||
|
x1="3"
|
||||||
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1063.5316)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
id="linearGradient936"
|
||||||
|
xlink:href="#linearGradient914"
|
||||||
|
inkscape:collect="always" />
|
||||||
<linearGradient
|
<linearGradient
|
||||||
inkscape:collect="always"
|
inkscape:collect="always"
|
||||||
xlink:href="#linearGradient914"
|
xlink:href="#linearGradient914"
|
||||||
id="linearGradient876"
|
id="linearGradient238"
|
||||||
gradientUnits="userSpaceOnUse"
|
gradientUnits="userSpaceOnUse"
|
||||||
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
gradientTransform="matrix(2,0,0,2,-36.919643,-1051.5318)"
|
||||||
x1="3"
|
x1="3"
|
||||||
@ -117,40 +105,24 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="17.104167"
|
inkscape:zoom="7.9195959"
|
||||||
inkscape:cx="24"
|
inkscape:cx="47.272041"
|
||||||
inkscape:cy="24"
|
inkscape:cy="25.33229"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="g227"
|
inkscape:current-layer="layer5"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:snap-bbox="true"
|
|
||||||
inkscape:bbox-paths="true"
|
|
||||||
inkscape:bbox-nodes="true"
|
|
||||||
inkscape:snap-bbox-edge-midpoints="true"
|
|
||||||
inkscape:snap-bbox-midpoints="true"
|
|
||||||
inkscape:object-paths="true"
|
|
||||||
inkscape:snap-intersection-paths="true"
|
|
||||||
inkscape:object-nodes="true"
|
|
||||||
inkscape:snap-smooth-nodes="true"
|
|
||||||
inkscape:snap-midpoints="true"
|
|
||||||
inkscape:snap-object-midpoints="true"
|
|
||||||
inkscape:snap-center="true"
|
|
||||||
units="px"
|
units="px"
|
||||||
inkscape:window-width="1920"
|
inkscape:window-width="1920"
|
||||||
inkscape:window-height="1018"
|
inkscape:window-height="1018"
|
||||||
inkscape:window-x="-8"
|
inkscape:window-x="-8"
|
||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1">
|
||||||
inkscape:snap-grids="true"
|
|
||||||
showguides="true"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:pagecheckerboard="false">
|
|
||||||
<inkscape:grid
|
<inkscape:grid
|
||||||
type="xygrid"
|
type="xygrid"
|
||||||
id="grid4241" />
|
id="grid10" />
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata4230">
|
id="metadata5">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
<cc:Work
|
<cc:Work
|
||||||
rdf:about="">
|
rdf:about="">
|
||||||
@ -162,28 +134,28 @@
|
|||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer6"
|
|
||||||
inkscape:label="base"
|
inkscape:label="base"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-284.29999)"
|
||||||
sodipodi:insensitive="true">
|
sodipodi:insensitive="true">
|
||||||
<rect
|
<rect
|
||||||
style="fill:none;fill-rule:evenodd"
|
style="fill:none;fill-rule:evenodd"
|
||||||
id="rect4670"
|
id="rect12"
|
||||||
width="48"
|
width="48"
|
||||||
height="48"
|
height="48"
|
||||||
x="0"
|
x="0"
|
||||||
y="0" />
|
y="284.29999" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:label="DB"
|
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer2"
|
||||||
transform="translate(0,-1004.3622)"
|
inkscape:label="db"
|
||||||
style="display:inline"
|
|
||||||
sodipodi:insensitive="true">
|
sodipodi:insensitive="true">
|
||||||
<g
|
<g
|
||||||
|
style="display:inline"
|
||||||
id="g899"
|
id="g899"
|
||||||
transform="translate(36.919643,-0.83030476)"
|
transform="translate(36.919643,-1005.1925)"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
inkscape:export-ydpi="104.53718">
|
inkscape:export-ydpi="104.53718">
|
||||||
<ellipse
|
<ellipse
|
||||||
@ -192,7 +164,7 @@
|
|||||||
cy="1030.1925"
|
cy="1030.1925"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
id="ellipse880"
|
id="ellipse880"
|
||||||
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient238);stroke-width:3.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<ellipse
|
<ellipse
|
||||||
ry="3.9169633"
|
ry="3.9169633"
|
||||||
rx="10.988618"
|
rx="10.988618"
|
||||||
@ -229,272 +201,254 @@
|
|||||||
id="ellipse858"
|
id="ellipse858"
|
||||||
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
style="opacity:1;fill:#bdd1ec;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<ellipse
|
<ellipse
|
||||||
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient908);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#80b3ff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient876);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="ellipse868"
|
id="ellipse868"
|
||||||
cx="-20.919643"
|
cx="-20.919643"
|
||||||
cy="1012.1926"
|
cy="1012.1926"
|
||||||
rx="11"
|
rx="11"
|
||||||
ry="4" />
|
ry="4" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="text846"
|
|
||||||
transform="translate(-71.040515,-24.931905)" />
|
|
||||||
<g
|
|
||||||
aria-label="7"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
id="text846-8"
|
|
||||||
transform="translate(-97.05899,-29.637314)" />
|
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
transform="translate(0,-1004.3622)"
|
|
||||||
id="g227"
|
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
inkscape:label="calc"
|
inkscape:label="calc"
|
||||||
style="display:inline"
|
|
||||||
sodipodi:insensitive="true">
|
sodipodi:insensitive="true">
|
||||||
<g
|
<g
|
||||||
transform="translate(-71.040515,-24.931905)"
|
style="display:inline"
|
||||||
id="g203"
|
id="g265"
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
transform="matrix(0.99121443,0,0,0.99076354,1.131784,-994.12009)">
|
||||||
aria-label="7" />
|
|
||||||
<g
|
|
||||||
transform="translate(-97.05899,-29.637314)"
|
|
||||||
id="g205"
|
|
||||||
style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:25px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
aria-label="7" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
id="rect842"
|
inkscape:export-xdpi="104.53718"
|
||||||
width="9.6322289"
|
y="1020.2319"
|
||||||
height="9.6322527"
|
|
||||||
x="34.952477"
|
x="34.952477"
|
||||||
y="1020.2319"
|
height="9.6322527"
|
||||||
inkscape:export-xdpi="104.53718"
|
width="9.6322289"
|
||||||
inkscape:export-ydpi="104.53718" />
|
id="rect842"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#999999;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
id="rect848"
|
inkscape:export-xdpi="104.53718"
|
||||||
width="19.264458"
|
y="1020.2319"
|
||||||
height="9.6322289"
|
|
||||||
x="15.688016"
|
x="15.688016"
|
||||||
y="1020.2319"
|
height="9.6322289"
|
||||||
inkscape:export-xdpi="104.53718"
|
width="19.264458"
|
||||||
inkscape:export-ydpi="104.53718" />
|
id="rect848"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#7f9db9;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<rect
|
<rect
|
||||||
y="1028.4882"
|
inkscape:export-ydpi="104.53718"
|
||||||
x="18.440083"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="20.640505"
|
|
||||||
width="22.016523"
|
|
||||||
id="rect839"
|
|
||||||
style="opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:url(#linearGradient841);fill-opacity:1;stroke:#3771c8;stroke-width:1.37603271;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
id="rect839"
|
||||||
inkscape:export-ydpi="104.53718" />
|
width="22.016523"
|
||||||
|
height="20.640505"
|
||||||
|
x="18.440083"
|
||||||
|
y="1028.4882" />
|
||||||
<rect
|
<rect
|
||||||
y="1029.1761"
|
inkscape:export-ydpi="104.53718"
|
||||||
x="19.128099"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="2.7520895"
|
|
||||||
width="20.64049"
|
|
||||||
id="rect836"
|
|
||||||
style="opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#3771c8;fill-opacity:1;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
id="rect836"
|
||||||
inkscape:export-ydpi="104.53718" />
|
width="20.64049"
|
||||||
<rect
|
height="2.7520895"
|
||||||
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect947"
|
|
||||||
width="1.3760328"
|
|
||||||
height="1.3760328"
|
|
||||||
x="19.128099"
|
x="19.128099"
|
||||||
|
y="1029.1761" />
|
||||||
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1029.1761"
|
y="1029.1761"
|
||||||
inkscape:export-xdpi="104.53718"
|
x="19.128099"
|
||||||
inkscape:export-ydpi="104.53718" />
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
|
id="rect947"
|
||||||
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
id="rect949"
|
inkscape:export-xdpi="104.53718"
|
||||||
width="13.072311"
|
|
||||||
height="11.008263"
|
|
||||||
x="22.912189"
|
|
||||||
y="1034.3364"
|
y="1034.3364"
|
||||||
inkscape:export-xdpi="104.53718"
|
x="22.912189"
|
||||||
inkscape:export-ydpi="104.53718" />
|
height="11.008263"
|
||||||
|
width="13.072311"
|
||||||
|
id="rect949"
|
||||||
|
style="opacity:1;fill:#e3dedb;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
id="rect951"
|
inkscape:export-xdpi="104.53718"
|
||||||
width="9.6322355"
|
|
||||||
height="2.0640371"
|
|
||||||
x="24.632231"
|
|
||||||
y="1035.3683"
|
y="1035.3683"
|
||||||
inkscape:export-xdpi="104.53718"
|
x="24.632231"
|
||||||
inkscape:export-ydpi="104.53718" />
|
height="2.0640371"
|
||||||
|
width="9.6322355"
|
||||||
|
id="rect951"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
|
x="24.632231"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect953"
|
id="rect953"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="24.632231"
|
|
||||||
y="1038.8085"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
|
x="27.384296"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect955"
|
id="rect955"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="27.384296"
|
|
||||||
y="1038.8085"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
|
x="30.136362"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect957"
|
id="rect957"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="30.136362"
|
|
||||||
y="1038.8085"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1041.5605"
|
||||||
|
x="24.632231"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect959"
|
id="rect959"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="24.632231"
|
|
||||||
y="1041.5605"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1041.5605"
|
||||||
|
x="27.384296"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect961"
|
id="rect961"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="27.384296"
|
|
||||||
y="1041.5605"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1041.5605"
|
||||||
|
x="30.136362"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
id="rect963"
|
id="rect963"
|
||||||
width="1.3760328"
|
style="opacity:1;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="1.3760328"
|
|
||||||
x="30.136362"
|
|
||||||
y="1041.5605"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
y="1038.8085"
|
inkscape:export-ydpi="104.53718"
|
||||||
x="32.888435"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="1.3760328"
|
|
||||||
width="1.3760328"
|
|
||||||
id="rect973"
|
|
||||||
style="opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#d45500;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
id="rect973"
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
|
||||||
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect975"
|
|
||||||
width="1.3760328"
|
width="1.3760328"
|
||||||
height="1.3760328"
|
height="1.3760328"
|
||||||
x="32.888435"
|
x="32.888435"
|
||||||
y="1041.5605"
|
y="1038.8085" />
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1041.5605"
|
||||||
|
x="32.888435"
|
||||||
|
height="1.3760328"
|
||||||
|
width="1.3760328"
|
||||||
|
id="rect975"
|
||||||
|
style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.37603283;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
|
x="24.632231"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
id="rect837"
|
id="rect837"
|
||||||
width="0.68801641"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
height="0.68801641"
|
|
||||||
x="24.632231"
|
|
||||||
y="1038.8085"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
y="1038.8085"
|
inkscape:export-ydpi="104.53718"
|
||||||
x="27.384296"
|
inkscape:export-xdpi="104.53718"
|
||||||
height="0.68801641"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
width="0.68801641"
|
|
||||||
id="rect840"
|
id="rect840"
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect843"
|
|
||||||
width="0.68801641"
|
|
||||||
height="0.68801641"
|
|
||||||
x="30.136362"
|
|
||||||
y="1038.8085"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
|
||||||
y="1041.5605"
|
|
||||||
x="24.632231"
|
|
||||||
height="0.68801641"
|
|
||||||
width="0.68801641"
|
|
||||||
id="rect845"
|
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
id="rect847"
|
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="27.384296"
|
x="27.384296"
|
||||||
y="1041.5605"
|
y="1038.8085" />
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
y="1041.5605"
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
x="30.136362"
|
x="30.136362"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
id="rect849"
|
id="rect843"
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
id="rect851"
|
id="rect845"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
x="32.888428"
|
x="24.632231"
|
||||||
y="1038.8085"
|
y="1041.5605" />
|
||||||
inkscape:export-xdpi="104.53718"
|
|
||||||
inkscape:export-ydpi="104.53718" />
|
|
||||||
<rect
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
y="1041.5605"
|
y="1041.5605"
|
||||||
|
x="27.384296"
|
||||||
|
height="0.68801641"
|
||||||
|
width="0.68801641"
|
||||||
|
id="rect847"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect849"
|
||||||
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="30.136362"
|
||||||
|
y="1041.5605" />
|
||||||
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
|
y="1038.8085"
|
||||||
x="32.888428"
|
x="32.888428"
|
||||||
height="0.68801641"
|
height="0.68801641"
|
||||||
width="0.68801641"
|
width="0.68801641"
|
||||||
id="rect853"
|
id="rect851"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
|
||||||
|
<rect
|
||||||
|
inkscape:export-ydpi="104.53718"
|
||||||
|
inkscape:export-xdpi="104.53718"
|
||||||
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68801641;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
inkscape:export-xdpi="104.53718"
|
id="rect853"
|
||||||
inkscape:export-ydpi="104.53718" />
|
width="0.68801641"
|
||||||
|
height="0.68801641"
|
||||||
|
x="32.888428"
|
||||||
|
y="1041.5605" />
|
||||||
<path
|
<path
|
||||||
inkscape:connector-curvature="0"
|
inkscape:export-ydpi="104.53718"
|
||||||
id="path863-9"
|
|
||||||
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
|
||||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
|
||||||
sodipodi:nodetypes="ccccccc"
|
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
inkscape:export-ydpi="104.53718" />
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
d="m 41.832641,1022.9841 -2.06405,2.064 -2.064049,-2.064 -0.688016,0.688 2.752065,2.752 2.752066,-2.752 z"
|
||||||
|
id="path863-9"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer4"
|
id="layer4"
|
||||||
inkscape:label="cloud"
|
inkscape:label="text_matte"
|
||||||
style="display:inline;opacity:0.65"
|
|
||||||
sodipodi:insensitive="true">
|
sodipodi:insensitive="true">
|
||||||
<rect
|
<rect
|
||||||
ry="4.75"
|
ry="4.75"
|
||||||
rx="5.0833335"
|
rx="4.8333335"
|
||||||
y="1"
|
y="1"
|
||||||
x="1"
|
x="1"
|
||||||
height="19"
|
height="19"
|
||||||
width="30.5"
|
width="29"
|
||||||
id="use4930"
|
id="use4930"
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.98276818;image-rendering:auto"
|
style="display:inline;opacity:0.65;fill:#ffffff;fill-opacity:1;stroke-width:0.95829707;image-rendering:auto"
|
||||||
inkscape:export-xdpi="104.53718"
|
inkscape:export-xdpi="104.53718"
|
||||||
inkscape:export-ydpi="104.53718" />
|
inkscape:export-ydpi="104.53718" />
|
||||||
</g>
|
</g>
|
||||||
@ -506,14 +460,14 @@
|
|||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.34701538px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
id="text3848"
|
id="text3848"
|
||||||
transform="scale(0.99166721,1.0084028)"><tspan
|
transform="scale(0.99166721,1.0084028)"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan3846"
|
id="tspan3846"
|
||||||
x="2.6212206"
|
x="2.6212204"
|
||||||
y="17.529018"
|
y="17.52902"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke">Rx</tspan></text>
|
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.2082119px;line-height:50.43377304px;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';opacity:0;fill:#ec15ec;fill-opacity:1;stroke:#0f001b;stroke-width:0.50433767;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke">Rx</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 20 KiB |
@ -1,117 +0,0 @@
|
|||||||
type
|
|
||||||
TRxSwithBitmap1 = array [0..52] of PChar;
|
|
||||||
TRxSwithBitmap2 = array [0..53] of PChar;
|
|
||||||
const
|
|
||||||
RXSWITCH_OFF : TRxSwithBitmap1 =
|
|
||||||
(
|
|
||||||
'32 48 4 1',
|
|
||||||
'. c None',
|
|
||||||
'# c #000000',
|
|
||||||
'b c #808080',
|
|
||||||
'a c #ffffff',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'....########################....',
|
|
||||||
'....#aaaaaaaaaaaaaaaaaaaaaa#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#a##aaaaaaaaaaaaaaa#b#a#....',
|
|
||||||
'....#a#################bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#################bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....##aaa#########aaa#bbb#a#....',
|
|
||||||
'....##aa#aaaaaaaa#aaa#bbb#a#....',
|
|
||||||
'....#aaa#aaaaaaa#aaa#bbbb#a#....',
|
|
||||||
'....#aa#aaaaaaaa#aaa#bbbb#a#....',
|
|
||||||
'...#aaa#########aaa#bbbbb#a#....',
|
|
||||||
'...#aaaaaaaaaaaaaaa#bbbbb#a#....',
|
|
||||||
'..#aaaaaaaaaaaaaaa#bbbbbb#a#....',
|
|
||||||
'..#################bbbbbb#a#....',
|
|
||||||
'..#aaaaaaaaaaaaaaa#bbbbbb#a#....',
|
|
||||||
'...#aaaaaaaaaaaaaaa#bbbbb#a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaa#bbbb#a#....',
|
|
||||||
'....##aaaaaaaaaaaaaaa#bbb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a##aaaaaaaaaaaaaaa#b#a#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaaaaaaaaa#....',
|
|
||||||
'...########################.....',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................');
|
|
||||||
|
|
||||||
|
|
||||||
RXSWITCH_ON : TRxSwithBitmap2 =
|
|
||||||
(
|
|
||||||
'32 48 5 1',
|
|
||||||
'. c None',
|
|
||||||
'# c #000000',
|
|
||||||
'b c #808080',
|
|
||||||
'c c #ff0000',
|
|
||||||
'a c #ffffff',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'....########################....',
|
|
||||||
'....#aaaaaaaaaaaaaaaaaaaaaa#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#a##aaaaaaaaaaaaaaa#b#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....##aaaaaaaaaaaaaaa#bbb#a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaa#bbbb#a#....',
|
|
||||||
'...#aaaaaaaaaaaaaaa#bbbbb#a#....',
|
|
||||||
'..#aaaaaaaaaaaaaaa#bbbbbb#a#....',
|
|
||||||
'..#################bbbbbb#a#....',
|
|
||||||
'..#aaaaaaaaaaaaaaa#bbbbbb#a#....',
|
|
||||||
'...#aaaaaaaaaaaaaaa#bbbbb#a#....',
|
|
||||||
'...#aaaaaaaaaaaaaaa#bbbbb#a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaa#bbbb#a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaa#bbbb#a#....',
|
|
||||||
'....##aaaaaaaaaaaaaaa#bbb#a#....',
|
|
||||||
'....##aaaaaaaaaaaaaaa#bbb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#################bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaa#########aaa#bb#a#....',
|
|
||||||
'....#a#aaa#ccccccc#aaa#bb#a#....',
|
|
||||||
'....#a#aaa#ccccccc#aaa#bb#a#....',
|
|
||||||
'....#a#aaa#ccccccc#aaa#bb#a#....',
|
|
||||||
'....#a#aaa#ccccccc#aaa#bb#a#....',
|
|
||||||
'....#a#aaa#########aaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#aaaaaaaaaaaaaaa#bb#a#....',
|
|
||||||
'....#a#################bb#a#....',
|
|
||||||
'....#a#bbbbbbbbbbbbbbbb#b#a#....',
|
|
||||||
'....#a##bbbbbbbbbbbbbbbb##a#....',
|
|
||||||
'....#a####################a#....',
|
|
||||||
'....#aaaaaaaaaaaaaaaaaaaaaa#....',
|
|
||||||
'....########################....',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................',
|
|
||||||
'................................');
|
|
@ -150,7 +150,7 @@ type
|
|||||||
property OnOff: TNotifyEvent read FOnOff write FOnOff;
|
property OnOff: TNotifyEvent read FOnOff write FOnOff;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$I RXSWITCH.INC}
|
{$R rxswitch.res}
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -294,7 +294,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TRxSwitch.SetSwitchGlyph(Index: TSwithState; Value: TBitmap);
|
procedure TRxSwitch.SetSwitchGlyph(Index: TSwithState; Value: TBitmap);
|
||||||
|
var
|
||||||
|
S: String;
|
||||||
|
B: TBitmap;
|
||||||
begin
|
begin
|
||||||
|
FBitmaps[Index].Clear;
|
||||||
if Value <> nil then
|
if Value <> nil then
|
||||||
begin
|
begin
|
||||||
FBitmaps[Index].Assign(Value);
|
FBitmaps[Index].Assign(Value);
|
||||||
@ -303,11 +307,17 @@ begin
|
|||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
case Index of
|
case Index of
|
||||||
sw_off: FBitmaps[Index].Handle:=CreatePixmapIndirect(@RXSWITCH_OFF[0],
|
{ sw_off: FBitmaps[Index].Handle:=CreatePixmapIndirect(@RXSWITCH_OFF[0], GetSysColor(COLOR_BTNFACE));
|
||||||
GetSysColor(COLOR_BTNFACE));
|
|
||||||
sw_on: FBitmaps[Index].Handle:=CreatePixmapIndirect(@RXSWITCH_ON[0],
|
sw_on: FBitmaps[Index].Handle:=CreatePixmapIndirect(@RXSWITCH_ON[0],
|
||||||
GetSysColor(COLOR_BTNFACE));
|
GetSysColor(COLOR_BTNFACE));}
|
||||||
|
sw_off:S:='rxswitch_off';
|
||||||
|
sw_on:S:='rxswitch_on';
|
||||||
|
else
|
||||||
|
Exit;
|
||||||
end;
|
end;
|
||||||
|
B:=CreateResBitmap(S);
|
||||||
|
FBitmaps[Index].Assign(B);
|
||||||
|
B.Free;
|
||||||
Exclude(FUserBitmaps, Index);
|
Exclude(FUserBitmaps, Index);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
BIN
components/rx/trunk/rxcontrols/rxswitch.res
Normal file
@ -275,52 +275,52 @@ translate to Lazarus by alexs in 2005 - 2018"/>
|
|||||||
<UnitName Value="rxspin"/>
|
<UnitName Value="rxspin"/>
|
||||||
</Item61>
|
</Item61>
|
||||||
<Item62>
|
<Item62>
|
||||||
<Filename Value="rxcontrols\rxswitch.inc"/>
|
|
||||||
<Type Value="Include"/>
|
|
||||||
</Item62>
|
|
||||||
<Item63>
|
|
||||||
<Filename Value="rxcontrols\rxswitch.pas"/>
|
<Filename Value="rxcontrols\rxswitch.pas"/>
|
||||||
<UnitName Value="rxswitch"/>
|
<UnitName Value="rxswitch"/>
|
||||||
</Item63>
|
</Item62>
|
||||||
<Item64>
|
<Item63>
|
||||||
<Filename Value="rxcontrols\rxsystemservices.pas"/>
|
<Filename Value="rxcontrols\rxsystemservices.pas"/>
|
||||||
<UnitName Value="RxSystemServices"/>
|
<UnitName Value="RxSystemServices"/>
|
||||||
</Item64>
|
</Item63>
|
||||||
<Item65>
|
<Item64>
|
||||||
<Filename Value="rxcontrols\rxtbrsetup.pas"/>
|
<Filename Value="rxcontrols\rxtbrsetup.pas"/>
|
||||||
<UnitName Value="rxtbrsetup"/>
|
<UnitName Value="rxtbrsetup"/>
|
||||||
</Item65>
|
</Item64>
|
||||||
<Item66>
|
<Item65>
|
||||||
<Filename Value="rxcontrols\rxtimeedit.pas"/>
|
<Filename Value="rxcontrols\rxtimeedit.pas"/>
|
||||||
<UnitName Value="RxTimeEdit"/>
|
<UnitName Value="RxTimeEdit"/>
|
||||||
</Item66>
|
</Item65>
|
||||||
<Item67>
|
<Item66>
|
||||||
<Filename Value="rxcontrols\rxtoolbar.pas"/>
|
<Filename Value="rxcontrols\rxtoolbar.pas"/>
|
||||||
<UnitName Value="rxtoolbar"/>
|
<UnitName Value="rxtoolbar"/>
|
||||||
</Item67>
|
</Item66>
|
||||||
<Item68>
|
<Item67>
|
||||||
<Filename Value="rxcontrols\rxtooledit.pas"/>
|
<Filename Value="rxcontrols\rxtooledit.pas"/>
|
||||||
<UnitName Value="rxtooledit"/>
|
<UnitName Value="rxtooledit"/>
|
||||||
</Item68>
|
</Item67>
|
||||||
<Item69>
|
<Item68>
|
||||||
<Filename Value="rxdb\rxdbgrid_popupfilterunit.pas"/>
|
<Filename Value="rxdb\rxdbgrid_popupfilterunit.pas"/>
|
||||||
<UnitName Value="RxDBGrid_PopUpFilterUnit"/>
|
<UnitName Value="RxDBGrid_PopUpFilterUnit"/>
|
||||||
</Item69>
|
</Item68>
|
||||||
<Item70>
|
<Item69>
|
||||||
<Filename Value="rxdb\rxdbverticalgrid.pas"/>
|
<Filename Value="rxdb\rxdbverticalgrid.pas"/>
|
||||||
<UnitName Value="rxdbverticalgrid"/>
|
<UnitName Value="rxdbverticalgrid"/>
|
||||||
</Item70>
|
</Item69>
|
||||||
<Item71>
|
<Item70>
|
||||||
<Filename Value="rxcontrols\rxlclutils.pas"/>
|
<Filename Value="rxcontrols\rxlclutils.pas"/>
|
||||||
<UnitName Value="rxlclutils"/>
|
<UnitName Value="rxlclutils"/>
|
||||||
</Item71>
|
</Item70>
|
||||||
<Item72>
|
<Item71>
|
||||||
<Filename Value="rxcontrols\rxrangesel.pas"/>
|
<Filename Value="rxcontrols\rxrangesel.pas"/>
|
||||||
<UnitName Value="RxRangeSel"/>
|
<UnitName Value="RxRangeSel"/>
|
||||||
</Item72>
|
</Item71>
|
||||||
<Item73>
|
<Item72>
|
||||||
<Filename Value="rxcontrols\rxxmlpropstorage.pas"/>
|
<Filename Value="rxcontrols\rxxmlpropstorage.pas"/>
|
||||||
<UnitName Value="RxXMLPropStorage"/>
|
<UnitName Value="RxXMLPropStorage"/>
|
||||||
|
</Item72>
|
||||||
|
<Item73>
|
||||||
|
<Filename Value="rxcontrols\rxswitch.res"/>
|
||||||
|
<Type Value="Binary"/>
|
||||||
</Item73>
|
</Item73>
|
||||||
</Files>
|
</Files>
|
||||||
<LazDoc Paths="docs;\usr\local\share\lazarus\components\rxnew\docs"/>
|
<LazDoc Paths="docs;\usr\local\share\lazarus\components\rxnew\docs"/>
|
||||||
|