diff --git a/Projects/SAMufasaGUI/framefunctionlist.lfm b/Projects/SAMufasaGUI/framefunctionlist.lfm
new file mode 100644
index 0000000..0dc9341
--- /dev/null
+++ b/Projects/SAMufasaGUI/framefunctionlist.lfm
@@ -0,0 +1,42 @@
+object FunctionListFrame: TFunctionListFrame
+ Left = 0
+ Height = 327
+ Top = 0
+ Width = 113
+ Align = alLeft
+ ClientHeight = 327
+ ClientWidth = 113
+ TabOrder = 0
+ DesignLeft = 401
+ DesignTop = 219
+ object FunctionList: TTreeView
+ Left = 0
+ Height = 300
+ Top = 0
+ Width = 113
+ Align = alClient
+ DefaultItemHeight = 19
+ ReadOnly = True
+ ScrollBars = ssAutoBoth
+ TabOrder = 0
+ OnMouseDown = FunctionListMouseDown
+ OnMouseUp = FunctionListMouseUp
+ Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
+ Items.Data = {
+ F9FFFFFF020001000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF020000000000
+ 00000105000000436F6C6F72FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000
+ 00000000000900000046696E64436F6C6F72FFFFFFFFFFFFFFFFFFFFFFFFFFFF
+ FFFF00000000000000000008000000476574436F6C6F72
+ }
+ end
+ object editSearchList: TEdit
+ Left = 0
+ Height = 27
+ Top = 300
+ Width = 113
+ Align = alBottom
+ OnChange = editSearchListChange
+ OnExit = editSearchListExit
+ TabOrder = 1
+ end
+end
diff --git a/Projects/SAMufasaGUI/framefunctionlist.lrs b/Projects/SAMufasaGUI/framefunctionlist.lrs
new file mode 100644
index 0000000..20aaf8f
--- /dev/null
+++ b/Projects/SAMufasaGUI/framefunctionlist.lrs
@@ -0,0 +1,21 @@
+{ This is an automatically generated lazarus resource file }
+
+LazarusResources.Add('TFunctionListFrame','FORMDATA',[
+ 'TPF0'#18'TFunctionListFrame'#17'FunctionListFrame'#4'Left'#2#0#6'Height'#3'G'
+ +#1#3'Top'#2#0#5'Width'#2'q'#5'Align'#7#6'alLeft'#12'ClientHeight'#3'G'#1#11
+ +'ClientWidth'#2'q'#8'TabOrder'#2#0#10'DesignLeft'#3#145#1#9'DesignTop'#3#219
+ +#0#0#9'TTreeView'#12'FunctionList'#4'Left'#2#0#6'Height'#3','#1#3'Top'#2#0#5
+ +'Width'#2'q'#5'Align'#7#8'alClient'#17'DefaultItemHeight'#2#19#8'ReadOnly'#9
+ +#10'ScrollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#11'OnMouseDown'#7#21'Functi'
+ +'onListMouseDown'#9'OnMouseUp'#7#19'FunctionListMouseUp'#7'Options'#11#17'tv'
+ +'oAutoItemHeight'#16'tvoHideSelection'#21'tvoKeepCollapsedNodes'#11'tvoReadO'
+ +'nly'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoShowRoot'#11'tvoToolTips'#0
+ +#10'Items.Data'#10'w'#0#0#0#249#255#255#255#2#0#1#0#0#0#255#255#255#255#255
+ +#255#255#255#255#255#255#255#255#255#255#255#2#0#0#0#0#0#0#0#1#5#0#0#0'Color'
+ +#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0#0#0#0#0
+ +#0#0#0#9#0#0#0'FindColor'#255#255#255#255#255#255#255#255#255#255#255#255#255
+ +#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'GetColor'#0#0#5'TEdit'#14'editSearchL'
+ +'ist'#4'Left'#2#0#6'Height'#2#27#3'Top'#3','#1#5'Width'#2'q'#5'Align'#7#8'al'
+ +'Bottom'#8'OnChange'#7#20'editSearchListChange'#6'OnExit'#7#18'editSearchLis'
+ +'tExit'#8'TabOrder'#2#1#0#0#0
+]);
diff --git a/Projects/SAMufasaGUI/framefunctionlist.pas b/Projects/SAMufasaGUI/framefunctionlist.pas
new file mode 100644
index 0000000..1648292
--- /dev/null
+++ b/Projects/SAMufasaGUI/framefunctionlist.pas
@@ -0,0 +1,105 @@
+unit framefunctionlist;
+
+{$mode objfpc}{$H+}
+
+interface
+
+uses
+ Classes, SysUtils, FileUtil, LResources, Forms, ComCtrls, StdCtrls, Controls;
+
+type
+
+ { TFunctionListFrame }
+
+ TFunctionListFrame = class(TFrame)
+ editSearchList: TEdit;
+ FunctionList: TTreeView;
+ procedure editSearchListChange(Sender: TObject);
+ procedure editSearchListExit(Sender: TObject);
+ procedure FunctionListMouseDown(Sender: TObject; Button: TMouseButton;
+ Shift: TShiftState; X, Y: Integer);
+ procedure FunctionListMouseUp(Sender: TObject; Button: TMouseButton;
+ Shift: TShiftState; X, Y: Integer);
+ procedure DockFormOnClose(Sender: TObject; var CloseAction: TCloseAction);
+ private
+ { private declarations }
+ public
+ { public declarations }
+ end;
+
+implementation
+
+uses
+ TestUnit, Graphics;
+
+{ TFunctionListFrame }
+
+procedure TFunctionListFrame.editSearchListChange(Sender: TObject);
+var
+ I: Integer;
+begin
+ if(editSearchList.Text = '')then
+ begin
+ editSearchList.Color := clWhite;
+ exit;
+ end;
+ for I := 0 to FunctionList.Items.Count do //WTF LOOPS FAIL. for I := 1 to 3 do ;; would make I 4 after a successful, non-brakeing run :<
+ begin
+ if(I = FunctionList.Items.Count)then break;
+ if(pos(lowercase(editSearchList.Text), lowercase(FunctionList.Items[I].Text)) > 0)then
+ break;
+ end;
+ if(I = FunctionList.Items.Count)then
+ editSearchList.Color := 6711039
+ else
+ editSearchList.Color := clWhite;
+end;
+
+procedure TFunctionListFrame.editSearchListExit(Sender: TObject);
+begin
+ editSearchList.Color := clWhite;
+end;
+
+procedure TFunctionListFrame.DockFormOnClose(Sender: TObject; var CloseAction: TCloseAction);
+begin
+ CloseAction := caHide;
+ Form1.MenuItemFunctionList.Checked := False;
+end;
+
+procedure TFunctionListFrame.FunctionListMouseDown(Sender: TObject;
+ Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
+var
+ N: TTreeNode;
+begin
+ N := Self.FunctionList.GetNodeAt(x, y);
+ if(N = nil)then
+ begin
+ Self.DragKind := dkDock;
+ Self.BeginDrag(false, 40);
+ exit;
+ end;
+ Self.DragKind := dkDrag;
+ if(Button = mbLeft) and (N.Level > 0)then
+ Self.BeginDrag(False, 10);
+end;
+
+procedure TFunctionListFrame.FunctionListMouseUp(Sender: TObject;
+ Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
+var
+ F: ^TCustomDockForm;
+begin
+ if(Self.Parent is TCustomDockForm)then
+ begin
+ F := @Self.Parent; //can't typecast parent as a TCustomDockForm
+ F^.Caption := 'Function List';
+ F^.BorderStyle := bsSizeable;
+ F^.OnClose := @DockFormOnClose;
+ Form1.Splitter1.Hide;
+ end;
+end;
+
+initialization
+ {$I framefunctionlist.lrs}
+
+end.
+
diff --git a/Projects/SAMufasaGUI/framescript.lfm b/Projects/SAMufasaGUI/framescript.lfm
index 3776aae..5c977a7 100644
--- a/Projects/SAMufasaGUI/framescript.lfm
+++ b/Projects/SAMufasaGUI/framescript.lfm
@@ -6,8 +6,8 @@ object ScriptFrame: TScriptFrame
ClientHeight = 328
ClientWidth = 397
TabOrder = 0
- DesignLeft = 579
- DesignTop = 195
+ DesignLeft = 788
+ DesignTop = 420
inline SynEdit: TSynEdit
Left = 0
Height = 328
diff --git a/Projects/SAMufasaGUI/framescript.lrs b/Projects/SAMufasaGUI/framescript.lrs
index e90a287..81a7354 100644
--- a/Projects/SAMufasaGUI/framescript.lrs
+++ b/Projects/SAMufasaGUI/framescript.lrs
@@ -3,7 +3,7 @@
LazarusResources.Add('TScriptFrame','FORMDATA',[
'TPF0'#12'TScriptFrame'#11'ScriptFrame'#4'Left'#2#0#6'Height'#3'H'#1#3'Top'#2
+#0#5'Width'#3#141#1#12'ClientHeight'#3'H'#1#11'ClientWidth'#3#141#1#8'TabOrd'
- +'er'#2#0#10'DesignLeft'#3'C'#2#9'DesignTop'#3#195#0#0#244#8'TSynEdit'#7'SynE'
+ +'er'#2#0#10'DesignLeft'#3#20#3#9'DesignTop'#3#164#1#0#244#8'TSynEdit'#7'SynE'
+'dit'#4'Left'#2#0#6'Height'#3'H'#1#3'Top'#2#0#5'Width'#3#141#1#5'Align'#7#8
+'alClient'#11'Font.Height'#2#243#9'Font.Name'#6#11'Courier New'#10'Font.Pitc'
+'h'#7#7'fpFixed'#12'Font.Quality'#7#16'fqNonAntialiased'#11'ParentColor'#8#10
diff --git a/Projects/SAMufasaGUI/framescript.pas b/Projects/SAMufasaGUI/framescript.pas
index 7f4a021..cf80d76 100644
--- a/Projects/SAMufasaGUI/framescript.pas
+++ b/Projects/SAMufasaGUI/framescript.pas
@@ -100,7 +100,7 @@ end;
procedure TScriptFrame.SynEditDragOver(Sender, Source: TObject; X, Y: Integer;
State: TDragState; var Accept: Boolean);
begin
- Accept := Source = Form1.FunctionList;
+ Accept := Source = Form1.frmFunctionList;
if(Accept)then
begin
SynEdit.CaretXY := SynEdit.PixelsToLogicalPos(point(x, y));
diff --git a/Projects/SAMufasaGUI/project1.lpi b/Projects/SAMufasaGUI/project1.lpi
index 4d8c593..8233e7f 100644
--- a/Projects/SAMufasaGUI/project1.lpi
+++ b/Projects/SAMufasaGUI/project1.lpi
@@ -10,7 +10,7 @@
-
+
@@ -36,14 +36,14 @@
-
+
-
+
@@ -54,83 +54,83 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -139,13 +139,10 @@
-
-
+
+
-
-
-
@@ -153,47 +150,47 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -220,7 +217,7 @@
-
+
@@ -245,15 +242,15 @@
-
+
-
-
+
+
@@ -261,7 +258,7 @@
-
+
@@ -269,7 +266,7 @@
-
+
@@ -278,14 +275,14 @@
-
+
-
+
@@ -300,60 +297,60 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -361,13 +358,13 @@
-
+
-
+
@@ -384,13 +381,13 @@
-
+
-
+
@@ -403,119 +400,119 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -530,20 +527,20 @@
-
+
-
+
-
-
+
+
@@ -551,32 +548,32 @@
-
+
-
+
-
+
-
+
-
+
@@ -591,65 +588,65 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -657,7 +654,7 @@
-
+
@@ -666,7 +663,7 @@
-
+
@@ -674,7 +671,7 @@
-
+
@@ -683,7 +680,7 @@
-
+
@@ -693,7 +690,7 @@
-
+
@@ -701,7 +698,7 @@
-
+
@@ -709,27 +706,27 @@
-
+
-
+
-
+
-
+
@@ -737,7 +734,7 @@
-
+
@@ -746,14 +743,14 @@
-
+
-
-
+
+
@@ -761,21 +758,21 @@
-
+
-
+
-
+
@@ -790,28 +787,28 @@
-
+
-
+
-
+
-
+
@@ -819,7 +816,7 @@
-
+
@@ -828,116 +825,116 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -952,49 +949,49 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1004,14 +1001,14 @@
-
+
-
+
@@ -1021,7 +1018,7 @@
-
+
@@ -1031,14 +1028,14 @@
-
+
-
+
@@ -1048,7 +1045,7 @@
-
+
@@ -1058,13 +1055,13 @@
-
+
-
+
@@ -1074,14 +1071,14 @@
-
+
-
+
@@ -1089,13 +1086,13 @@
-
+
-
+
@@ -1106,35 +1103,35 @@
-
+
-
+
-
+
-
+
-
+
@@ -1142,9 +1139,9 @@
-
-
-
+
+
+
@@ -1152,66 +1149,66 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1221,238 +1218,238 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1463,7 +1460,7 @@
-
+
@@ -1471,37 +1468,37 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1509,202 +1506,202 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1714,13 +1711,13 @@
-
+
-
+
@@ -1728,7 +1725,7 @@
-
+
@@ -1737,7 +1734,7 @@
-
+
@@ -1748,73 +1745,73 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -1822,157 +1819,244 @@
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Projects/SAMufasaGUI/project1.lpr b/Projects/SAMufasaGUI/project1.lpr
index 5c21692..973e49e 100644
--- a/Projects/SAMufasaGUI/project1.lpr
+++ b/Projects/SAMufasaGUI/project1.lpr
@@ -30,7 +30,8 @@ uses
cthreads, cmem,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
- Forms, LResources, testunit,colourhistory, About, internets, debugimage;
+ Forms, LResources, testunit, colourhistory, About, internets, debugimage,
+ framefunctionlist;
{$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
diff --git a/Projects/SAMufasaGUI/testunit.lfm b/Projects/SAMufasaGUI/testunit.lfm
index cac58a0..4f3ce73 100644
--- a/Projects/SAMufasaGUI/testunit.lfm
+++ b/Projects/SAMufasaGUI/testunit.lfm
@@ -1,9 +1,9 @@
object Form1: TForm1
- Left = 541
+ Left = 474
Height = 557
- Top = 276
+ Top = 246
Width = 732
- ActiveControl = PageControl1
+ ActiveControl = ScriptPanel
Caption = 'THA FUKING MUFASA'
ClientHeight = 532
ClientWidth = 732
@@ -224,10 +224,10 @@ object Form1: TForm1
OnDockDrop = ScriptPanelDockDrop
OnDockOver = ScriptPanelDockOver
object PageControl1: TPageControl
- Left = 123
+ Left = 118
Height = 293
Top = 0
- Width = 609
+ Width = 614
Align = alClient
Images = Mufasa_Image_List
PopupMenu = TabPopup
@@ -372,35 +372,27 @@ object Form1: TForm1
TabOrder = 1
end
end
- object FunctionList: TTreeView
- Left = 0
- Height = 293
- Top = 0
- Width = 118
- Align = alLeft
- DefaultItemHeight = 19
- ReadOnly = True
- ScrollBars = ssAutoBoth
- TabOrder = 2
- Visible = False
- OnMouseDown = FunctionListMouseDown
- OnMouseUp = FunctionListMouseUp
- Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips]
- Items.Data = {
- F9FFFFFF020001000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF020000000000
- 00000105000000436F6C6F72FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000
- 00000000000900000046696E64436F6C6F72FFFFFFFFFFFFFFFFFFFFFFFFFFFF
- FFFF00000000000000000008000000476574436F6C6F72
- }
- end
object Splitter1: TSplitter
- Left = 118
+ Left = 113
Height = 293
Top = 0
Width = 5
OnCanResize = Splitter1CanResize
Visible = False
end
+ inline frmFunctionList: TFunctionListFrame
+ Height = 293
+ ClientHeight = 293
+ TabOrder = 3
+ Visible = False
+ inherited FunctionList: TTreeView
+ Height = 266
+ end
+ inherited editSearchList: TEdit
+ Top = 266
+ OnExit = nil
+ end
+ end
end
object MainMenu1: TMainMenu
left = 528
diff --git a/Projects/SAMufasaGUI/testunit.lrs b/Projects/SAMufasaGUI/testunit.lrs
index 9b14036..675cca3 100644
--- a/Projects/SAMufasaGUI/testunit.lrs
+++ b/Projects/SAMufasaGUI/testunit.lrs
@@ -1,9 +1,9 @@
{ This is an automatically generated lazarus resource file }
LazarusResources.Add('TForm1','FORMDATA',[
- 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#29#2#6'Height'#3'-'#2#3'Top'#3#20#1#5'Wid'
- +'th'#3#220#2#13'ActiveControl'#7#12'PageControl1'#7'Caption'#6#17'THA FUKING'
- +' MUFASA'#12'ClientHeight'#3#20#2#11'ClientWidth'#3#220#2#10'KeyPreview'#9#4
+ 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#218#1#6'Height'#3'-'#2#3'Top'#3#246#0#5'W'
+ +'idth'#3#220#2#13'ActiveControl'#7#11'ScriptPanel'#7'Caption'#6#17'THA FUKIN'
+ +'G MUFASA'#12'ClientHeight'#3#20#2#11'ClientWidth'#3#220#2#10'KeyPreview'#9#4
+'Menu'#7#9'MainMenu1'#7'OnClose'#7#9'FormClose'#8'OnCreate'#7#10'FormCreate'
+#9'OnDestroy'#7#11'FormDestroy'#10'OnShortCut'#7#13'FormShortCuts'#8'Positio'
+'n'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.29'#7'Visible'#9#0#8'TToolBa'
@@ -57,8 +57,8 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#24#5'Width'#3#220#2#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'Cl'
+'ientHeight'#3'H'#1#11'ClientWidth'#3#220#2#8'DockSite'#9#8'TabOrder'#2#4#10
+'OnDockDrop'#7#19'ScriptPanelDockDrop'#10'OnDockOver'#7#19'ScriptPanelDockOv'
- +'er'#0#12'TPageControl'#12'PageControl1'#4'Left'#2'{'#6'Height'#3'%'#1#3'Top'
- +#2#0#5'Width'#3'a'#2#5'Align'#7#8'alClient'#6'Images'#7#17'Mufasa_Image_List'
+ +'er'#0#12'TPageControl'#12'PageControl1'#4'Left'#2'v'#6'Height'#3'%'#1#3'Top'
+ +#2#0#5'Width'#3'f'#2#5'Align'#7#8'alClient'#6'Images'#7#17'Mufasa_Image_List'
+#9'PopupMenu'#7#8'TabPopup'#8'TabOrder'#2#0#8'OnChange'#7#18'PageControl1Cha'
+'nge'#10'OnChanging'#7#20'PageControl1Changing'#14'OnContextPopup'#7#24'Page'
+'Control1ContextPopup'#10'OnDragDrop'#7#20'PageControl1DragDrop'#10'OnDragOv'
@@ -146,208 +146,200 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#10'OnKeyPress'#7#25'LabeledEditSearchKeyPress'#0#0#9'TCheckBox'#17'CheckBox'
+'MatchCase'#4'Left'#3'@'#1#6'Height'#2#22#3'Top'#2#7#5'Width'#2'b'#7'Caption'
+#6#10'Match case'#7'OnClick'#7#22'CheckBoxMatchCaseClick'#8'TabOrder'#2#1#0#0
- +#0#9'TTreeView'#12'FunctionList'#4'Left'#2#0#6'Height'#3'%'#1#3'Top'#2#0#5'W'
- +'idth'#2'v'#5'Align'#7#6'alLeft'#17'DefaultItemHeight'#2#19#8'ReadOnly'#9#10
- +'ScrollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#2#7'Visible'#8#11'OnMouseDown'#7
- +#21'FunctionListMouseDown'#9'OnMouseUp'#7#19'FunctionListMouseUp'#7'Options'
- +#11#17'tvoAutoItemHeight'#16'tvoHideSelection'#21'tvoKeepCollapsedNodes'#11
- +'tvoReadOnly'#14'tvoShowButtons'#12'tvoShowLines'#11'tvoShowRoot'#11'tvoTool'
- +'Tips'#0#10'Items.Data'#10'w'#0#0#0#249#255#255#255#2#0#1#0#0#0#255#255#255
- +#255#255#255#255#255#255#255#255#255#255#255#255#255#2#0#0#0#0#0#0#0#1#5#0#0
- +#0'Color'#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#0#0
- +#0#0#0#0#0#0#0#9#0#0#0'FindColor'#255#255#255#255#255#255#255#255#255#255#255
- +#255#255#255#255#255#0#0#0#0#0#0#0#0#0#8#0#0#0'GetColor'#0#0#9'TSplitter'#9
- +'Splitter1'#4'Left'#2'v'#6'Height'#3'%'#1#3'Top'#2#0#5'Width'#2#5#11'OnCanRe'
- +'size'#7#18'Splitter1CanResize'#7'Visible'#8#0#0#0#9'TMainMenu'#9'MainMenu1'
- +#4'left'#3#16#2#0#9'TMenuItem'#8'MenuFile'#7'Caption'#6#5'&File'#13'SubMenuI'
- +'mages'#7#17'Mufasa_Image_List'#0#9'TMenuItem'#11'MenuItemNew'#6'Action'#7#15
- +'ActionNewScript'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'
- +#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0
- +#0#0#0#0#0#0#0#0#255#255#255#0#187'j4k'#186'e0'#188#187'f1'#237#186'f0'#247
- +#186'f0'#247#186'f0'#247#186'e0'#247#186'e/'#247#185'e.'#247#185'e.'#247#185
- +'d.'#247#185'd.'#239#183'b,'#189#183'b.c'#255#255#255#0#255#255#255#0#188'i3'
- +#222#248#241#234#242#247#236#223#253#246#235#222#255#246#234#222#255#246#234
- +#220#255#246#234#220#255#250#243#235#255#250#243#235#255#250#242#234#255#252
- +#247#243#255#252#248#244#253#254#254#253#240#183'`*'#213#255#255#255#0#255
- +#255#255#0#191'q8'#245#245#235#223#254#253#191'h'#255#252#189'g'#255#251#190
- +'e'#255#252#190'd'#255#252#190'd'#255#252#189'b'#255#251#189'c'#255#251#188
- +'a'#255#252#190'`'#255#252#188'b'#255#253#251#248#253#185'd-'#243#255#255#255
- +#0#255#255#255#0#193'x<'#247#247#237#227#255#253#194'n'#255#255#216#160#255
- +#255#215#158#255#255#214#155#255#255#215#152#255#255#214#150#255#255#214#149
- +#255#255#213#148#255#255#212#147#255#251#190'e'#255#251#247#244#255#187'g1'
- +#247#255#255#255#0#255#255#255#0#196'|@'#247#247#240#230#255#248#180'U'#255
- +#247#180'V'#255#247#181'T'#255#248#180'S'#255#248#178'S'#255#247#179'R'#255
- +#247#179'R'#255#247#178'Q'#255#247#178'O'#255#247#178'O'#255#252#249#245#255
- +#191'o6'#247#255#255#255#0#255#255#255#0#197#128'B'#247#248#241#232#255#254
- +#229#213#255#253#229#211#255#253#229#211#255#252#229#211#255#252#229#211#255
- +#252#228#209#255#252#226#206#255#252#226#204#255#251#224#201#255#251#225#200
- +#255#253#250#247#255#193'v;'#247#255#255#255#0#255#255#255#0#197#130'E'#247
- +#248#242#235#255#254#231#214#255#253#231#214#255#253#231#214#255#253#231#214
- +#255#253#230#213#255#253#229#211#255#252#228#209#255#252#226#205#255#251#225
- +#203#255#251#225#201#255#251#247#242#255#197'|?'#247#255#255#255#0#255#255
- +#255#0#198#132'G'#247#249#243#236#255#254#232#214#255#254#232#215#255#253#231
- +#214#255#253#231#214#255#253#231#213#255#253#229#211#255#251#228#208#255#251
- +#227#204#255#250#223#199#255#250#223#198#255#250#242#234#255#198#128'B'#247
- +#255#255#255#0#255#255#255#0#198#136'I'#247#249#244#237#255#254#232#216#255
- +#254#232#216#255#254#232#215#255#254#231#214#255#253#229#211#255#252#228#209
- +#255#251#225#204#255#250#224#199#255#249#221#195#255#248#220#194#255#250#244
- +#237#255#198#130'E'#247#255#255#255#0#255#255#255#0#198#136'J'#247#249#244
- +#239#255#254#231#215#255#253#231#214#255#253#231#213#255#253#230#212#255#252
- ,#230#210#255#251#225#204#255#250#223#199#255#248#220#194#255#246#218#189#255
- +#246#216#187#255#250#244#239#255#198#131'F'#247#255#255#255#0#255#255#255#0
- +#198#137'K'#247#249#244#240#255#252#230#211#255#252#230#212#255#253#231#211
- +#255#252#228#209#255#251#227#205#255#250#224#200#255#248#220#194#255#245#214
- +#187#255#243#212#181#255#241#210#179#255#248#244#240#255#196#130'F'#247#255
- +#255#255#0#255#255#255#0#198#137'K'#247#249#245#241#255#252#227#207#255#251
- +#228#208#255#252#228#207#255#252#227#205#255#250#225#202#255#249#221#196#255
- +#246#217#188#255#244#233#223#255#247#242#236#255#251#247#243#255#245#239#233
- +#255#194'~E'#251#255#255#255#0#255#255#255#0#198#137'L'#246#249#245#241#255
- +#252#227#205#255#251#227#206#255#251#227#205#255#251#226#203#255#249#224#200
- +#255#248#220#194#255#245#214#186#255#253#251#248#255#252#230#205#255#250#229
- +#201#255#226#182#132#255#191'yB'#166#255#255#255#0#255#255#255#0#197#136'K'
- +#234#250#246#242#252#250#224#199#255#251#225#201#255#251#226#201#255#251#224
- +#200#255#249#223#197#255#248#219#193#255#244#214#184#255#255#251#248#255#246
- +#216#180#255#225#176'}'#255#219#146'd'#246#180'k>'#7#255#255#255#0#255#255
- +#255#0#196#133'I'#195#247#242#236#236#248#244#238#252#248#244#237#255#248#243
- +#237#255#248#243#237#255#248#243#237#255#248#242#236#255#247#242#236#255#242
- +#230#215#255#226#178'}'#255#219#148'e'#245#179'h;'#7#255#255#255#0#255#255
- +#255#0#255#255#255#0#193'}D`'#200#139'M'#187#200#140'O'#238#200#140'O'#246
- +#200#140'O'#247#200#140'O'#247#200#141'O'#247#201#140'O'#247#199#139'O'#247
- +#197#137'K'#212#196'v;'#145#179'h<'#6#255#255#255#0#255#255#255#0#255#255#255
- +#0#13'SubMenuImages'#7#17'Mufasa_Image_List'#7'OnClick'#7#16'ActionNewExecut'
- +'e'#0#0#9'TMenuItem'#15'MenuItemDivider'#7'Caption'#6#1'-'#0#0#9'TMenuItem'
- +#12'MenuItemOpen'#6'Action'#7#16'ActionOpenScript'#11'Bitmap.Data'#10':'#4#0
- +#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0
- +#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0','#134#216#209'-'#136#216
- +#247'-'#135#216#247'-'#136#216#247'-'#136#216#247'-'#136#216#247'-'#136#216
- +#247'-'#136#216#247'-'#136#216#247'-'#136#216#247'-'#136#216#247'-'#135#216
- +#247'-'#136#216#247','#134#216#209#255#255#255#0#255#255#255#0'3'#142#217#251
- +#220#240#250#255#152#225#246#255#149#224#246#255#146#223#246#255#142#222#245
- +#255#137#220#245#255#133#218#244#255#128#217#244#255'z'#215#243#255't'#213
- +#243#255'p'#211#242#255#194#234#248#255'5'#148#218#255#255#255#255#0#255#255
- +#255#0'5'#148#218#247#239#250#254#255#147#229#248#255#143#228#248#255#137#227
- +#248#255#130#225#247#255'z'#223#247#255'q'#222#246#255'g'#219#245#255'['#216
- +#244#255'M'#212#243#255'@'#209#242#255#202#242#251#255'5'#148#218#255#255#255
- +#255#0#255#255#255#0'6'#154#218#248#242#250#253#255#148#230#248#255#146#229
- +#248#255#144#229#248#255#139#227#248#255#134#226#247#255#127#225#247#255'w'
- +#222#246#255'l'#220#246#255'^'#217#244#255'O'#213#243#255#204#242#251#255'5'
- +#148#218#255#255#255#255#0#255#255#255#0'6'#161#218#249#246#252#254#255#148
- +#229#248#255#147#229#248#255#147#229#248#255#145#229#248#255#147#219#233#255
- +#147#215#227#255#147#210#220#255#144#206#215#255#140#200#207#255#134#193#198
- +#255#201#216#214#255'5'#148#218#255#197'tD'#232#202#127'S'#241'7'#166#218#250
- +#254#255#255#255#248#253#255#255#246#253#255#255#245#252#255#255#243#252#254
- +#255#154#228#244#255#154#230#247#255#155#230#246#255#157#229#245#255#158#229
- +#245#255#159#229#244#255#218#243#248#255'5'#148#218#255#253#244#238#255#202
- +#128'T'#249'5'#171#218#250#232#246#251#255'p'#188#231#255'U'#170#226#255'M'
- +#165#224#255#145#201#235#255#250#243#239#255#253#254#253#255#255#253#252#255
- +#255#253#252#255#254#253#252#255#254#252#251#255#254#254#253#255'5'#148#218
- +#255#239#242#232#255#206#129'V'#255'6'#170#218#242#241#250#253#255#148#222
- +#245#255#147#220#244#255'd'#188#233#255'5'#148#218#255'5'#148#218#255'5'#148
- +#218#255'5'#148#218#255'5'#148#218#255'5'#148#218#255'5'#148#218#255'5'#148
- +#218#255'5'#148#218#255#251#246#239#255#204#131'U'#254'5'#175#218#240#247#252
- +#254#255#142#228#248#255#145#222#245#255#159#224#245#255#172#225#246#255#202
- +#132'R'#255#255#247#241#255#255#233#217#255#255#234#219#255#255#233#217#255
- +#255#231#215#255#255#229#210#255#255#226#203#255#255#247#241#255#203#133'U'
- +#254'6'#179#218#248#253#254#254#255#254#255#255#255#254#254#255#255#253#254
- +#255#255#254#255#255#255#228#186#145#255#255#247#240#255#255#231#213#255#253
- +#231#214#255#253#230#212#255#252#228#208#255#251#227#203#255#250#220#194#255
- +#254#243#232#255#204#134'V'#254'4'#180#217#208'^'#194#225#250'`'#195#226#250
- +'`'#195#226#250'`'#195#226#250'_'#195#226#250#228#187#145#255#255#247#242#255
- +#254#231#213#255#254#231#213#255#253#229#209#255#250#224#202#255#249#222#196
- +#255#247#217#188#255#253#242#231#255#204#135'W'#254#255#255#255#0#255#255#255
- +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#228#187#146#255
- +#254#247#241#255#252#229#210#255#252#228#209#255#251#226#204#255#249#221#196
- ,#255#246#215#187#255#243#209#175#255#250#239#228#255#204#135'X'#254#255#255
+ +#0#9'TSplitter'#9'Splitter1'#4'Left'#2'q'#6'Height'#3'%'#1#3'Top'#2#0#5'Widt'
+ +'h'#2#5#11'OnCanResize'#7#18'Splitter1CanResize'#7'Visible'#8#0#0#244#18'TFu'
+ +'nctionListFrame'#15'frmFunctionList'#6'Height'#3'%'#1#12'ClientHeight'#3'%'
+ +#1#8'TabOrder'#2#3#7'Visible'#8#0#241#9'TTreeView'#12'FunctionList'#6'Height'
+ +#3#10#1#0#0#241#5'TEdit'#14'editSearchList'#3'Top'#3#10#1#6'OnExit'#13#0#0#0
+ +#0#9'TMainMenu'#9'MainMenu1'#4'left'#3#16#2#0#9'TMenuItem'#8'MenuFile'#7'Cap'
+ +'tion'#6#5'&File'#13'SubMenuImages'#7#17'Mufasa_Image_List'#0#9'TMenuItem'#11
+ +'MenuItemNew'#6'Action'#7#15'ActionNewScript'#11'Bitmap.Data'#10':'#4#0#0'6'
+ +#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0
+ +#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#187'j4k'#186'e0'
+ +#188#187'f1'#237#186'f0'#247#186'f0'#247#186'f0'#247#186'e0'#247#186'e/'#247
+ +#185'e.'#247#185'e.'#247#185'd.'#247#185'd.'#239#183'b,'#189#183'b.c'#255#255
+ +#255#0#255#255#255#0#188'i3'#222#248#241#234#242#247#236#223#253#246#235#222
+ +#255#246#234#222#255#246#234#220#255#246#234#220#255#250#243#235#255#250#243
+ +#235#255#250#242#234#255#252#247#243#255#252#248#244#253#254#254#253#240#183
+ +'`*'#213#255#255#255#0#255#255#255#0#191'q8'#245#245#235#223#254#253#191'h'
+ +#255#252#189'g'#255#251#190'e'#255#252#190'd'#255#252#190'd'#255#252#189'b'
+ +#255#251#189'c'#255#251#188'a'#255#252#190'`'#255#252#188'b'#255#253#251#248
+ +#253#185'd-'#243#255#255#255#0#255#255#255#0#193'x<'#247#247#237#227#255#253
+ +#194'n'#255#255#216#160#255#255#215#158#255#255#214#155#255#255#215#152#255
+ +#255#214#150#255#255#214#149#255#255#213#148#255#255#212#147#255#251#190'e'
+ +#255#251#247#244#255#187'g1'#247#255#255#255#0#255#255#255#0#196'|@'#247#247
+ +#240#230#255#248#180'U'#255#247#180'V'#255#247#181'T'#255#248#180'S'#255#248
+ +#178'S'#255#247#179'R'#255#247#179'R'#255#247#178'Q'#255#247#178'O'#255#247
+ +#178'O'#255#252#249#245#255#191'o6'#247#255#255#255#0#255#255#255#0#197#128
+ +'B'#247#248#241#232#255#254#229#213#255#253#229#211#255#253#229#211#255#252
+ +#229#211#255#252#229#211#255#252#228#209#255#252#226#206#255#252#226#204#255
+ +#251#224#201#255#251#225#200#255#253#250#247#255#193'v;'#247#255#255#255#0
+ +#255#255#255#0#197#130'E'#247#248#242#235#255#254#231#214#255#253#231#214#255
+ +#253#231#214#255#253#231#214#255#253#230#213#255#253#229#211#255#252#228#209
+ +#255#252#226#205#255#251#225#203#255#251#225#201#255#251#247#242#255#197'|?'
+ +#247#255#255#255#0#255#255#255#0#198#132'G'#247#249#243#236#255#254#232#214
+ +#255#254#232#215#255#253#231#214#255#253#231#214#255#253#231#213#255#253#229
+ +#211#255#251#228#208#255#251#227#204#255#250#223#199#255#250#223#198#255#250
+ +#242#234#255#198#128'B'#247#255#255#255#0#255#255#255#0#198#136'I'#247#249
+ +#244#237#255#254#232#216#255#254#232#216#255#254#232#215#255#254#231#214#255
+ +#253#229#211#255#252#228#209#255#251#225#204#255#250#224#199#255#249#221#195
+ +#255#248#220#194#255#250#244#237#255#198#130'E'#247#255#255#255#0#255#255#255
+ +#0#198#136'J'#247#249#244#239#255#254#231#215#255#253#231#214#255#253#231#213
+ +#255#253#230#212#255#252#230#210#255#251#225#204#255#250#223#199#255#248#220
+ +#194#255#246#218#189#255#246#216#187#255#250#244#239#255#198#131'F'#247#255
+ +#255#255#0#255#255#255#0#198#137'K'#247#249#244#240#255#252#230#211#255#252
+ +#230#212#255#253#231#211#255#252#228#209#255#251#227#205#255#250#224#200#255
+ +#248#220#194#255#245#214#187#255#243#212#181#255#241#210#179#255#248#244#240
+ +#255#196#130'F'#247#255#255#255#0#255#255#255#0#198#137'K'#247#249#245#241
+ +#255#252#227#207#255#251#228#208#255#252#228#207#255#252#227#205#255#250#225
+ +#202#255#249#221#196#255#246#217#188#255#244#233#223#255#247#242#236#255#251
+ ,#247#243#255#245#239#233#255#194'~E'#251#255#255#255#0#255#255#255#0#198#137
+ +'L'#246#249#245#241#255#252#227#205#255#251#227#206#255#251#227#205#255#251
+ +#226#203#255#249#224#200#255#248#220#194#255#245#214#186#255#253#251#248#255
+ +#252#230#205#255#250#229#201#255#226#182#132#255#191'yB'#166#255#255#255#0
+ +#255#255#255#0#197#136'K'#234#250#246#242#252#250#224#199#255#251#225#201#255
+ +#251#226#201#255#251#224#200#255#249#223#197#255#248#219#193#255#244#214#184
+ +#255#255#251#248#255#246#216#180#255#225#176'}'#255#219#146'd'#246#180'k>'#7
+ +#255#255#255#0#255#255#255#0#196#133'I'#195#247#242#236#236#248#244#238#252
+ +#248#244#237#255#248#243#237#255#248#243#237#255#248#243#237#255#248#242#236
+ +#255#247#242#236#255#242#230#215#255#226#178'}'#255#219#148'e'#245#179'h;'#7
+ +#255#255#255#0#255#255#255#0#255#255#255#0#193'}D`'#200#139'M'#187#200#140'O'
+ +#238#200#140'O'#246#200#140'O'#247#200#140'O'#247#200#141'O'#247#201#140'O'
+ +#247#199#139'O'#247#197#137'K'#212#196'v;'#145#179'h<'#6#255#255#255#0#255
+ +#255#255#0#255#255#255#0#13'SubMenuImages'#7#17'Mufasa_Image_List'#7'OnClick'
+ +#7#16'ActionNewExecute'#0#0#9'TMenuItem'#15'MenuItemDivider'#7'Caption'#6#1
+ +'-'#0#0#9'TMenuItem'#12'MenuItemOpen'#6'Action'#7#16'ActionOpenScript'#11'Bi'
+ +'tmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0
+ +#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0','#134
+ +#216#209'-'#136#216#247'-'#135#216#247'-'#136#216#247'-'#136#216#247'-'#136
+ +#216#247'-'#136#216#247'-'#136#216#247'-'#136#216#247'-'#136#216#247'-'#136
+ +#216#247'-'#135#216#247'-'#136#216#247','#134#216#209#255#255#255#0#255#255
+ +#255#0'3'#142#217#251#220#240#250#255#152#225#246#255#149#224#246#255#146#223
+ +#246#255#142#222#245#255#137#220#245#255#133#218#244#255#128#217#244#255'z'
+ +#215#243#255't'#213#243#255'p'#211#242#255#194#234#248#255'5'#148#218#255#255
+ +#255#255#0#255#255#255#0'5'#148#218#247#239#250#254#255#147#229#248#255#143
+ +#228#248#255#137#227#248#255#130#225#247#255'z'#223#247#255'q'#222#246#255'g'
+ +#219#245#255'['#216#244#255'M'#212#243#255'@'#209#242#255#202#242#251#255'5'
+ +#148#218#255#255#255#255#0#255#255#255#0'6'#154#218#248#242#250#253#255#148
+ +#230#248#255#146#229#248#255#144#229#248#255#139#227#248#255#134#226#247#255
+ +#127#225#247#255'w'#222#246#255'l'#220#246#255'^'#217#244#255'O'#213#243#255
+ +#204#242#251#255'5'#148#218#255#255#255#255#0#255#255#255#0'6'#161#218#249
+ +#246#252#254#255#148#229#248#255#147#229#248#255#147#229#248#255#145#229#248
+ +#255#147#219#233#255#147#215#227#255#147#210#220#255#144#206#215#255#140#200
+ +#207#255#134#193#198#255#201#216#214#255'5'#148#218#255#197'tD'#232#202#127
+ +'S'#241'7'#166#218#250#254#255#255#255#248#253#255#255#246#253#255#255#245
+ +#252#255#255#243#252#254#255#154#228#244#255#154#230#247#255#155#230#246#255
+ +#157#229#245#255#158#229#245#255#159#229#244#255#218#243#248#255'5'#148#218
+ +#255#253#244#238#255#202#128'T'#249'5'#171#218#250#232#246#251#255'p'#188#231
+ +#255'U'#170#226#255'M'#165#224#255#145#201#235#255#250#243#239#255#253#254
+ +#253#255#255#253#252#255#255#253#252#255#254#253#252#255#254#252#251#255#254
+ +#254#253#255'5'#148#218#255#239#242#232#255#206#129'V'#255'6'#170#218#242#241
+ +#250#253#255#148#222#245#255#147#220#244#255'd'#188#233#255'5'#148#218#255'5'
+ +#148#218#255'5'#148#218#255'5'#148#218#255'5'#148#218#255'5'#148#218#255'5'
+ +#148#218#255'5'#148#218#255'5'#148#218#255#251#246#239#255#204#131'U'#254'5'
+ +#175#218#240#247#252#254#255#142#228#248#255#145#222#245#255#159#224#245#255
+ +#172#225#246#255#202#132'R'#255#255#247#241#255#255#233#217#255#255#234#219
+ +#255#255#233#217#255#255#231#215#255#255#229#210#255#255#226#203#255#255#247
+ +#241#255#203#133'U'#254'6'#179#218#248#253#254#254#255#254#255#255#255#254
+ +#254#255#255#253#254#255#255#254#255#255#255#228#186#145#255#255#247#240#255
+ +#255#231#213#255#253#231#214#255#253#230#212#255#252#228#208#255#251#227#203
+ +#255#250#220#194#255#254#243#232#255#204#134'V'#254'4'#180#217#208'^'#194#225
+ +#250'`'#195#226#250'`'#195#226#250'`'#195#226#250'_'#195#226#250#228#187#145
+ +#255#255#247#242#255#254#231#213#255#254#231#213#255#253#229#209#255#250#224
+ +#202#255#249#222#196#255#247#217#188#255#253#242#231#255#204#135'W'#254#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#228#187#146#255#254#247#241#255#252#229#210#255#252#228#209#255#251
+ +#226#204#255#249#221#196#255#246#215#187#255#243#209#175#255#250#239#228#255
+ +#204#135'X'#254#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#228#187#146#255#254#246#240#255#252#226#205#255#252
+ +#227#205#255#250#223#200#255#247#217#188#255#245#233#221#255#250#243#235#255
+ +#251#248#243#255#202#131'S'#254#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#255#255#0#255#255#255#0#255#255#255#0#228#187#147#255#254#245#237#255#252
+ +#222#197#255#251#224#199#255#249#220#194#255#245#211#180#255#254#249#243#255
+ +#250#226#196#255#236#193#147#255#195'}H'#147#255#255#255#0#255#255#255#0#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#229#190#150#255#255#255
+ +#254#255#253#243#233#255#253#243#234#255#252#242#232#255#250#239#227#255#250
+ +#242#231#255#234#187#136#255#207#133'U'#179#180'i='#12#255#255#255#0#255#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#234#195#157
+ +#255#230#191#150#255#228#187#146#255#228#187#146#255#209#160'l'#245#208#158
+ +'m'#246#204#150'_'#218#196'yB~'#178'g<'#9#255#255#255#0#7'OnClick'#7#17'Acti'
+ +'onOpenExecute'#0#0#9'TMenuItem'#12'MenuItemSave'#6'Action'#7#16'ActionSaveS'
+ +'cript'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0
+ +#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0
+ +#0#0#186'j6'#143#185'i5'#181#184'i5'#238#183'h5'#255#181'h5'#255#180'g4'#255
+ +#178'f4'#255#176'e3'#255#174'd3'#255#172'c2'#255#170'b2'#255#169'a2'#255#168
+ +'`1'#255#167'`1'#254#166'`1'#241#168'a1'#196#186'j5'#222#235#198#173#255#234
+ +#197#173#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255
+ +#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248
+ +#255#254#251#248#255#200#154'|'#255#199#152'y'#255#167'`1'#237#186'k7'#254
+ +#237#202#179#255#224#162'z'#255#254#250#247#255'b'#192#136#255'b'#192#136#255
+ +'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255
+ +'b'#192#136#255#253#249#246#255#202#141'e'#255#201#155'|'#255#167'`1'#254#187
+ +'l8'#255#238#204#182#255#225#162'z'#255#254#250#247#255#191#220#194#255#191
+ +#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255
+ +#191#220#194#255#191#220#194#255#253#249#246#255#205#144'h'#255#204#158#129
+ +#255#168'a2'#255#187'k8'#255#239#206#184#255#225#162'y'#255#254#250#247#255
+ +'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255
+ +'b'#192#136#255'b'#192#136#255'b'#192#136#255#253#249#246#255#207#147'j'#255
+ +#206#163#132#255#170'a2'#255#186'j6'#255#239#208#187#255#226#162'z'#255#254
+ +#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255
+ +#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248
+ +#255#211#150'm'#255#210#167#138#255#171'b2'#255#187'j6'#255#240#210#190#255
+ +#226#163'z'#255#226#163'z'#255#225#163'z'#255#226#163'{'#255#225#163'{'#255
+ +#224#161'x'#255#222#159'w'#255#221#159'v'#255#220#157't'#255#217#155'r'#255
+ +#216#153'q'#255#214#153'p'#255#213#171#142#255#173'c3'#255#187'j6'#255#242
+ +#213#194#255#227#163'z'#255#227#163'z'#255#226#163'{'#255#226#163'{'#255#226
+ +#164'{'#255#225#162'y'#255#224#161'x'#255#222#160'w'#255#222#158'u'#255#220
+ +#157't'#255#218#155's'#255#217#155's'#255#218#176#149#255#175'd3'#255#187'j6'
+ +#255#242#216#197#255#227#164'{'#255#227#163'z'#255#227#164'z'#255#226#164'{'
+ +#255#226#163'{'#255#225#163'{'#255#225#162'y'#255#223#160'w'#255#222#159'v'
+ +#255#221#158't'#255#219#156'r'#255#220#157't'#255#221#181#154#255#177'e4'#255
+ +#187'k6'#255#244#217#199#255#230#166'}'#255#200#140'd'#255#201#141'e'#255#201
+ +#142'g'#255#203#146'l'#255#203#146'm'#255#202#144'i'#255#200#140'e'#255#200
+ +#140'd'#255#200#140'd'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179
+ +'f4'#255#187'k6'#254#244#220#201#255#231#167'}'#255#249#236#225#255#249#236
+ +#225#255#249#237#227#255#252#244#238#255#253#250#247#255#253#247#243#255#250
+ +#237#229#255#247#231#219#255#247#229#217#255#246#229#216#255#222#160'w'#255
+ +#228#190#164#255#180'g4'#255#188'k6'#250#245#221#204#255#231#168'~'#255#250
+ +#240#232#255#250#240#232#255#201#141'f'#255#250#240#233#255#253#248#243#255
+ +#254#250#248#255#252#244#239#255#249#233#223#255#247#231#219#255#247#229#217
+ +#255#224#162'x'#255#231#194#169#255#182'h5'#255#188'k6'#240#246#223#208#255
+ +#232#168'~'#255#252#246#241#255#252#246#241#255#200#140'd'#255#250#241#233
+ +#255#251#244#238#255#253#250#247#255#253#249#246#255#250#240#232#255#248#232
+ +#221#255#247#230#219#255#225#163'z'#255#239#213#195#255#183'i5'#254#188'k6'
+ +#216#246#223#209#255#233#170#128#255#254#250#246#255#253#250#246#255#200#140
+ +'d'#255#251#243#238#255#251#241#234#255#252#246#242#255#254#251#248#255#252
+ +#246#241#255#249#236#226#255#248#231#219#255#238#208#186#255#236#208#189#255
+ +#187'p>'#248#188'k6'#155#246#224#209#255#247#224#209#255#254#251#248#255#254
+ +#251#247#255#253#249#246#255#252#245#240#255#250#240#234#255#251#242#237#255
+ +#253#249#246#255#253#250#247#255#251#241#235#255#248#233#223#254#236#208#189
+ +#251#201#137'^'#236#181'i5c'#188'k6q'#188'k6'#144#188'k6'#204#188'k6'#238#188
+ +'k6'#250#187'k6'#254#187'k6'#255#187'j6'#255#187'j6'#255#188'l9'#255#189'n;'
+ +#255#187'm:'#255#187'k8'#239#187'p>'#203#182'i5T'#255#255#255#0#7'OnClick'#7
+ +#17'ActionSaveExecute'#0#0#9'TMenuItem'#14'MenuItemSaveAs'#6'Action'#7#18'Ac'
+ +'tionSaveScriptAs'#7'Caption'#6#10'Save as...'#7'OnClick'#7#19'ActionSaveAsE'
+ +'xecute'#0#0#9'TMenuItem'#15'MenuItemSaveAll'#6'Action'#7#13'ActionSaveAll'#7
+ +'Enabled'#8#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0
+ +'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0
+ ,#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#228#187#146#255#254#246#240#255#252#226#205#255#252#227#205#255#250#223#200
- +#255#247#217#188#255#245#233#221#255#250#243#235#255#251#248#243#255#202#131
- +'S'#254#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#228#187#147#255#254#245#237#255#252#222#197#255#251#224#199
- +#255#249#220#194#255#245#211#180#255#254#249#243#255#250#226#196#255#236#193
- +#147#255#195'}H'#147#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#229#190#150#255#255#255#254#255#253#243#233#255
- +#253#243#234#255#252#242#232#255#250#239#227#255#250#242#231#255#234#187#136
- +#255#207#133'U'#179#180'i='#12#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#234#195#157#255#230#191#150#255#228
- +#187#146#255#228#187#146#255#209#160'l'#245#208#158'm'#246#204#150'_'#218#196
- +'yB~'#178'g<'#9#255#255#255#0#7'OnClick'#7#17'ActionOpenExecute'#0#0#9'TMenu'
- +'Item'#12'MenuItemSave'#6'Action'#7#16'ActionSaveScript'#11'Bitmap.Data'#10
- +':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0
- +' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#186'j6'#143#185'i5'
- +#181#184'i5'#238#183'h5'#255#181'h5'#255#180'g4'#255#178'f4'#255#176'e3'#255
- +#174'd3'#255#172'c2'#255#170'b2'#255#169'a2'#255#168'`1'#255#167'`1'#254#166
- +'`1'#241#168'a1'#196#186'j5'#222#235#198#173#255#234#197#173#255#254#251#248
- +#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251
- +#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#200
- +#154'|'#255#199#152'y'#255#167'`1'#237#186'k7'#254#237#202#179#255#224#162'z'
- +#255#254#250#247#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136
- +#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255#253#249#246
- +#255#202#141'e'#255#201#155'|'#255#167'`1'#254#187'l8'#255#238#204#182#255
- +#225#162'z'#255#254#250#247#255#191#220#194#255#191#220#194#255#191#220#194
- +#255#191#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255#191#220
- +#194#255#253#249#246#255#205#144'h'#255#204#158#129#255#168'a2'#255#187'k8'
- +#255#239#206#184#255#225#162'y'#255#254#250#247#255'b'#192#136#255'b'#192#136
- +#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136
- +#255'b'#192#136#255#253#249#246#255#207#147'j'#255#206#163#132#255#170'a2'
- +#255#186'j6'#255#239#208#187#255#226#162'z'#255#254#251#248#255#254#251#248
- +#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251
- +#248#255#254#251#248#255#254#251#248#255#254#251#248#255#211#150'm'#255#210
- +#167#138#255#171'b2'#255#187'j6'#255#240#210#190#255#226#163'z'#255#226#163
- +'z'#255#225#163'z'#255#226#163'{'#255#225#163'{'#255#224#161'x'#255#222#159
- +'w'#255#221#159'v'#255#220#157't'#255#217#155'r'#255#216#153'q'#255#214#153
- +'p'#255#213#171#142#255#173'c3'#255#187'j6'#255#242#213#194#255#227#163'z'
- +#255#227#163'z'#255#226#163'{'#255#226#163'{'#255#226#164'{'#255#225#162'y'
- +#255#224#161'x'#255#222#160'w'#255#222#158'u'#255#220#157't'#255#218#155's'
- +#255#217#155's'#255#218#176#149#255#175'd3'#255#187'j6'#255#242#216#197#255
- +#227#164'{'#255#227#163'z'#255#227#164'z'#255#226#164'{'#255#226#163'{'#255
- +#225#163'{'#255#225#162'y'#255#223#160'w'#255#222#159'v'#255#221#158't'#255
- +#219#156'r'#255#220#157't'#255#221#181#154#255#177'e4'#255#187'k6'#255#244
- +#217#199#255#230#166'}'#255#200#140'd'#255#201#141'e'#255#201#142'g'#255#203
- +#146'l'#255#203#146'm'#255#202#144'i'#255#200#140'e'#255#200#140'd'#255#200
- +#140'd'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179'f4'#255#187'k6'
- +#254#244#220#201#255#231#167'}'#255#249#236#225#255#249#236#225#255#249#237
- +#227#255#252#244#238#255#253#250#247#255#253#247#243#255#250#237#229#255#247
- +#231#219#255#247#229#217#255#246#229#216#255#222#160'w'#255#228#190#164#255
- +#180'g4'#255#188'k6'#250#245#221#204#255#231#168'~'#255#250#240#232#255#250
- +#240#232#255#201#141'f'#255#250#240#233#255#253#248#243#255#254#250#248#255
- +#252#244#239#255#249#233#223#255#247#231#219#255#247#229#217#255#224#162'x'
- +#255#231#194#169#255#182'h5'#255#188'k6'#240#246#223#208#255#232#168'~'#255
- +#252#246#241#255#252#246#241#255#200#140'd'#255#250#241#233#255#251#244#238
- +#255#253#250#247#255#253#249#246#255#250#240#232#255#248#232#221#255#247#230
- +#219#255#225#163'z'#255#239#213#195#255#183'i5'#254#188'k6'#216#246#223#209
- +#255#233#170#128#255#254#250#246#255#253#250#246#255#200#140'd'#255#251#243
- +#238#255#251#241#234#255#252#246#242#255#254#251#248#255#252#246#241#255#249
- +#236#226#255#248#231#219#255#238#208#186#255#236#208#189#255#187'p>'#248#188
- +'k6'#155#246#224#209#255#247#224#209#255#254#251#248#255#254#251#247#255#253
- +#249#246#255#252#245#240#255#250#240#234#255#251#242#237#255#253#249#246#255
- +#253#250#247#255#251#241#235#255#248#233#223#254#236#208#189#251#201#137'^'
- ,#236#181'i5c'#188'k6q'#188'k6'#144#188'k6'#204#188'k6'#238#188'k6'#250#187'k'
- +'6'#254#187'k6'#255#187'j6'#255#187'j6'#255#188'l9'#255#189'n;'#255#187'm:'
- +#255#187'k8'#239#187'p>'#203#182'i5T'#255#255#255#0#7'OnClick'#7#17'ActionSa'
- +'veExecute'#0#0#9'TMenuItem'#14'MenuItemSaveAs'#6'Action'#7#18'ActionSaveScr'
- +'iptAs'#7'Caption'#6#10'Save as...'#7'OnClick'#7#19'ActionSaveAsExecute'#0#0
- +#9'TMenuItem'#15'MenuItemSaveAll'#6'Action'#7#13'ActionSaveAll'#7'Enabled'#8
- +#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16
- +#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#186'h'
- +'3'#197#195#132'X'#255#211#139'h'#255#225#143'p'#255#220#141'l'#255#218#139
- +'m'#255#215#138'n'#255#205#139'l'#255#171'mD'#255#166'_.'#255#255#255#255#0
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#198
- +#131'U'#255#239#206#186#255#221#255#255#255#135#238#199#255#162#244#215#255
- +#162#246#215#255#140#238#199#255#224#255#255#255#221#162#133#255#171'j>'#255
- +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#186'h3'#172#195#132
- +'X'#222#195#127'Q'#255#239#182#154#255#234#243#232#255'Q'#191#132#255'o'#201
- +#152#255'q'#201#153#255'T'#191#132#255#228#244#233#255#221#156'{'#255#170'i:'
- +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#198#131'U'#222
- +#239#206#186#222#196#129'T'#255#234#182#151#255#243#243#234#255#237#241#230
- +#255#239#241#230#255#239#240#230#255#237#241#229#255#243#245#237#255#213#156
- +'y'#255#176'pD'#255#255#255#255#0#255#255#255#0#186'h3'#155#195#132'X'#201
- +#197#128'S'#248#238#178#150#248#201#139'a'#255#230#181#146#255#226#167#129
- +#255#225#167#129#255#222#163'}'#255#220#161'{'#255#219#159'y'#255#217#158'w'
- +#255#212#154's'#255#187'~W'#255#255#255#255#0#255#255#255#0#198#131'U'#201
+ +#255#0#186'h3'#197#195#132'X'#255#211#139'h'#255#225#143'p'#255#220#141'l'
+ +#255#218#139'm'#255#215#138'n'#255#205#139'l'#255#171'mD'#255#166'_.'#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#0#198#131'U'#255#239#206#186#255#221#255#255#255#135#238#199#255#162#244
+ +#215#255#162#246#215#255#140#238#199#255#224#255#255#255#221#162#133#255#171
+ +'j>'#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#186'h3'#172
+ +#195#132'X'#222#195#127'Q'#255#239#182#154#255#234#243#232#255'Q'#191#132#255
+ +'o'#201#152#255'q'#201#153#255'T'#191#132#255#228#244#233#255#221#156'{'#255
+ +#170'i:'#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#198#131
+ +'U'#222#239#206#186#222#196#129'T'#255#234#182#151#255#243#243#234#255#237
+ +#241#230#255#239#241#230#255#239#240#230#255#237#241#229#255#243#245#237#255
+ +#213#156'y'#255#176'pD'#255#255#255#255#0#255#255#255#0#186'h3'#155#195#132
+ +'X'#201#197#128'S'#248#238#178#150#248#201#139'a'#255#230#181#146#255#226#167
+ +#129#255#225#167#129#255#222#163'}'#255#220#161'{'#255#219#159'y'#255#217#158
+ +'w'#255#212#154's'#255#187'~W'#255#255#255#255#0#255#255#255#0#198#131'U'#201
+#239#206#186#201#199#142'f'#248#224#188#156#248#202#141'e'#255#234#184#153
+#255#221#165'~'#255#221#166#128#255#219#163'|'#255#217#160'z'#255#217#160'y'
+#255#216#159'x'#255#216#158'x'#255#191#132']'#255#255#255#255#0#255#255#255#0
@@ -385,7 +377,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'
+#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4'9'#0#0#6'm'#0#153#5'i'#0#204#6'm'#0#153
- ,#4'9'#0#0#0#0#0#0#0#0#0#9#0#0#0#22#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0
+ +#4'9'#0#0#0#0#0#0#0#0#0#9#0#0#0#22#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0
+#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#11#128#0#209'+'#223#26#255#11#128#0
+#209#0#0#0#22#0#0#0#9#13#13#13'g'#16#16#16#133#16#16#16#133#16#16#16#133#16
+#16#16#133#16#16#16#133#16#16#16#133#16#16#16#133#16#16#16#133#14'b'#4#207#14
@@ -393,7 +385,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'''{'#235#235#235#255#231#231#231#255#231#231#231#255#231#231#231#255#231#231
+#231#255#231#231#231#255#231#231#231#255#231#231#231#255';'#165'/'#255'R'#231
+'A'#255'R'#231'A'#255'R'#231'A'#255'R'#231'A'#255'R'#231'A'#255#18#137#5#229
- +'222v'#234#234#234#255#226#226#226#255#226#226#226#255#226#226#226#255#226
+ ,'222v'#234#234#234#255#226#226#226#255#226#226#226#255#226#226#226#255#226
+#226#226#255#226#226#226#255#226#226#226#255#226#226#226#255'f'#185'['#255'<'
+#171'-'#255'<'#171'-'#255'f'#235'U'#255'<'#171'-'#255'>'#173'/'#255#28'z'#17
+#200'888s'#237#237#237#255#230#230#230#255#230#230#230#255#230#230#230#255
@@ -449,7 +441,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#230#255#230#230#230#255#230#230#230#255#230#230#230#255#230#230#230#255#230
+#230#230#255#237#237#237#255'888s>>>q'#240#240#240#255#235#235#235#255#235
+#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255
- ,#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235
+ +#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235
+#255#235#235#235#255#240#240#240#255'>>>qDDDn'#243#243#243#255#239#239#239
+#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239
+#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239
@@ -457,7 +449,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255
+#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244
+#255#244#244#244#255#244#244#244#255#247#247#247#255'IIIlMMMj'#250#250#250
- +#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248
+ ,#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248
+#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248
+#248#248#255#248#248#248#255#248#248#248#255#250#250#250#255'MMMjQQQh'#253
+#253#253#255#252#252#252#255#252#252#252#255#252#252#252#255#252#252#252#255
@@ -513,7 +505,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#212#201#201#255#208#197#197#255#188#188#188#255#246#246#246#255#248#248#248
+#255'KKKkUUU"UUUYUUUfSSS'#165#185#185#185#255#184#184#184#255#184#184#184#255
+#184#184#184#255#184#184#184#255#184#184#184#255#184#184#184#255#193#193#193
- ,#255#229#229#229#255#251#251#251#255#252#252#252#255'PPPiUUU'#0'UUU'#0'UUU'#0
+ +#255#229#229#229#255#251#251#251#255#252#252#252#255'PPPiUUU'#0'UUU'#0'UUU'#0
+'TTTg'#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255'TTTgUUU'#0'TTT'#0'PPP'#0'PPPi'#187#187#187
@@ -521,7 +513,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#173#255#169#169#169#255#166#166#166#255#162#162#162#255#160#160#160#255#157
+#157#157#255#3#3#3'fTTT'#0'RRR'#0'RRR'#0'RRR['#198#198#198#212#219#219#219
+#255#214#214#214#255#209#209#209#255#203#204#204#255#199#199#199#255#198#196
- +#196#255#200#197#197#255#206#198#198#255#212#201#201#255#196#183#183#212'RRR'
+ ,#196#255#200#197#197#255#206#198#198#255#212#201#201#255#196#183#183#212'RRR'
+'[TTT'#0'TTT'#0'TTT'#0'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'
+#10'ImageIndex'#2#20#7'OnClick'#7#22'MenuItemCloseTabsClick'#0#0#9'TMenuItem'
+#16'MenuItemDivider6'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#16'MenuItemMainExit'
@@ -577,7 +569,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0'm'#156#212#137'j'#154#210#251'f'
+#151#207#238#7'OnClick'#7#17'ActionExitExecute'#0#0#0#9'TMenuItem'#8'MenuEdi'
+'t'#7'Caption'#6#5'&Edit'#13'SubMenuImages'#7#17'Mufasa_Image_List'#7'OnClic'
- ,'k'#7#13'MenuEditClick'#0#9'TMenuItem'#12'MenuItemUndo'#6'Action'#7#10'Actio'
+ +'k'#7#13'MenuEditClick'#0#9'TMenuItem'#12'MenuItemUndo'#6'Action'#7#10'Actio'
+'nUndo'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0
+#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
@@ -585,7 +577,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#160#196']f'#219#234#178#17#166#194#174#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#160#196'"C'#196#219#252'C'#197#216#254'#'#166#192#127#0#0#0#0#0#0#0#0#0#0
+ ,#0#160#196'"C'#196#219#252'C'#197#216#254'#'#166#192#127#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#14#170#203#254']'#218#233#254'#'#166#192#239#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#0#160#196#255#0#0#0#0#0#0#0#0#0
@@ -641,7 +633,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255'i'#234#249#255'i'#234#249#255'i'#234#249#255'v'#237#251#255#4#195#218
+#255'v'#237#251#255#0#160#196#255#5'y}'#17#0#0#0#0#255#255#255#0#21#160#188
+#203#27#171#197#248'j'#229#243#255#11#200#223#255#29#210#232#255#29#210#232
- ,#255#29#210#232#255#4#192#214#255#4#192#214#255#4#192#214#255','#223#244#255
+ +#255#29#210#232#255#4#192#214#255#4#192#214#255#4#192#214#255','#223#244#255
+'2'#226#248#255'y'#237#251#255#0#160#196#255#5'y~'#17#255#255#255#0#5'y}'#10
+#22#161#189#202'@'#205#225#255'6'#217#236#255#29#210#232#255#29#210#232#255
+#29#210#232#255')'#219#241#255'/'#224#245#255'2'#226#247#255'2'#226#247#255
@@ -649,7 +641,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#5'y}2'#19#163#193#228'A'#206#227#254'i'#231#246#255'6'#217#236#255#22
+#205#227#255')'#219#241#255'/'#224#245#255')'#219#241#255'2'#226#247#255'/'
+#224#246#255#173#243#251#255#0#160#196#255#5'y}'#10#255#255#255#0#0#0#0#0#0#0
- +#0#0#5'y}'#28#20#163#193#213#20#161#188#212'l'#232#247#248'n'#232#247#255'o'
+ ,#0#0#5'y}'#28#20#163#193#213#20#161#188#212'l'#232#247#248'n'#232#247#255'o'
+#235#250#255's'#236#250#255' '#227#250#255'1'#225#246#255#173#243#251#255#0
+#160#196#255#5'y}'#17#0#0#0#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#6'z|'#11
+#27#161#187#164#21#159#187#207#19#161#190#231#0#160#196#255#0#160#196#255'%'
@@ -705,7 +697,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#170#129'Go'#214#189#159#247#147'a'#25
+#16#255#255#255#0#255#255#255#0#150'f ,'#169#128'K'#203#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
- ,#255#255#255#0#255#255#255#0#168'}Bi'#204#176#139#224#145']'#20#9#255#255#255
+ +#255#255#255#0#255#255#255#0#168'}Bi'#204#176#139#224#145']'#20#9#255#255#255
+#0#255#255#255#0#255#255#255#0#146'`'#23#6#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#154'k''1'#170'~C'#161#146'`'#24#5#255#255#255#0#255#255
@@ -713,7 +705,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#16'ActionCutExecute'#0#0#9'TMenuItem'#12'MenuItemCopy'#6'Action'#7#10'Actio'
+'nCopy'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0
+#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0
- +#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#197'sB'#193#198'uE'#230#200'uE'#254#199'uE'#243#200'uE'#243
+#199'uE'#243#199'uE'#243#200'uF'#244#197'tD'#232#202#127'S'#241#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#199'y'
@@ -769,7 +761,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0
+#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0'^^^'#2'[[[wXXX'#138'UUU'#138'RRR'#138'OOO'#138'LLL'#138
- ,'JJJ'#138'HHH'#138'FFF'#138'DDDf c'#152'J c'#152#207' c'#152#255' c'#152#255
+ +'JJJ'#138'HHH'#138'FFF'#138'DDDf c'#152'J c'#152#207' c'#152#255' c'#152#255
+' c'#152#255'$c'#149#255'Xs'#136#255#247#247#247#255#240#240#240#255#240#240
+#240#255#240#240#240#255#240#240#240#255#240#240#240#255#240#240#240#255#243
+#243#243#250'FFF'#132' c'#152#194'b'#165#215#255'e'#168#218#255'd'#166#217
@@ -777,7 +769,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#231#231#231#255#231#231#231#255#231#231#231#255#230#230#230#255#230#230
+#230#255#236#236#236#250'III'#132' c'#152#255'h'#171#220#255'H'#142#207#255
+'F'#139#206#255'C'#135#205#255'D'#132#198#255'h'#133#161#255#240#240#240#255
- +#180#180#180#255#180#180#180#255#180#180#180#255#180#180#180#255#180#180#180
+ ,#180#180#180#255#180#180#180#255#180#180#180#255#180#180#180#255#180#180#180
+#255#179#179#179#255#237#237#237#250'LLL'#132' c'#152#255'i'#174#220#255'J'
+#147#209#255'H'#143#208#255'F'#139#206#255'G'#136#199#255'l'#136#163#255#240
+#240#240#255#232#232#232#255#232#232#232#255#231#231#231#255#231#231#231#255
@@ -833,7 +825,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#0#0#195#255#0#0#195#255#0#0#196'x'#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#189'x'#0#0#189#255#0#0#189#255#0#0#189
+#255#0#0#189'x'#0#0#189'x'#0#0#189#255#0#0#189#255#0#0#189#255#0#0#189'x'#255
- ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#0#0#183'x'#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183
+#255#0#0#183#255#0#0#183#255#0#0#183'x'#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
@@ -841,7 +833,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#179'x'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+#170'x'#0#0#171#255#0#0#171#255#0#0#171#255#0#0#172#255#0#0#172'x'#255#255
- +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#0#0#166'x'#0#0#165#255#0#0#165#255
+#0#0#165#255#0#0#166#255#0#0#166#255#0#0#166#255#0#0#166'x'#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
@@ -897,7 +889,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#140#140#239#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#255#212#211#210#255
+#255#252#249#255#255#251#244#255#255#249#239#255#255#247#235#255#255#245#230
+#255#255#243#226#255#255#242#221#255#255#242#221#255#183#177#167#255#140#140
- ,#140#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#175#154#154#154#255#255
+ +#140#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#175#154#154#154#255#255
+#254#253#255#255#252#248#255#255#251#244#255#255#249#239#255#255#247#234#255
+#255#246#232#255#255#250#242#255#241#232#219#255#147#146#145#255#140#140#140
+'p'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140'0'#140#140#140#255#183#183
@@ -905,7 +897,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#254#252#255#248#242#232#255#162#159#156#255#140#140#140#223#140#140#140#16#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140'`'#140#140#140#255#154#154
+#154#255#212#211#210#255#226#225#223#255#226#224#220#255#205#201#195#255#147
- +#147#146#255#140#140#140#239#140#140#140'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ ,#147#146#255#140#140#140#239#140#140#140'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#140#140#140'0'#140#140#140#175#140#140#140#255#140#140
+#140#255#140#140#140#255#140#140#140#239#140#140#140#159#140#140#140#16#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'ImageIndex'#2#26#7'OnClick'#7
@@ -961,7 +953,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#152'pP'#0#152'pP'#0#152'pP'#0#159'h>'#255#201#156'v'
+#255#205#165#133#255#159'h>'#255#152'pP'#0#152'pP'#0#159'h>'#255#201#156'v'
+#255#205#165#133#255#159'h>'#255#0#0#0#0#0#0#0#0#0#0#0#0#162'f8'#0#162'f8'#0
- ,#162'f8'#0#163'e5'#255#215#172#136#255#225#197#173#255#163'e5'#255#162'f8'#0
+ +#162'f8'#0#163'e5'#255#215#172#136#255#225#197#173#255#163'e5'#255#162'f8'#0
+#162'f8'#0#163'e5'#255#215#172#136#255#225#197#173#255#163'e5'#255#0#0#0#0#0
+#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0#164'e4'#0#164'e4'#255#216#169#129#255#230
+#204#181#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#216#169#129#255#230
@@ -969,7 +961,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#164'e4'#255#215#167#127#255#230#204#181#255#164'e4'#255#164'e4'#0#164'e4'
+#0#164'e4'#255#215#167#127#255#230#204#181#255#164'e4'#255#0#0#0#0#0#0#0#0#0
+#0#0#0#164'e4'#0#164'e4'#0#164'e4'#0#164'e4'#255#215#169#129#255#230#205#182
- +#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#215#169#129#255#230#205#182
+ ,#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#215#169#129#255#230#205#182
+#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0#164'e4'#0#164'e'
+'4'#255#216#171#132#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164
+'e4'#255#216#171#132#255#230#206#183#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0
@@ -1025,7 +1017,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#183#190#243#255#175
+#183#244#255#166#176#244#255#155#168#245#255#146#159#246#255#135#150#246#255
+'|'#141#247#255'r'#132#248#255'g{'#248#255']s'#249#255'99'#134#230#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#191#197#242#255
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#191#197#242#255
+#183#190#243#255#175#183#244#255#165#175#244#255#156#167#245#255#146#159#246
+#255#135#149#246#255'}'#141#247#255'r'#132#248#255'h|'#248#255'99'#134#230
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#199#202
@@ -1033,7 +1025,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#167#245#255#146#159#246#255#135#150#246#255'|'#141#247#255'r'#132#247#255'9'
+'9'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191
+#230#204#208#241#255#198#203#241#255#191#197#242#255#183#191#243#255#175#183
- +#244#255#166#175#245#255#155#168#245#255#145#159#246#255#135#150#246#255'}'
+ ,#244#255#166#175#245#255#155#168#245#255#145#159#246#255#135#150#246#255'}'
+#141#247#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0'EP'#191#230#209#212#241#255#204#208#242#255#198#203#242#255#191#197
+#242#255#183#190#243#255#174#184#243#255#165#175#244#255#155#168#244#255#145
@@ -1089,7 +1081,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#25'BBB'#3#255#255#255#0#255#255#255#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BB'
+'B'#0#131#131#131#255#131#131#131#255'BBB`BBBXBBBJBBB'#25'BBB'#3'BBB'#0'BBB'
+#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#0#0#0#0#0#0#0#0#225#238
- ,#225#255#197#220#197#255#219#233#219#255#244#249#244#255#0#0#0#0#0#0#0#0#0#0
+ +#225#255#197#220#197#255#219#233#219#255#244#249#244#255#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#174#213#176#255#214#248#225#255#207#250#221#255#181#248#204#255'x'#216#145
+#255'@'#139'@'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
@@ -1097,7 +1089,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255'}'#228#159#255#10'Y'#12#255#0#0#0#191#0#0#0#0#195#196#237#255#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#149#196#149#255#187#243#206
+#255#157#240#186#255'k'#212#142#255'N'#154'h'#255#10'D'#10#255#0#0#0#191#0#0
- +#0#0#221#221#246#255'RW'#199#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132
+ ,#0#0#221#221#246#255'RW'#199#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132
+#195#132#255#134#227#165#255'l'#224#146#255'K'#170'k'#255#1'/'#1#255'*Y:'#255
+'6U6'#255#0#0#0#191#0#0#0#0#0#0#0#0#177#180#234#255'=F'#197#255#0#0#0#0#0#0#0
+#0#0#0#0#0#232#243#232#255#136#221#159#255'D'#207'r'#255'&'#142'I'#255'4;4'
@@ -1153,7 +1145,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'d'#180#151#255'h'#182#153#255']'#156#130#255'@'#142'n'#255'@'#142'n'#255']'
+#156#130#255'@'#142'n'#255';'#135'f'#249#255#255#255#0'/}]'#222'U'#168#136
+#255#241#248#246#255'n'#183#156#255'Y'#172#141#255#224#239#234#255#153#204
- ,#185#255'Y'#172#141#255#161#208#191#255#216#235#228#255'Y'#172#141#255'n'#183
+ +#185#255'Y'#172#141#255#161#208#191#255#216#235#228#255'Y'#172#141#255'n'#183
+#156#255#237#246#243#255'X'#170#139#255'/}]'#231#255#255#255#0')vW'#171'H'
+#152'y'#255#189#221#209#255#168#211#194#255'O'#165#132#255'h'#178#149#255#216
+#235#228#255'S'#145'w'#255#209#232#223#255'f'#177#148#255'O'#165#132#255#174
@@ -1161,7 +1153,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'c'#255'W'#168#135#255#237#246#243#255'l'#179#151#255'E'#159'{'#255'E'#159'{'
+#255'(wX'#255'E'#159'{'#255'E'#159'{'#255's'#183#156#255#242#248#246#255']'
+#171#140#255'8'#132'e'#255'#pQW'#255#255#255#0#255#255#255#0#29'iL'#204'0'
- +#135'd'#255'r'#182#154#255#243#249#247#255#163#207#189#255'`'#172#141#255'!p'
+ ,#135'd'#255'r'#182#154#255#243#249#247#255#163#207#189#255'`'#172#141#255'!p'
+'Q'#255'e'#175#144#255#167#209#192#255#243#249#247#255'p'#181#152#255'1'#138
+'f'#255#29'iL'#180#255#255#255#0#255#255#255#0#255#255#255#0#24'dG!'#26'fI'
+#234')'#129']'#255'P'#162#128#255#176#213#198#255#238#246#243#255'C'#128'i'
@@ -1217,7 +1209,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'=G'#209#255#29''''#169#164#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#2#13#140#10#28''''#166#159'5?'#201#247'"-'#175
- ,#185#3#13#140#28#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+ +#185#3#13#140#28#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+#0#0#0#0#0#0#0#0#0#0'!!!'#0'eee'#0#139#139#139#0'%'#2#176#0'%'#2#178#0'%'#2
+#179#0'&'#2#181'7&'#2#180'{%'#2#180'|%'#2#179'8%'#2#175#0'$'#2#172#0'#'#2#168
+#0#0#0#0#0#29#29#29#0'\\\'#0#128#128#128#0#134#134#134#0#139#139#139#0'%'#2
@@ -1225,7 +1217,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#177'~%'#2#175'9$'#2#172#0'#'#2#168#0'RRR'#0'sss'#0'yyy'#0#128#128#128#0#134
+#134#134#0#139#139#139#0'%'#2#176#0'%'#2#178'9%'#2#177'~'#198#181#252#255#182
+#165#236#255#184#167#236#255#202#185#254#255'$'#2#173#129'$'#2#172';#'#2#168
- +#0'lll'#0'sss'#0'yyy'#0#128#128#128#0#134#134#134#0#139#139#139#0'%'#2#176'9'
+ ,#0'lll'#0'sss'#0'yyy'#0#128#128#128#0#134#134#134#0#139#139#139#0'%'#2#176'9'
+'%'#2#176#127#196#179#251#255#179#162#234#255#181#164#235#255#182#165#236#255
+#184#167#236#255#202#185#254#255'$'#2#169#134'#'#2#168'=lll'#0'sss'#0'yyy'#0
+#128#128#128#0#134#134#134#0#138#138#138'/'#136#136#136'f'#193#176#249#255
@@ -1281,7 +1273,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'4'#0#164'e4'#0#164'e4'#255#217#174#137#255#230#206#183#255#164'e4'#255#164
+'e4'#0#164'e4'#0#164'e4'#255#217#174#137#255#230#206#183#255#164'e4'#255#0#0
+#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0#164'e4'#0#164'e4'#255#216#171#132
- ,#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#216#171#132
+ +#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#216#171#132
+#255#230#206#183#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0
+#164'e4'#0#164'e4'#255#215#169#129#255#230#205#182#255#164'e4'#255#164'e4'#0
+#164'e4'#0#164'e4'#255#215#169#129#255#230#205#182#255#164'e4'#255#0#0#0#0#0
@@ -1289,7 +1281,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#204#181#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#215#167#127#255#230
+#204#181#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0#164'e4'
+#0#164'e4'#255#216#169#129#255#230#204#181#255#164'e4'#255#164'e4'#0#164'e4'
- +#0#164'e4'#255#216#169#129#255#230#204#181#255#164'e4'#255#0#0#0#0#0#0#0#0#0
+ ,#0#164'e4'#255#216#169#129#255#230#204#181#255#164'e4'#255#0#0#0#0#0#0#0#0#0
+#0#0#0#162'f8'#0#162'f8'#0#162'f8'#0#163'e5'#255#215#172#136#255#225#197#173
+#255#163'e5'#255#162'f8'#0#162'f8'#0#163'e5'#255#215#172#136#255#225#197#173
+#255#163'e5'#255#0#0#0#0#0#0#0#0#0#0#0#0#152'pP'#0#152'pP'#0#152'pP'#0#159'h'
@@ -1345,7 +1337,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#0#255#255#255#0'EP'#191#230#209#212#241#255#204#208#242#255#198
+#203#242#255#191#197#242#255#183#190#243#255#174#184#243#255#165#175#244#255
+#155#168#244#255#145#159#245#255#135#149#246#255'99'#134#230#255#255#255#0
- ,#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#204#208#241#255#198
+ +#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#204#208#241#255#198
+#203#241#255#191#197#242#255#183#191#243#255#175#183#244#255#166#175#245#255
+#155#168#245#255#145#159#246#255#135#150#246#255'}'#141#247#255'99'#134#230
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#199#202
@@ -1353,7 +1345,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#167#245#255#146#159#246#255#135#150#246#255'|'#141#247#255'r'#132#247#255'9'
+'9'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191
+#230#191#197#242#255#183#190#243#255#175#183#244#255#165#175#244#255#156#167
- +#245#255#146#159#246#255#135#149#246#255'}'#141#247#255'r'#132#248#255'h|'
+ ,#245#255#146#159#246#255#135#149#246#255'}'#141#247#255'r'#132#248#255'h|'
+#248#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+'EP'#191#230#183#190#243#255#175#183#244#255#166#176#244#255#155#168#245#255
+#146#159#246#255#135#150#246#255'|'#141#247#255'r'#132#248#255'g{'#248#255']'
@@ -1409,7 +1401,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'q'#255#5'0'#144#255#3'<'#158#255#0#29#134#255#2#25'y'#255#0#27#127#255#0#10
+'Z'#255#0#0#0#0#0#0#0#0#0#0#0#0'(`'#185#141'.'#139#250#255'+'#134#239#255' m'
+#212#255#3','#149#255#0#25'|'#255#1#21's'#255#0#20's'#255#2#26'}'#255#0#28
- ,#129#255#2#24'v'#255#0#23'z'#255#0#9'X'#255#0#0#0#0#0#0#0#0#0#0#0#0#15','#136
+ +#129#255#2#24'v'#255#0#23'z'#255#0#9'X'#255#0#0#0#0#0#0#0#0#0#0#0#0#15','#136
+#137#1''''#153#255#1'$'#145#255#0'#'#146#255#0'$'#145#255#0#23'x'#255#2#19'o'
+#255#2#26'|'#255#1#27'~'#255#1#25'{'#255#1#19'r'#255#1#20'r'#255#1#6'O'#255#0
+#0#0#0#0#0#0#0#0#0#0#0#25'*u*'#2'#'#139#255#2'"'#139#255#0'#'#143#255#1#28
@@ -1417,7 +1409,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#0#11'a'#255#0#5'A'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#193'}D`'
+ ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#193'}D`'
+#200#139'M'#187#200#140'O'#238#200#140'O'#246#200#140'O'#247#200#140'O'#247
+#200#141'O'#247#201#140'O'#247#199#139'O'#247#197#137'K'#212#196'v;'#145#179
+'h<'#6#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#196#133'I'#195
@@ -1473,7 +1465,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#228#187#146#255#228#187#146#255#209#160'l'#245#208#158'm'#246#204#150'_'#218
+#196'yB~'#178'g<'#9#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#229#190#150#255#255#255#254#255
- ,#253#243#233#255#253#243#234#255#252#242#232#255#250#239#227#255#250#242#231
+ +#253#243#233#255#253#243#234#255#252#242#232#255#250#239#227#255#250#242#231
+#255#234#187#136#255#207#133'U'#179#180'i='#12#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#228#187#147#255#254
+#245#237#255#252#222#197#255#251#224#199#255#249#220#194#255#245#211#180#255
@@ -1481,7 +1473,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#228
+#187#146#255#254#246#240#255#252#226#205#255#252#227#205#255#250#223#200#255
+#247#217#188#255#245#233#221#255#250#243#235#255#251#248#243#255#202#131'S'
- +#254#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ ,#254#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#228#187#146#255#254#247#241#255#252#229#210#255#252#228#209
+#255#251#226#204#255#249#221#196#255#246#215#187#255#243#209#175#255#250#239
+#228#255#204#135'X'#254'4'#180#217#208'^'#194#225#250'`'#195#226#250'`'#195
@@ -1537,7 +1529,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255'b'#163#216#255' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0' c'#152#255'z'#187#227#255'a'#170#219#255'Z'#165#217#255'S'#160
+#215#255'R'#159#215#255'R'#159#215#255'R'#159#215#255'R'#159#215#255'R'#159
- ,#215#255'b'#163#216#255' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0
+ +#215#255'b'#163#216#255' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0' c'#152#255'v'#185#226#255'\'#167#217#255'X'#164#216#255'S'
+#160#215#255'S'#158#213#255'a'#139#169#255'd'#136#161#255'd'#135#161#255'c'
+#134#160#255'i'#135#159#255'Jh'#129#255'jjj'#138'hhh'#138'eee'#138'bbbc c'
@@ -1545,7 +1537,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#207#255'u'#148#172#255#248#248#248#255#242#242#242#255#242#242#242#255#242
+#242#242#255#242#242#242#255#242#242#242#255#241#241#241#255#244#244#244#250
+'^^^'#132' c'#152#255'p'#181#224#255'R'#159#215#255'P'#156#214#255'N'#152#212
- +#255'O'#149#205#255's'#145#170#255#241#241#241#255#183#183#183#255#182#182
+ ,#255'O'#149#205#255's'#145#170#255#241#241#241#255#183#183#183#255#182#182
+#182#255#182#182#182#255#182#182#182#255#181#181#181#255#181#181#181#255#238
+#238#238#250'ZZZ'#132' c'#152#255'm'#179#223#255'P'#156#213#255'N'#152#211
+#255'K'#148#209#255'L'#145#203#255'p'#142#167#255#241#241#241#255#233#233#233
@@ -1601,7 +1593,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0'#'#166#192
+#239']'#218#233#254#14#170#203#254#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0'#'
- ,#166#192#127'C'#197#216#254'C'#196#219#252#0#160#196'"'#0#0#0#0#0#0#0#0#0#0#0
+ +#166#192#127'C'#197#216#254'C'#196#219#252#0#160#196'"'#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255
+#255#0#0#0#0#0#17#166#194#174'f'#219#234#178#0#160#196']'#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255
@@ -1609,7 +1601,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+ ,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0'ggj'#255']]a'#255'WW['#255'SSW'#255'LLP'#255#0#0#0'#'#255#255#255#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'YY\'#255
@@ -1665,7 +1657,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#229#217#255#246#229#216#255#222#160'w'#255#228#190#164#255#180'g4'#255#187
+'k6'#255#244#217#199#255#230#166'}'#255#200#140'd'#255#201#141'e'#255#201#142
+'g'#255#203#146'l'#255#203#146'm'#255#202#144'i'#255#200#140'e'#255#200#140
- ,'d'#255#200#140'd'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179'f4'
+ +'d'#255#200#140'd'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179'f4'
+#255#187'j6'#255#242#216#197#255#227#164'{'#255#227#163'z'#255#227#164'z'#255
+#226#164'{'#255#226#163'{'#255#225#163'{'#255#225#162'y'#255#223#160'w'#255
+#222#159'v'#255#221#158't'#255#219#156'r'#255#220#157't'#255#221#181#154#255
@@ -1673,7 +1665,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#163'{'#255#226#163'{'#255#226#164'{'#255#225#162'y'#255#224#161'x'#255#222
+#160'w'#255#222#158'u'#255#220#157't'#255#218#155's'#255#217#155's'#255#218
+#176#149#255#175'd3'#255#187'j6'#255#240#210#190#255#226#163'z'#255#226#163
- +'z'#255#225#163'z'#255#226#163'{'#255#225#163'{'#255#224#161'x'#255#222#159
+ ,'z'#255#225#163'z'#255#226#163'{'#255#225#163'{'#255#224#161'x'#255#222#159
+'w'#255#221#159'v'#255#220#157't'#255#217#155'r'#255#216#153'q'#255#214#153
+'p'#255#213#171#142#255#173'c3'#255#186'j6'#255#239#208#187#255#226#162'z'
+#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251
@@ -1729,7 +1721,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#226#226#226#255#226#226#226#255#226#226#226#255#226#226#226#255#226#226#226
+#255#226#226#226#255#226#226#226#255'f'#185'['#255'<'#171'-'#255'<'#171'-'
+#255'f'#235'U'#255'<'#171'-'#255'>'#173'/'#255#28'z'#17#200'''''''{'#235#235
- ,#235#255#231#231#231#255#231#231#231#255#231#231#231#255#231#231#231#255#231
+ +#235#255#231#231#231#255#231#231#231#255#231#231#231#255#231#231#231#255#231
+#231#231#255#231#231#231#255#231#231#231#255';'#165'/'#255'R'#231'A'#255'R'
+#231'A'#255'R'#231'A'#255'R'#231'A'#255'R'#231'A'#255#18#137#5#229#13#13#13
+'g'#16#16#16#133#16#16#16#133#16#16#16#133#16#16#16#133#16#16#16#133#16#16#16
@@ -1737,7 +1729,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#14'~'#2#231#14'~'#2#231#11'_'#2#176#0#0#0#9#0#0#0#22#0#0#0#26#0#0#0#26#0
+#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#26#11#128#0#209'+'
+#223#26#255#11#128#0#209#0#0#0#22#0#0#0#9#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4'9'#0#0#6'm'#0#153#5'i'#0#204#6
+ ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4'9'#0#0#6'm'#0#153#5'i'#0#204#6
+'m'#0#153#4'9'#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
@@ -1793,7 +1785,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0'w'#191#255#0#0#0#23#255#255#255#0#255#255#255#0#0#0#0#11#0#0#0'#'#0#0#0'/'
+#0#0#0'/'#0#0#0'Gs'#202#255#255'g'#198#255#255'Q'#189#255#255#0#0#0'k'#0#0#0
+';'#0#0#0'/'#0#0#0'/'#0#0#0'#'#0#0#0#11#255#255#255#0#255#255#255#0#0#0#0#23
- ,'('#174#255#255#28#170#255#255#19#166#255#255#12#164#255#255#0#159#255#255#0
+ +'('#174#255#255#28#170#255#255#19#166#255#255#12#164#255#255#0#159#255#255#0
+#0#0'_'#0#149#239#255#0'}'#200#255#0#0#0'#'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0#255#255#255#0#0#0#0#11#0#0#0'#'#0#0#0'/'#0#0#0'/'#0#0#0'/'#0#0
+#0'#'#0#0#0#23#0#0#0'G'#0'c'#158#255#0#0#0'G'#0#0#0#11#0#0#0#0#0#0#0#0#0#0#0
@@ -1801,7 +1793,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0'#'#0'\'#148#255#0'En'#255#0#0#0'#'#0#0#0#0#0#0#0#0#0#0#0#0
+#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#11#0#0#0'G'#0'_'#152#255#0#0#0'/'#0#0#0#0#0#0#0#0#0#0#0#0#255
- +#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+ ,#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0'/'#0#141#226#255#0#0#0'/'#0#0#0#0#0#0#0#0#0#0#0#0#255#255
+#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0'/'#0#151#242#255#0#0#0'/'#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255
@@ -1857,7 +1849,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#24#166#195'i'#26#167#196'i'#0#160#196#24#0#0#0#0#0#0#0#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- ,#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+ +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#0#0#162#0#0#0#165#0#0#0#168#0#0#0#169#26#0#0#170'l'#0#0#170#166#0
+#0#170#196#0#0#170#196#0#0#170#166#0#0#170'l'#0#0#169#26#0#0#168#0#0#0#165#0
@@ -1865,7 +1857,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#191'77'#208#227'\\'#234#245'jj'#243#253'ii'#242#253'[['#233#245'66'#207#227
+#9#9#174#191#0#0#168'M'#0#0#165#0#0#0#162#0#255#255#255#0#255#255#255#0#0#0
+#162#0#0#0#165'M'#16#16#177#205'[['#232#246'__'#231#255'[['#227#255'[['#227
- +#255'[['#227#255'[['#227#255'__'#231#255'XX'#228#246#15#15#176#205#0#0#165'M'
+ ,#255'[['#227#255'[['#227#255'__'#231#255'XX'#228#246#15#15#176#205#0#0#165'M'
+#0#0#162#0#255#255#255#0#255#255#255#0#0#0#161#26#8#8#168#191'VV'#226#246'QQ'
+#217#255#255#255#255#255'OO'#215#255'OO'#215#255'OO'#215#255'OO'#215#255#255
+#255#255#255'PP'#216#255'OO'#220#246#7#7#167#191#0#0#161#26#255#255#255#0#255
@@ -1921,7 +1913,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#174#174#174#255#234#234#234#255#239#239#239#255
+'===qPPPi'#252#252#252#255#251#251#251#255#251#251#251#255#251#251#251#255
- ,#251#251#251#255#251#251#251#255#251#251#251#255#251#251#251#255#251#251#251
+ +#251#251#251#255#251#251#251#255#251#251#251#255#251#251#251#255#251#251#251
+#255#251#251#251#255#252#252#252#255#168#168#168#255#228#228#228#255#235#235
+#235#255'666tKKKk'#248#248#248#255#246#246#246#255#246#246#246#255#246#246
+#246#255#246#246#246#255#246#246#246#255#246#246#246#255#246#246#246#255#246
@@ -1929,7 +1921,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#236#236#236#255'---xEEEn'#244#244#244#255#240#240#240#255#240#240#240#255
+#240#240#240#255#240#240#240#255#240#240#240#255#240#240#240#255#240#240#240
+#255#240#240#240#255#240#240#240#255#244#244#244#255'111'#184#20#20#20#131#20
- +#20#20#131#17#17#17'e===q'#239#239#239#255#234#234#234#255#234#234#234#255
+ ,#20#20#131#17#17#17'e===q'#239#239#239#255#234#234#234#255#234#234#234#255
+#234#234#234#255#234#234#234#255#234#234#234#255#234#234#234#255#234#234#234
+#255'^^'#194#255'//'#181#255'00'#182#255#6#6#154#230#0#0#163#209#0#0#164#209
+#0#0'|'#158'666t'#235#235#235#255#228#228#228#255#228#228#228#255#228#228#228
@@ -1985,7 +1977,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#132#255'o'#201#152#255'q'#201#153#255'T'#191#132#255#228#244#233#255#221#156
+'{'#255#170'i:'#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#198#131'U'#255#239#206#186#255#221#255#255#255
- ,#135#238#199#255#162#244#215#255#162#246#215#255#140#238#199#255#224#255#255
+ +#135#238#199#255#162#244#215#255#162#246#215#255#140#238#199#255#224#255#255
+#255#221#162#133#255#171'j>'#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#186'h3'#197#195#132'X'#255#211#139
+'h'#255#225#143'p'#255#220#141'l'#255#218#139'm'#255#215#138'n'#255#205#139
@@ -1993,7 +1985,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#199'yG'#170#204#134'U'#206#204#136
- +'W'#222#203#136'V'#219#204#136'V'#219#203#135'W'#219#202#131'P'#208#196'yBn'
+ ,'W'#222#203#136'V'#219#204#136'V'#219#203#135'W'#219#202#131'P'#208#196'yBn'
+#178'g<'#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#202#133'T'#208#255#255#255#219#253#243#233
+#222#253#243#234#222#252#242#232#222#250#239#227#222#250#242#231#222#234#187
@@ -2049,7 +2041,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0#135'F'#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#0#0#135'F'#0#0#255#1#255#255#255#0#255#255
- ,#255#0#255#255#255#0#0#0#255#1#0#0#141#150#0#0#141#255#0#0#142'x'#255#255#255
+ +#255#0#255#255#255#0#0#0#255#1#0#0#141#150#0#0#141#255#0#0#142'x'#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
+#142'x'#0#0#142#255#0#0#143#150#0#0#255#1#255#255#255#0#255#255#255#0#0#0#146
+'F'#0#0#147#255#0#0#147#255#0#0#147#255#0#0#149'x'#255#255#255#0#255#255#255
@@ -2057,7 +2049,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#149'F'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#153'x'#0#0#153#255
+#0#0#153#255#0#0#153#255#0#0#153'x'#255#255#255#0#255#255#255#0#0#0#153'x'#0
+#0#154#255#0#0#154#255#0#0#154#255#0#0#153'x'#255#255#255#0#255#255#255#0#255
- +#255#255#0#255#255#255#0#255#255#255#0#0#0#159'x'#0#0#159#255#0#0#159#255#0#0
+ ,#255#255#0#255#255#255#0#255#255#255#0#0#0#159'x'#0#0#159#255#0#0#159#255#0#0
+#159#255#0#0#159'x'#0#0#159'x'#0#0#160#255#0#0#160#255#0#0#160#255#0#0#159'x'
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#0#0#166'x'#0#0#165#255#0#0#165#255#0#0#165#255#0#0
@@ -2113,7 +2105,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#203#203#193#255#203#203#193#255'hh^'#255'ddZ'#255#199#199#189#255#199
+#199#189#255#196#196#188#255'ssk'#255'88.'#255'88.'#255'88.'#255'88.'#255'88'
+'.'#255'88.'#255'ssk'#255#196#196#188#255#199#199#189#255#199#199#189#255'gg'
- ,']'#255'ccY'#255#195#195#185#255#195#195#185#255#199#199#190#255#131#131'}'
+ +']'#255'ccY'#255#195#195#185#255#195#195#185#255#199#199#190#255#131#131'}'
+#255'22('#255'22('#255#141#141#134#255#141#141#134#255'22('#255'22('#255#131
+#131'}'#255#199#199#190#255#195#195#185#255#195#195#185#255'gg]'#255'ddZ'#255
+#191#191#181#255#192#192#182#255#192#192#182#255#199#199#191#255#141#141#134
@@ -2121,7 +2113,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#134#255#199#199#191#255#192#192#182#255#192#192#182#255#191#191#181#255'gg]'
+#255'ii_'#255#176#176#166#255#186#186#176#255#188#188#178#255#188#188#178#255
+#196#196#187#255#194#194#185#255#188#188#178#255#188#188#178#255#194#194#185
- +#255#196#196#187#255#188#188#178#255#188#188#178#255#186#186#176#255#176#176
+ ,#255#196#196#187#255#188#188#178#255#188#188#178#255#186#186#176#255#176#176
+#166#255'mmc'#255#136#136#129#214#148#148#138#255#149#149#139#255#149#149#139
+#255#149#149#139#255#149#149#139#255#149#149#139#255#149#149#139#255#149#149
+#139#255#149#149#139#255#149#149#139#255#149#149#139#255#149#149#139#255#149
@@ -2177,7 +2169,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#205#255'@'#127#174#255#15'Y'#145#234#153#153#153#255'qqq'#255'TTT'#255'QQQ'
+#255'OOO'#255'LLL'#255'JJJ'#255'GGG'#255'EEE'#255'%g'#157#255'2t'#168#255'=|'
+#175#255'G'#132#181#255'N'#138#186#255'>~'#173#255#12'W'#143#234#255#255#255
- ,#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#29'c'#155#22#25'`'#152'9'#20']'#149'b'
+#16'Z'#146#136#13'X'#144#164#19'\'#146#252#12'W'#143#237#0#0#0#0#0#0#0#0#140
+#140#140'0'#140#140#140#175#140#140#140#255#140#140#140#255#140#140#140#255
@@ -2185,7 +2177,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140'`'#140#140#140#255#154#154#154#255#212
+#211#210#255#226#225#223#255#226#224#220#255#205#201#195#255#147#147#146#255
+#140#140#140#239#140#140#140'0'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140
- +#140#140'0'#140#140#140#255#183#183#183#255#255#254#253#255#255#254#252#255
+ ,#140#140'0'#140#140#140#255#183#183#183#255#255#254#253#255#255#254#252#255
+#255#253#249#255#255#253#249#255#255#254#252#255#248#242#232#255#162#159#156
+#255#140#140#140#223#140#140#140#16#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140
+#140#175#154#154#154#255#255#254#253#255#255#252#248#255#255#251#244#255#255
@@ -2241,7 +2233,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'x'#254#8#25'w'#255#7#25'v'#255#7#24'u'#255#7#27's'#255#23'n'#212#255#26#127
+#228#255#26'|'#230#255#25'}'#233#255#25'}'#231#255#23'~'#230#255#24'{'#233
+#255#24'{'#232#255#23'}'#231#255#24'l'#206#255#11#29'l'#255#10#21'c'#255#10
- ,#21'c'#255#10#22'f'#255#9#20'b'#255#9#20'd'#255#9#23's'#255#7#23's'#255#7#23
+ +#21'c'#255#10#22'f'#255#9#20'b'#255#9#20'd'#255#9#23's'#255#7#23's'#255#7#23
+'r'#255#7#23'r'#255#9#23'r'#255#9#22'r'#255#11#22'b'#255#12#17'G'#255#12#16
+'G'#255#11#17'F'#255#10#16'E'#255#10#15'F'#255#12#15'D'#255#12#16'E'#255#0#0
+#0#0#0#0#0#0#131#137#134#0#30'2i'#130#8#28's'#255#8#26'w'#255#8#26'y'#255#7
@@ -2249,7 +2241,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#24'}'#232#255#24'~'#233#255#24'}'#233#255#23'}'#232#255#25'}'#232#255#24'~'
+#232#255#21#127#232#255#21'a'#196#255#8#22'd'#255#11#21'c'#255#10#21'e'#255#9
+#22'd'#255#10#20'b'#255#8#21'f'#255#7#23'r'#255#7#24't'#255#7#23'v'#255#8#23
- +'r'#255#7#22'r'#255#8#23'q'#255#11#18'N'#255#12#17'G'#255#12#16'F'#255#11#16
+ ,'r'#255#7#22'r'#255#8#23'q'#255#11#18'N'#255#12#17'G'#255#12#16'F'#255#11#16
+'H'#255#10#16'G'#255#12#16'E'#255#11#16'F'#255#0#0#0#0'z~t'#0'>U'#139#0#18'&'
+'n'#145#10#27'x'#255#8#26'x'#255#9#25'x'#255#7#25'u'#255#8#24'u'#255#7#27'u'
+#255#28'y'#229#255#28#127#233#255#28#129#236#255#25'~'#235#255#26'|'#234#255
@@ -2305,7 +2297,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'b'#219#255#13'P'#195#255#9#25'u'#255#13#20'P'#255#8#18'^'#255#8#24'z'#255#9
+#21'q'#255#6#22'y'#255#12#22'h'#255#13#16'K'#255#12#16'L'#254#13#16'J'#255#23
+#21'=@Vj|'#18'Ll'#131')T'#128#156#24#15'4'#131'Z'#10#29'f'#251#11#22'I'#255#8
- ,#18'P'#255#11'Z'#199#255#10'_'#209#255#8'j'#226#255#8'j'#227#255#9'j'#230#255
+ +#18'P'#255#11'Z'#199#255#10'_'#209#255#8'j'#226#255#8'j'#227#255#9'j'#230#255
+#10'm'#234#255#12'q'#241#255#12't'#249#255#12'n'#232#255#28'~'#239#255#28#128
+#239#255#26'|'#233#255#23'i'#209#255#22'k'#212#255#8'['#202#255#8']'#206#255
+#7'\'#206#255#6'`'#213#255#7'a'#218#255#6'a'#219#255#6'f'#220#255#15'D'#167
@@ -2313,7 +2305,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#12#21'b'#255#12#17'L'#254#11#16'M'#255#16#15'F'#211':.C'#17'q'#161#195
+#15'P'#135#177'('#153#148'~'#1#18'9'#132'9'#7#28'y'#248#11#27'`'#255#9#24'W'
+#255#8'Z'#200#255#7']'#204#255#7'd'#214#255#7'd'#213#255#6'd'#215#255#6'e'
- +#219#255#7'h'#221#255#7'i'#230#255#7'd'#217#255#26'|'#231#255#27#128#236#255
+ ,#219#255#7'h'#221#255#7'i'#230#255#7'd'#217#255#26'|'#231#255#27#128#236#255
+#17'l'#220#255#7'Z'#207#255#8'c'#217#255#8'`'#214#255#7'_'#213#255#7'_'#211
+#255#7'c'#217#255#6'b'#220#255#6'd'#218#255#7'h'#221#255#17'4'#130#255#12#19
+'L'#255#8#16'T'#255#8#24'y'#255#8#23'y'#255#7#22'{'#255#9#24'w'#255#12#16'S'
@@ -2369,7 +2361,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'e'#231#255#8'j'#231#255#15'U'#183#255#10#27'v'#255#9#24#129#255#7#24#129#255
+#7#23#128#255#8#23#128#255#7#22'}'#255#8'1'#154#255#12'>'#161#255#11#19'S'
+#255#12#16'P'#255#11#17'P'#254#12#16'Q'#255#17#18'F'#227'7'#24#24#10#0#0#0#0
- ,'('#24')'#0#0#0#0#0#0#0#0#0#0#0#0#0#148#173#153#0#0#0#0#0'?Bef'#10#29'n'#253
+ +'('#24')'#0#0#0#0#0#0#0#0#0#0#0#0#0#148#173#153#0#0#0#0#0'?Bef'#10#29'n'#253
+#8#24#127#254#8#25#132#255#7#24#132#255#7#24#129#255#7#25'|'#255#8#20'j'#255
+#6#24'}'#255#7#24#128#255#9#23'i'#255#11'!k'#255#9'T'#191#255#6'm'#236#255#6
+'l'#233#255#6'l'#238#255#14'l'#230#255#17'='#144#255#8#21'h'#255#7#24#128#255
@@ -2377,7 +2369,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#12'2'#137#255#11#18'S'#255#10#17'P'#254#10#17'Q'#255#11#17'O'#251#24#20'=Q'
+#0#0#0#0'"'#20'/'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'F@G/'#27
+'(a'#238#7#24's'#255#7#24'x'#255#7#24'{'#254#8#25'~'#255#9#24'd'#255#7#19'i'
- +#255#7#25'}'#255#6#25#127#255#9#26'y'#255#10#18'N'#255#10#16'G'#255#12'''o'
+ ,#255#7#25'}'#255#6#25#127#255#9#26'y'#255#10#18'N'#255#10#16'G'#255#12'''o'
+#255#15'6'#133#255#17',t'#255#11#20'P'#255#7#16'Z'#255#8#24#127#255#7#23#129
+#255#8#23#131#255#8#24'~'#255#7#23#127#255#7#23#127#255#10'+'#139#255#12'7'
+#146#255#12#27'b'#254#9#17'R'#255#10#17'R'#255#10#17'O'#255#25#18'>'#143#0#0
@@ -2433,7 +2425,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'Caption'#6#4'Hide'#7'OnClick'#7#17'MenuItemHideClick'#0#0#9'TMenuItem'#12'M'
+'enuItemExit'#6'Action'#7#10'ActionExit'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0
+'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4
- ,#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
+ +#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#29'c'#155#22#25'`'#152'9'#20']'#149'b'#16'Z'#146#136#13'X'#144
+#164#19'\'#146#252#12'W'#143#237#153#153#153#255'qqq'#255'TTT'#255'QQQ'#255
@@ -2441,7 +2433,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255'G'#132#181#255'N'#138#186#255'>~'#173#255#12'W'#143#234#255#255#255#0
+#255#255#255#0'XXX'#255#162#162#162#255#162#162#162#255#163#163#163#255#164
+#164#164#255#164#164#164#255#165#165#165#255'/o'#165#255'x'#171#210#255'x'
- +#171#211#255's'#167#209#255'i'#160#205#255'@'#127#174#255#15'Y'#145#234#255
+ ,#171#211#255's'#167#209#255'i'#160#205#255'@'#127#174#255#15'Y'#145#234#255
+#255#255#0#255#255#255#0'\\\'#255#161#161#161#255''#173'/'#255#28'z'#17#200'888s'#237#237#237#255#230
+#230#230#255#230#230#230#255#230#230#230#255#230#230#230#255#230#230#230#255
+#230#230#230#255#230#230#230#255#230#230#230#255#230#230#230#255'>'#177'.'
@@ -2505,7 +2497,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235
+#255#235#235#235#255#235#235#235#255#235#235#235#255#235#235#235#255'k'#196
+'_'#255'@'#182'/'#255'k'#196'_'#255#240#240#240#255'>>>qDDDn'#243#243#243#255
- +#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239
+ ,#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239
+#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239
+#239#255#239#239#239#255#239#239#239#255#243#243#243#255'DDDnIIIl'#247#247
+#247#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244
@@ -2561,7 +2553,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#244#255#244#244#244#255#244#244#244#255#244#244#244#255#244#244#244#255#247
+#247#247#255'IIIlMMMj'#250#250#250#255#248#248#248#255#248#248#248#255#248
+#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255
- ,#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248
+ +#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248#255#248#248#248
+#255#250#250#250#255'MMMjQQQh'#253#253#253#255#252#252#252#255#252#252#252
+#255#252#252#252#255#252#252#252#255#252#252#252#255#252#252#252#255#252#252
+#252#255#252#252#252#255#252#252#252#255#252#252#252#255#252#252#252#255#252
@@ -2569,7 +2561,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
+#255#255#255#255#255#255#255#255#255'UUUgPPPi'#187#187#187#255#186#186#186
- +#255#184#184#184#255#182#182#182#255#179#179#179#255#176#176#176#255#174#174
+ ,#255#184#184#184#255#182#182#182#255#179#179#179#255#176#176#176#255#174#174
+#174#255#171#171#171#255#168#168#168#255#166#166#166#255#163#163#163#255#160
+#160#160#255#158#158#158#255#156#156#156#255#3#3#3'fRRR['#198#198#198#212#220
+#220#220#255#216#217#217#255#213#213#213#255#208#209#209#255#204#204#204#255
@@ -2625,7 +2617,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+'sDebugStream'#4'left'#3'`'#2#0#0#10'TPopupMenu'#11'ScriptPopup'#6'Images'#7
+#17'Mufasa_Image_List'#7'OnPopup'#7#16'ScriptPopupPopup'#4'left'#3#136#2#0#9
+'TMenuItem'#13'PopupItemUndo'#6'Action'#7#10'ActionUndo'#11'Bitmap.Data'#10
- ,':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0
+ +':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0
+' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#24#166#195
+'i'#26#167#196'i'#0#160#196#24#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
@@ -2633,7 +2625,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#234#178#17#166#194#174#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196'"C'#196#219#252
+'C'#197#216#254'#'#166#192#127#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
- +#0#0#0#0#0#0#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#14#170#203
+ ,#0#0#0#0#0#0#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#14#170#203
+#254']'#218#233#254'#'#166#192#239#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0
+#0#0#0#0#160#196#255#0#160#196#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#158#193
+#26#2#172#200#255#136#231#242#254#17#162#194#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0
@@ -2689,7 +2681,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#5'y}'#17#0#0#0#0#255#255#255#0#21#160#188#203#27#171#197#248'j'#229#243
+#255#11#200#223#255#29#210#232#255#29#210#232#255#29#210#232#255#4#192#214
+#255#4#192#214#255#4#192#214#255','#223#244#255'2'#226#248#255'y'#237#251#255
- ,#0#160#196#255#5'y~'#17#255#255#255#0#5'y}'#10#22#161#189#202'@'#205#225#255
+ +#0#160#196#255#5'y~'#17#255#255#255#0#5'y}'#10#22#161#189#202'@'#205#225#255
+'6'#217#236#255#29#210#232#255#29#210#232#255#29#210#232#255')'#219#241#255
+'/'#224#245#255'2'#226#247#255'2'#226#247#255'2'#226#248#255'/'#224#246#255
+#173#243#251#255#0#160#196#255#255#255#255#0#0#0#0#0#5'y}2'#19#163#193#228'A'
@@ -2697,7 +2689,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#224#245#255')'#219#241#255'2'#226#247#255'/'#224#246#255#173#243#251#255#0
+#160#196#255#5'y}'#10#255#255#255#0#0#0#0#0#0#0#0#0#5'y}'#28#20#163#193#213
+#20#161#188#212'l'#232#247#248'n'#232#247#255'o'#235#250#255's'#236#250#255
- +' '#227#250#255'1'#225#246#255#173#243#251#255#0#160#196#255#5'y}'#17#0#0#0#0
+ ,' '#227#250#255'1'#225#246#255#173#243#251#255#0#160#196#255#5'y}'#17#0#0#0#0
+#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#6'z|'#11#27#161#187#164#21#159#187#207
+#19#161#190#231#0#160#196#255#0#160#196#255'%'#228#251#255#173#243#251#255#0
+#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0
@@ -2753,7 +2745,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#150'f ,'#169#128'K'#203#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
+#168'}Bi'#204#176#139#224#145']'#20#9#255#255#255#0#255#255#255#0#255#255#255
- ,#0#146'`'#23#6#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+ +#0#146'`'#23#6#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#154'k''1'
+#170'~C'#161#146'`'#24#5#255#255#255#0#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#7'OnClick'#7#16'ActionCutExecute'#0#0#9'T'
@@ -2761,7 +2753,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '
+#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#197'sB'#193
- +#198'uE'#230#200'uE'#254#199'uE'#243#200'uE'#243#199'uE'#243#199'uE'#243#200
+ ,#198'uE'#230#200'uE'#254#199'uE'#243#200'uE'#243#199'uE'#243#199'uE'#243#200
+'uF'#244#197'tD'#232#202#127'S'#241#255#255#255#0#255#255#255#0#255#255#255#0
+#255#255#255#0#255#255#255#0#255#255#255#0#199'yI'#237#252#243#236#255#250
+#241#232#255#250#240#231#255#251#241#233#255#251#242#234#255#251#242#234#255
@@ -2817,7 +2809,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'^^^'#2
+'[[[wXXX'#138'UUU'#138'RRR'#138'OOO'#138'LLL'#138'JJJ'#138'HHH'#138'FFF'#138
+'DDDf c'#152'J c'#152#207' c'#152#255' c'#152#255' c'#152#255'$c'#149#255'Xs'
- ,#136#255#247#247#247#255#240#240#240#255#240#240#240#255#240#240#240#255#240
+ +#136#255#247#247#247#255#240#240#240#255#240#240#240#255#240#240#240#255#240
+#240#240#255#240#240#240#255#240#240#240#255#243#243#243#250'FFF'#132' c'#152
+#194'b'#165#215#255'e'#168#218#255'd'#166#217#255'b'#164#216#255'b'#159#209
+#255'u'#142#164#255#239#239#239#255#231#231#231#255#231#231#231#255#231#231
@@ -2825,7 +2817,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#132' c'#152#255'h'#171#220#255'H'#142#207#255'F'#139#206#255'C'#135#205#255
+'D'#132#198#255'h'#133#161#255#240#240#240#255#180#180#180#255#180#180#180
+#255#180#180#180#255#180#180#180#255#180#180#180#255#179#179#179#255#237#237
- +#237#250'LLL'#132' c'#152#255'i'#174#220#255'J'#147#209#255'H'#143#208#255'F'
+ ,#237#250'LLL'#132' c'#152#255'i'#174#220#255'J'#147#209#255'H'#143#208#255'F'
+#139#206#255'G'#136#199#255'l'#136#163#255#240#240#240#255#232#232#232#255
+#232#232#232#255#231#231#231#255#231#231#231#255#231#231#231#255#231#231#231
+#255#237#237#237#250'OOO'#132' c'#152#255'k'#177#222#255'M'#151#211#255'K'
@@ -2881,7 +2873,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#255#0#0#0#189'x'#0#0#189#255#0#0#189#255#0#0#189#255#0#0#189'x'#0#0#189
+'x'#0#0#189#255#0#0#189#255#0#0#189#255#0#0#189'x'#255#255#255#0#255#255#255
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0
- ,#183'x'#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183
+ +#183'x'#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183#255#0#0#183
+#255#0#0#183'x'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#176'x'
+#0#0#177#255#0#0#177#255#0#0#177#255#0#0#177#255#0#0#179'x'#255#255#255#0#255
@@ -2889,7 +2881,7 @@ LazarusResources.Add('TForm1','FORMDATA',[
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#170'x'#0#0#171#255#0#0
+#171#255#0#0#171#255#0#0#172#255#0#0#172'x'#255#255#255#0#255#255#255#0#255
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
- +#255#0#255#255#255#0#0#0#166'x'#0#0#165#255#0#0#165#255#0#0#165#255#0#0#166
+ ,#255#0#255#255#255#0#0#0#166'x'#0#0#165#255#0#0#165#255#0#0#165#255#0#0#166
+#255#0#0#166#255#0#0#166#255#0#0#166'x'#255#255#255#0#255#255#255#0#255#255
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#159'x'#0#0
+#159#255#0#0#159#255#0#0#159#255#0#0#159'x'#0#0#159'x'#0#0#160#255#0#0#160
diff --git a/Projects/SAMufasaGUI/testunit.pas b/Projects/SAMufasaGUI/testunit.pas
index 31b6393..98d8196 100644
--- a/Projects/SAMufasaGUI/testunit.pas
+++ b/Projects/SAMufasaGUI/testunit.pas
@@ -37,7 +37,7 @@ uses
window, // for the comp picker and selector
colourpicker, framescript, windowselector, lcltype, ActnList, StdActns,
SynEditKeyCmds, SynEditHighlighter, SynEditMarkupSpecialLine,SynEditMarkupHighAll,
- SynEditMiscClasses, LMessages, Buttons, PairSplitter,about;
+ SynEditMiscClasses, LMessages, Buttons, PairSplitter,about, framefunctionlist;
type
@@ -84,6 +84,7 @@ type
ActionTabNext: TAction;
ActionList: TActionList;
CheckBoxMatchCase: TCheckBox;
+ frmFunctionList: TFunctionListFrame;
LabeledEditSearch: TLabeledEdit;
Memo1: TMemo;
MenuFile: TMenuItem;
@@ -181,7 +182,6 @@ type
ToolButton8: TToolButton;
TB_Convert: TToolButton;
MTrayIcon: TTrayIcon;
- FunctionList: TTreeView;
procedure ActionClearDebugExecute(Sender: TObject);
procedure ActionCloseTabExecute(Sender: TObject);
procedure ActionCopyExecute(Sender: TObject);
@@ -208,8 +208,6 @@ type
procedure ActionUndoExecute(Sender: TObject);
procedure CheckBoxMatchCaseClick(Sender: TObject);
procedure CloseFindPanel;
- procedure FunctionListMouseUp(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer);
procedure MenuItemColourHistoryClick(Sender: TObject);
procedure dlgReplaceFind(Sender: TObject);
procedure dlgReplaceReplace(Sender: TObject);
@@ -256,11 +254,8 @@ type
Y: Integer; State: TDragState; var Accept: Boolean);
procedure ScriptPopupPopup(Sender: TObject);
procedure SpeedButtonSearchClick(Sender: TObject);
- procedure FunctionListMouseDown(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer);
procedure Splitter1CanResize(Sender: TObject; var NewSize: Integer;
var Accept: Boolean);
- procedure DockFormOnClose(Sender: TObject; var CloseAction: TCloseAction);
private
PopupTab : integer;
SearchStart : TPoint;
@@ -350,20 +345,20 @@ procedure TForm1.ScriptPanelDockDrop(Sender: TObject; Source: TDragDockObject;
begin
if(X <= (ScriptPanel.Width div 2))then
begin
- FunctionList.Align := alLeft;
+ frmFunctionList.Align := alLeft;
PageControl1.Align := alRight;
Splitter1.ResizeAnchor := akLeft;
Splitter1.Align := alLeft;
- Splitter1.Left := FunctionList.Left + FunctionList.Width;
+ Splitter1.Left := frmFunctionList.Left + frmFunctionList.Width;
end else begin
- FunctionList.Align := alRight;
+ frmFunctionList.Align := alRight;
PageControl1.Align := alLeft;
Splitter1.ResizeAnchor := akRight;
Splitter1.Align := alRight;
- Splitter1.Left := FunctionList.Left;
+ Splitter1.Left := frmFunctionList.Left;
end;
PageControl1.Width := ScriptPanel.Width - (Source.DockRect.Right - Source.DockRect.Left);
- FunctionList.Width := ScriptPanel.Width - PageControl1.Width;
+ frmFunctionList.Width := ScriptPanel.Width - PageControl1.Width;
PageControl1.Align := alClient;
Splitter1.Show;
end;
@@ -373,14 +368,14 @@ procedure TForm1.ScriptPanelDockOver(Sender: TObject; Source: TDragDockObject; /
var
P: TPoint;
begin
- Accept := FunctionList.DragKind = dkDock;
+ Accept := frmFunctionList.DragKind = dkDock;
if(Accept)then
begin
P := ScriptPanel.ClientToScreen(Point(0, 0));
if(X <= (ScriptPanel.Width div 2))then
- Source.DockRect := Rect(P.x, P.y, min(P.x + FunctionList.Width, P.x + (ScriptPanel.Width div 2)), P.y + ScriptPanel.Height)
+ Source.DockRect := Rect(P.x, P.y, min(P.x + frmFunctionList.Width, P.x + (ScriptPanel.Width div 2)), P.y + ScriptPanel.Height)
else
- Source.DockRect := Rect(max(P.x + ScriptPanel.Width - FunctionList.Width, P.x + (ScriptPanel.Width div 2)), P.y, P.x + ScriptPanel.Width, P.y + ScriptPanel.Height);
+ Source.DockRect := Rect(max(P.x + ScriptPanel.Width - frmFunctionList.Width, P.x + (ScriptPanel.Width div 2)), P.y, P.x + ScriptPanel.Width, P.y + ScriptPanel.Height);
end;
end;
@@ -394,23 +389,6 @@ begin
CloseFindPanel;
end;
-procedure TForm1.FunctionListMouseDown(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer);
-var
- N: TTreeNode;
-begin
- N := FunctionList.GetNodeAt(x, y);
- if(N = nil)then
- begin
- FunctionList.DragKind := dkDock;
- FunctionList.BeginDrag(false, 40);
- exit;
- end;
- FunctionList.DragKind := dkDrag;
- if(Button = mbLeft) and (N.Level > 0)then
- FunctionList.BeginDrag(False, 10);
-end;
-
procedure TForm1.Splitter1CanResize(Sender: TObject; var NewSize: Integer;
var Accept: Boolean);
begin
@@ -953,27 +931,6 @@ begin
CurrScript.SynEdit.SetFocus;
end;
-procedure TForm1.DockFormOnClose(Sender: TObject; var CloseAction: TCloseAction);
-begin
- CloseAction := caHide;
- MenuItemFunctionList.Checked := False;
-end;
-
-procedure TForm1.FunctionListMouseUp(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer);
-var
- F: ^TCustomDockForm;
-begin
- if(FunctionList.Parent is TCustomDockForm)then
- begin
- F := @FunctionList.Parent; //can't typecast parent as a TCustomDockForm
- F^.Caption := 'Function List';
- F^.BorderStyle := bsSizeable;
- F^.OnClose := @DockFormOnClose;
- Splitter1.Hide;
- end;
-end;
-
procedure TForm1.MenuItemColourHistoryClick(Sender: TObject);
begin
MenuItemColourHistory.Checked := not ColourHistoryForm.Visible;
@@ -1189,16 +1146,16 @@ begin
Checked := not Checked;
if(Checked)then
begin
- if(FunctionList.Parent is TPanel)then
+ if(frmFunctionList.Parent is TPanel)then
begin
Splitter1.Show;
- FunctionList.Show;
- end else FunctionList.Parent.Show;
+ frmFunctionList.Show;
+ end else frmFunctionList.Parent.Show;
end else begin
- if(FunctionList.Parent is TPanel)then
- FunctionList.Hide
+ if(frmFunctionList.Parent is TPanel)then
+ frmFunctionList.Hide
else
- FunctionList.Parent.Hide;
+ frmFunctionList.Parent.Hide;
Splitter1.Hide;
end;
end;