From 568484d2e06f3765d9a1974cc163f66b88b1b2ff Mon Sep 17 00:00:00 2001 From: Wizzup? Date: Thu, 31 Dec 2009 18:17:49 +0000 Subject: [PATCH] Small updates + added core for updater git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@353 3f818213-9676-44b0-a9b4-5e4c4e03d09d --- Projects/MufasaTests/project1.lpi | 267 +- Projects/MufasaTests/project1.lpr | 169 +- Projects/SAMufasaGUI/colourhistory.pas | 7 +- Projects/SAMufasaGUI/debugimage.pas | 246 +- Projects/SAMufasaGUI/project1.lpi | 771 +-- Projects/SAMufasaGUI/project1.lpr | 2 +- Projects/SAMufasaGUI/testunit.lfm | 48 +- Projects/SAMufasaGUI/testunit.lrs | 5836 ++++++++++---------- Units/MMLAddon/PSInc/psexportedmethods.inc | 393 +- Units/MMLAddon/internets.pas | 40 +- Units/MMLAddon/mmlpsthread.pas | 2 + Units/MMLAddon/updater.pas | 182 + Units/MMLCore/finder.pas | 2 +- Units/MMLCore/window.pas | 4 +- 14 files changed, 4132 insertions(+), 3837 deletions(-) create mode 100644 Units/MMLAddon/updater.pas diff --git a/Projects/MufasaTests/project1.lpi b/Projects/MufasaTests/project1.lpi index 2401ae3..538f92f 100644 --- a/Projects/MufasaTests/project1.lpi +++ b/Projects/MufasaTests/project1.lpi @@ -11,7 +11,7 @@ - + @@ -30,15 +30,15 @@ - + - - + + - + @@ -51,10 +51,10 @@ - - - - + + + + @@ -69,8 +69,8 @@ - - + + @@ -78,8 +78,8 @@ - - + + @@ -87,8 +87,8 @@ - - + + @@ -96,8 +96,8 @@ - - + + @@ -105,8 +105,8 @@ - - + + @@ -114,8 +114,8 @@ - - + + @@ -127,9 +127,11 @@ - - - + + + + + @@ -141,10 +143,10 @@ - - + + - + @@ -176,19 +178,19 @@ - + - - + + - - - - + + + + @@ -196,17 +198,17 @@ - - + + - + - - + + @@ -214,8 +216,8 @@ - - + + @@ -237,127 +239,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -365,7 +430,7 @@ - + diff --git a/Projects/MufasaTests/project1.lpr b/Projects/MufasaTests/project1.lpr index 3be1f92..cb4d3ce 100644 --- a/Projects/MufasaTests/project1.lpr +++ b/Projects/MufasaTests/project1.lpr @@ -10,7 +10,8 @@ uses Forms,Interfaces, LCLIntf, Client, - bitmaps,{x ,}mufasatypes,dtm,dtmutil, ocrutil ,graphics ,colour_conv,math + bitmaps,{x ,}mufasatypes,dtm,dtmutil, ocrutil ,graphics ,colour_conv,math, + updater { you can add units after this }; @@ -55,7 +56,7 @@ end; procedure MufasaTests.DoRun; -const +{const ocr_Limit_High = 191; ocr_Limit_Low = 65; @@ -66,18 +67,20 @@ const ocr_Blue = 16776960; ocr_ItemC = 16744447; - ocr_Purple = 8388736; + ocr_Purple = 8388736; } var ErrorMsg: String; - Time: DWord; +{ Time: DWord; C: TClient; I, w, h,x,y: Integer; dtm: pdtm; p:tpointarray; bmp, bmprs: TMufasaBitmap; + tbmp: TBitmap; r,g,b:integer; - t:Dword; + t:Dword; } + up: TMMLFileDownloader; begin // quick check parameters @@ -95,6 +98,14 @@ begin Exit; end; + up := TMMLFileDownloader.Create; + up.FileURL:='http://www.villavu.com/pics/desktop.png'; + up.ReplacementFile:='test.png'; + up.DownloadAndSave; + up.Replace; + up.Free; + + { clOlive = false point } { clSilver = false shadow } @@ -102,140 +113,36 @@ begin { add your program here } +{ tbmp:=TBitmap.Create; + tbmp.LoadFromFile('/home/merlijn/Programs/mufasa/pics/16.bmp'); bmprs := TMufasaBitmap.Create; - bmprs.LoadFromFile('/home/merlijn/Programs/mufasa/pics/16.bmp'); - C := TClient.Create; - C.MWindow.SetTarget(bmprs); - C.MWindow.GetDimensions(w, h); + bmprs.SetSize(10,10); - writeln(inttostr(clpurple)); - - bmp := TMufasaBitmap.Create; - bmp.CopyClientToBitmap(C.MWindow, True, 0, 0, 450, 50); - - t:=gettickcount; - - for y := 0 to bmp.Height - 1 do - for x := 0 to bmp.Width - 1 do + bmprs.LoadFromRawImage(tbmp.RawImage); + tbmp.Free; + tbmp := bmprs.ToTBitmap; + } + { for y := 0 to tbmp.Height -1 do + for x := 0 to tbmp.width -1 do begin - colortorgb(bmp.fastgetpixel(x,y),r,g,b); - // the abs(g-b) < 15 seems to help heaps when taking out crap points - if (r > ocr_Limit_High) and (g > ocr_Limit_High) and (b > ocr_Limit_High){ and (abs(g-b) < 15)} then - begin - bmp.fastsetpixel(x,y,ocr_White); - continue; - end; - if (r < ocr_Limit_Low) and (g > ocr_Limit_High) and (b > ocr_Limit_High) then - begin - bmp.fastsetpixel(x,y,ocr_Blue); - continue; - end; - if (r < ocr_Limit_Low) and (g > ocr_Limit_High) and (b < ocr_Limit_Low) then - begin - bmp.fastsetpixel(x,y,ocr_Green); - continue; - end; - - // false results with fire - if(r > ocr_Limit_High) and (g > 100) and (g < ocr_Limit_High) and (b > 40) and (b < 90) then - begin - bmp.fastsetpixel(x,y,ocr_ItemC); - continue; - end; - if(r > ocr_Limit_High) and (g > ocr_Limit_High) and (b < ocr_Limit_Low) then - begin - bmp.fastsetpixel(x,y,ocr_Yellow); - continue; - end; - // better use g < 40 than ocr_Limit_Low imo - if (r > ocr_Limit_High) and (g < ocr_Limit_Low) and (b < ocr_Limit_Low) then - begin - bmp.fastsetpixel(x,y,ocr_Red); - continue; - end; - - if (r < ocr_Limit_Low) and (g < ocr_Limit_Low) and (b < ocr_Limit_Low) then - begin - bmp.FastSetPixel(x,y, ocr_Purple); - continue; - end; - - bmp.fastsetpixel(x,y,0); - end; - - // increase height by 1, so our algo works better. (shadow) - bmp.SetSize(Bmp.Width, Bmp.Height+1); - for x := 0 to bmp.width -1 do - bmp.fastsetpixel(x,bmp.height-1,0); - - for y := 0 to bmp.Height - 2 do - for x := 0 to bmp.Width - 2 do - begin - if bmp.fastgetpixel(x,y) = clPurple then - continue; - if bmp.fastgetpixel(x,y) = clBlack then - continue; - if (bmp.fastgetpixel(x,y) <> bmp.fastgetpixel(x+1,y+1)) and (bmp.fastgetpixel(x+1,y+1) <> clpurple) then - bmp.fastsetpixel(x,y,{clAqua}0); - end; - - { Optional - remove false shadow } - for y := bmp.Height - 1 downto 1 do - for x := bmp.Width - 1 downto 1 do - begin - if bmp.fastgetpixel(x,y) <> clPurple then - continue; - if bmp.fastgetpixel(x,y) = bmp.fastgetpixel(x-1,y-1) then - begin - bmp.fastsetpixel(x,y,clSilver); - continue; - end; - if bmp.fastgetpixel(x-1,y-1) = 0 then - bmp.fastsetpixel(x,y,clLime); - end; - - { remove bad points } - for y := bmp.Height - 2 downto 1 do - for x := bmp.Width - 2 downto 1 do - begin - if bmp.fastgetpixel(x,y) = clPurple then - continue; - if bmp.fastgetpixel(x,y) = clBlack then - continue; - if (bmp.fastgetpixel(x,y) = bmp.fastgetpixel(x+1,y+1) ) then - continue; - - if bmp.fastgetpixel(x+1,y+1) <> clPurple then - begin - bmp.fastsetpixel(x,y,clOlive); - continue; - end; - end; - - { Dangerous removes all pixels that had no pixels on x-1 or x+1} - { for y := 0 to bmp.Height - 2 do - for x := 1 to bmp.Width - 2 do - begin - if bmp.fastgetpixel(x,y) = clBlack then continue; - if bmp.fastgetpixel(x,y) = clPurple then continue; - if bmp.fastgetpixel(x,y) = clOlive then continue; - if bmp.fastgetpixel(x,y) = clSilver then continue; - if bmp.fastgetpixel(x,y) = clLime then continue; - if (bmp.fastgetpixel(x,y) <> bmp.fastgetpixel(x+1,y) ) and - (bmp.fastgetpixel(x,y) <> bmp.fastgetpixel(x-1,y) ) then - bmp.fastsetpixel(x,y,clFuchsia); - end; } - - writeln(inttostr(gettickcount-t)); + writeln(format('(%d, %d) = %d , %d', [x,y,tbmp.Canvas.pixels[x,y],bmprs.FastGetPixel(x,y)])); + colortorgb(tbmp.Canvas.pixels[x,y],r,g,b); + writeln(format('%d,%d,%d', [r,g,b])); + colortorgb(bmprs.FastGetPixel(x,y),r,g,b); + writeln(format('%d,%d,%d', [r,g,b])); + end; } + //bmprs.LoadFromFile('/home/merlijn/Programs/mufasa/pics/16.bmp'); + {C := TClient.Create; + C.MWindow.SetTarget(bmprs); } - - - bmp.SaveToFile('/tmp/output.bmp'); + { bmp.SaveToFile('/tmp/output.bmp'); + tbmp.SaveToFile('/tmp/output2.bmp'); //bmp.OnDestroy:=nil; bmp.Free; - C.Free; + tbmp.Free; } + // C.Free; // stop program loop Terminate; diff --git a/Projects/SAMufasaGUI/colourhistory.pas b/Projects/SAMufasaGUI/colourhistory.pas index da30d11..89291bf 100644 --- a/Projects/SAMufasaGUI/colourhistory.pas +++ b/Projects/SAMufasaGUI/colourhistory.pas @@ -74,8 +74,7 @@ type procedure DeleteSelected(Sender: TObject); procedure AddColObj(c: TColourPickerObject; autoName: Boolean); - constructor Create(TheOwner: TComponent); override; - destructor Destroy; override; + procedure CHSaveClick(Sender: TObject); procedure FormCreate(Sender: TObject); procedure OkButtonClick(Sender: TObject); @@ -90,6 +89,9 @@ type procedure SetNodeBitmap(N: TTreeNode); procedure SaveToXML(s: String); procedure XML2Tree(XMLDoc: TXMLDocument); + public + constructor Create(TheOwner: TComponent); override; + destructor Destroy; override; public IndexSelected: Integer; { public declarations } @@ -179,7 +181,6 @@ end; procedure TColourHistoryForm.DeleteSelected(Sender: TObject); var - i:integer; e: TTreeNodesEnumerator; begin diff --git a/Projects/SAMufasaGUI/debugimage.pas b/Projects/SAMufasaGUI/debugimage.pas index 4ee2f7d..7f58fb3 100644 --- a/Projects/SAMufasaGUI/debugimage.pas +++ b/Projects/SAMufasaGUI/debugimage.pas @@ -1,122 +1,124 @@ -{ - This file is part of the Mufasa Macro Library (MML) - Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer - - MML is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - MML is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with MML. If not, see . - - See the file COPYING, included in this distribution, - for details about the copyright. - - Image debug window for Mufasa Macro Library -} -unit debugimage; - -{$mode objfpc}{$H+} - -interface - -uses - Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, - ExtCtrls, bitmaps; - -type - - { TDebugImgForm } - - TDebugImgForm = class(TForm) - DrawImage: TImage; - procedure FormCreate(Sender: TObject); - procedure FormHide(Sender: TObject); - procedure FormResize(Sender: TObject); - private - { private declarations } - public - DispSize : TPoint; - ToDrawBmp: TMufasaBitmap;//The bitmap we should draw! - GetDbgBmp : TMufasaBitmap; - procedure BlackDebugImage; - procedure DrawBitmap; - procedure GetDebugImage; - procedure ShowDebugImgForm; //Uses the global var for w/h - { public declarations } - end; - - -var - DebugImgForm: TDebugImgForm; - -implementation - -uses - MufasaTypes, math,windowutil,graphtype, IntfGraphics,TestUnit,lclintf,colour_conv,InterfaceBase; -{ TDebugImgForm } - -procedure TDebugImgForm.FormCreate(Sender: TObject); -begin - BlackDebugImage; -end; - -procedure TDebugImgForm.FormHide(Sender: TObject); -begin - Form1.MenuItemDebugImage.Checked := False; -end; - -procedure TDebugImgForm.FormResize(Sender: TObject); -begin - DrawImage.Picture.Graphic.Width := DrawImage.Width; - DrawImage.Picture.Graphic.Height := DrawImage.Height; - BlackDebugImage; -end; - -procedure TDebugImgForm.BlackDebugImage; -begin - DrawImage.Canvas.Brush.Color:= clBlack; - DrawImage.Canvas.Pen.Color:= clBlack; - DrawImage.Canvas.Rectangle(0,0,DrawImage.Width,DrawImage.Height); -end; - -procedure TDebugImgForm.DrawBitmap; -var - rawImage : TRawImage; - Bitmap : Graphics.TBitmap; -begin - if ToDrawBmp = nil then - raise Exception.Create('ERROR in TDebugImgForm.DrawBitmap: ToDrawBmp = nil'); - ArrDataToRawImage(ToDrawBmp.FData,Point(ToDrawBmp.width,ToDrawBmp.height),RawImage); - Bitmap := Graphics.TBitmap.Create; - Bitmap.LoadFromRawImage(Rawimage,false); - DrawImage.Canvas.Draw(0,0,Bitmap); - Bitmap.Free; -end; - -procedure TDebugImgForm.GetDebugImage; -begin; - GetDbgBmp.LoadFromRawImage(DrawImage.Picture.Bitmap.RawImage); -end; - -procedure TDebugImgForm.ShowDebugImgForm; -begin - Show; - if (DispSize.x <> Width) or (DispSize.y <> height) then - begin; - Width := DispSize.x; - Height := DispSize.y; - end; -end; - -initialization - {$I debugimage.lrs} - -end. - +{ + This file is part of the Mufasa Macro Library (MML) + Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer + + MML is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + MML is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with MML. If not, see . + + See the file COPYING, included in this distribution, + for details about the copyright. + + Image debug window for Mufasa Macro Library +} +unit debugimage; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, + ExtCtrls, bitmaps; + +type + + { TDebugImgForm } + + TDebugImgForm = class(TForm) + DrawImage: TImage; + procedure FormCreate(Sender: TObject); + procedure FormHide(Sender: TObject); + procedure FormResize(Sender: TObject); + private + { private declarations } + public + DispSize : TPoint; + ToDrawBmp: TMufasaBitmap;//The bitmap we should draw! + GetDbgBmp : TMufasaBitmap; + procedure BlackDebugImage; + procedure DrawBitmap; + procedure GetDebugImage; + procedure ShowDebugImgForm; //Uses the global var for w/h + { public declarations } + end; + + +var + DebugImgForm: TDebugImgForm; + +implementation + +uses + MufasaTypes, math,windowutil,graphtype, IntfGraphics,TestUnit,lclintf,colour_conv,InterfaceBase; +{ TDebugImgForm } + +procedure TDebugImgForm.FormCreate(Sender: TObject); +begin + BlackDebugImage; +end; + +procedure TDebugImgForm.FormHide(Sender: TObject); +begin + Form1.MenuItemDebugImage.Checked := False; +end; + +procedure TDebugImgForm.FormResize(Sender: TObject); +begin + DrawImage.Picture.Graphic.Width := DrawImage.Width; + DrawImage.Picture.Graphic.Height := DrawImage.Height; + BlackDebugImage; +end; + +procedure TDebugImgForm.BlackDebugImage; +begin + DrawImage.Canvas.Brush.Color:= clBlack; + DrawImage.Canvas.Pen.Color:= clBlack; + DrawImage.Canvas.Rectangle(0,0,DrawImage.Width,DrawImage.Height); + DrawImage.Repaint; +end; + +procedure TDebugImgForm.DrawBitmap; +var + rawImage : TRawImage; + Bitmap : Graphics.TBitmap; +begin + if ToDrawBmp = nil then + raise Exception.Create('ERROR in TDebugImgForm.DrawBitmap: ToDrawBmp = nil'); + ArrDataToRawImage(ToDrawBmp.FData,Point(ToDrawBmp.width,ToDrawBmp.height),RawImage); + Bitmap := Graphics.TBitmap.Create; + Bitmap.LoadFromRawImage(Rawimage,false); + DrawImage.Canvas.Draw(0,0,Bitmap); + DrawImage.Repaint; + Bitmap.Free; +end; + +procedure TDebugImgForm.GetDebugImage; +begin; + GetDbgBmp.LoadFromRawImage(DrawImage.Picture.Bitmap.RawImage); +end; + +procedure TDebugImgForm.ShowDebugImgForm; +begin + Show; + if (DispSize.x <> Width) or (DispSize.y <> height) then + begin; + Width := DispSize.x; + Height := DispSize.y; + end; +end; + +initialization + {$I debugimage.lrs} + +end. + diff --git a/Projects/SAMufasaGUI/project1.lpi b/Projects/SAMufasaGUI/project1.lpi index b451639..97d1831 100644 --- a/Projects/SAMufasaGUI/project1.lpi +++ b/Projects/SAMufasaGUI/project1.lpi @@ -10,7 +10,7 @@ <UseXPManifest Value="True"/> - <ActiveEditorIndexAtStart Value="1"/> + <ActiveEditorIndexAtStart Value="9"/> </General> <VersionInfo> <ProjectVersion Value=""/> @@ -36,7 +36,7 @@ <PackageName Value="LCL"/> </Item2> </RequiredPackages> - <Units Count="270"> + <Units Count="278"> <Unit0> <Filename Value="project1.lpr"/> <IsPartOfProject Value="True"/> @@ -52,83 +52,83 @@ <UnitName Value="TestUnit"/> <CursorPos X="33" Y="57"/> <TopLine Value="32"/> - <UsageCount Value="26"/> + <UsageCount Value="25"/> </Unit1> <Unit2> <Filename Value="client.pas"/> <UnitName Value="Client"/> <CursorPos X="18" Y="34"/> <TopLine Value="10"/> - <UsageCount Value="26"/> + <UsageCount Value="25"/> </Unit2> <Unit3> <Filename Value="../cogat/Units/CogatUnits/comptypes.pas"/> <UnitName Value="CompTypes"/> <CursorPos X="13" Y="531"/> <TopLine Value="523"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit3> <Unit4> <Filename Value="mufasatypes.pas"/> <UnitName Value="MufasaTypes"/> <CursorPos X="52" Y="20"/> <TopLine Value="1"/> - <UsageCount Value="26"/> + <UsageCount Value="25"/> </Unit4> <Unit5> <Filename Value="window.pas"/> <UnitName Value="Window"/> <CursorPos X="4" Y="100"/> <TopLine Value="85"/> - <UsageCount Value="26"/> + <UsageCount Value="25"/> </Unit5> <Unit6> <Filename Value="input.pas"/> <UnitName Value="Input"/> <CursorPos X="5" Y="20"/> <TopLine Value="15"/> - <UsageCount Value="25"/> + <UsageCount Value="24"/> </Unit6> <Unit7> <Filename Value="../cogat/Units/CogatUnits/compinput.pas"/> <UnitName Value="CompInput"/> <CursorPos X="43" Y="250"/> <TopLine Value="236"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit7> <Unit8> <Filename Value="Units/MMLCore/windowutil.pas"/> <UnitName Value="windowutil"/> <CursorPos X="54" Y="20"/> <TopLine Value="20"/> - <UsageCount Value="18"/> + <UsageCount Value="17"/> </Unit8> <Unit9> <Filename Value="../Documents/lazarus/lcl/graphics.pp"/> <UnitName Value="Graphics"/> <CursorPos X="15" Y="1287"/> <TopLine Value="1272"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit9> <Unit10> <Filename Value="../cogat/Units/CogatUnits/compbitmaps.pas"/> <UnitName Value="CompBitmaps"/> <CursorPos X="1" Y="109"/> <TopLine Value="92"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit10> <Unit11> <Filename Value="../Documents/lazarus/lcl/include/rasterimage.inc"/> <CursorPos X="1" Y="1"/> <TopLine Value="691"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit11> <Unit12> <Filename Value="../Documents/fpc/packages/x11/src/xlib.pp"/> <UnitName Value="xlib"/> <CursorPos X="47" Y="1272"/> <TopLine Value="1257"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit12> <Unit13> <Filename Value="testunit.pas"/> @@ -137,65 +137,63 @@ <HasResources Value="True"/> <ResourceBaseClass Value="Form"/> <UnitName Value="TestUnit"/> - <CursorPos X="153" Y="986"/> - <TopLine Value="955"/> - <EditorIndex Value="7"/> + <CursorPos X="14" Y="285"/> + <TopLine Value="278"/> <UsageCount Value="202"/> - <Loaded Value="True"/> </Unit13> <Unit14> <Filename Value="../cogat/Units/CogatUnits/compcolors.pas"/> <UnitName Value="CompColors"/> <CursorPos X="44" Y="914"/> <TopLine Value="897"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit14> <Unit15> <Filename Value="../Compilertje/Units/CogatUnits/compinput.pas"/> <UnitName Value="CompInput"/> <CursorPos X="6" Y="462"/> <TopLine Value="449"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit15> <Unit16> <Filename Value="../FPC/FPCCheckout/rtl/win/wininc/func.inc"/> <CursorPos X="10" Y="663"/> <TopLine Value="635"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit16> <Unit17> <Filename Value="../Compilertje/Units/CogatUnits/comptypes.pas"/> <UnitName Value="CompTypes"/> <CursorPos X="13" Y="418"/> <TopLine Value="402"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit17> <Unit18> <Filename Value="../Compilertje/Units/CogatUnits/compcolors.pas"/> <UnitName Value="CompColors"/> <CursorPos X="12" Y="603"/> <TopLine Value="573"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit18> <Unit19> <Filename Value="../lazarus/lcl/graphics.pp"/> <UnitName Value="Graphics"/> <CursorPos X="15" Y="1283"/> <TopLine Value="1270"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit19> <Unit20> <Filename Value="../lazarus/lcl/include/rasterimage.inc"/> <CursorPos X="20" Y="351"/> <TopLine Value="339"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit20> <Unit21> <Filename Value="../../Units/MMLCore/client.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="Client"/> - <CursorPos X="101" Y="48"/> - <TopLine Value="31"/> + <CursorPos X="27" Y="49"/> + <TopLine Value="9"/> <EditorIndex Value="0"/> <UsageCount Value="201"/> <Loaded Value="True"/> @@ -213,7 +211,7 @@ <UnitName Value="compFiles"/> <CursorPos X="18" Y="8"/> <TopLine Value="1"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit23> <Unit24> <Filename Value="../../Units/MMLCore/files.pas"/> @@ -227,9 +225,9 @@ <Filename Value="../../Units/MMLCore/window.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="Window"/> - <CursorPos X="22" Y="63"/> - <TopLine Value="44"/> - <EditorIndex Value="2"/> + <CursorPos X="1" Y="208"/> + <TopLine Value="188"/> + <EditorIndex Value="4"/> <UsageCount Value="201"/> <Loaded Value="True"/> </Unit25> @@ -238,28 +236,30 @@ <UnitName Value="CompTypes"/> <CursorPos X="35" Y="727"/> <TopLine Value="712"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit26> <Unit27> <Filename Value="../../Units/MMLCore/windowutil.pas"/> <UnitName Value="windowutil"/> - <CursorPos X="56" Y="17"/> - <TopLine Value="1"/> - <UsageCount Value="94"/> + <CursorPos X="59" Y="92"/> + <TopLine Value="69"/> + <EditorIndex Value="3"/> + <UsageCount Value="100"/> + <Loaded Value="True"/> </Unit27> <Unit28> <Filename Value="../../Units/MMLCore/input.pas"/> <UnitName Value="Input"/> <CursorPos X="71" Y="274"/> <TopLine Value="242"/> - <UsageCount Value="86"/> + <UsageCount Value="85"/> </Unit28> <Unit29> <Filename Value="../../Units/MMLCore/finder.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="finder"/> - <CursorPos X="22" Y="863"/> - <TopLine Value="1464"/> + <CursorPos X="94" Y="277"/> + <TopLine Value="255"/> <UsageCount Value="201"/> </Unit29> <Unit30> @@ -267,101 +267,103 @@ <UnitName Value="Graphics"/> <CursorPos X="3" Y="59"/> <TopLine Value="31"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit30> <Unit31> <Filename Value="../../Units/MMLAddon/mmlthread.pas"/> <UnitName Value="MMLThread"/> <CursorPos X="10" Y="62"/> <TopLine Value="50"/> - <UsageCount Value="190"/> + <UsageCount Value="189"/> </Unit31> <Unit32> <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="mmlpsthread"/> - <CursorPos X="59" Y="27"/> - <TopLine Value="5"/> + <CursorPos X="1" Y="99"/> + <TopLine Value="67"/> + <EditorIndex Value="6"/> <UsageCount Value="202"/> + <Loaded Value="True"/> </Unit32> <Unit33> <Filename Value="../../Units/PascalScript/uPSComponent.pas"/> <UnitName Value="uPSComponent"/> <CursorPos X="12" Y="918"/> <TopLine Value="903"/> - <UsageCount Value="26"/> + <UsageCount Value="25"/> </Unit33> <Unit34> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/classes/classesh.inc"/> <CursorPos X="10" Y="1885"/> <TopLine Value="1857"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit34> <Unit35> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/types.pp"/> <UnitName Value="types"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit35> <Unit36> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/typinfo.pp"/> <UnitName Value="typinfo"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit36> <Unit37> <Filename Value="../../Units/PascalScript/uPSC_forms.pas"/> <UnitName Value="uPSC_forms"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit37> <Unit38> <Filename Value="project1.lrs"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit38> <Unit39> <Filename Value="../../../lazarus/lcl/lresources.pp"/> <UnitName Value="LResources"/> <CursorPos X="3" Y="1396"/> <TopLine Value="1396"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit39> <Unit40> <Filename Value="../../../lazarus/components/synedit/synedit.pp"/> <UnitName Value="SynEdit"/> <CursorPos X="32" Y="1834"/> <TopLine Value="1832"/> - <UsageCount Value="13"/> + <UsageCount Value="12"/> </Unit40> <Unit41> <Filename Value="../../Units/MMLAddon/PSInc/pscompile.inc"/> <CursorPos X="42" Y="14"/> <TopLine Value="11"/> - <UsageCount Value="99"/> + <UsageCount Value="98"/> </Unit41> <Unit42> <Filename Value="../../../FPC/FPCCheckout/rtl/win/tthread.inc"/> <CursorPos X="26" Y="101"/> <TopLine Value="84"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit42> <Unit43> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/objpash.inc"/> <CursorPos X="20" Y="233"/> <TopLine Value="205"/> - <UsageCount Value="27"/> + <UsageCount Value="26"/> </Unit43> <Unit44> <Filename Value="../../Units/MMLCore/bitmaps.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="bitmaps"/> - <CursorPos X="15" Y="808"/> - <TopLine Value="789"/> + <CursorPos X="36" Y="33"/> + <TopLine Value="1"/> <EditorIndex Value="1"/> <UsageCount Value="200"/> <Loaded Value="True"/> @@ -371,13 +373,13 @@ <UnitName Value="FPCanvas"/> <CursorPos X="96" Y="409"/> <TopLine Value="188"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit45> <Unit46> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/colour.inc"/> <CursorPos X="53" Y="65"/> <TopLine Value="25"/> - <UsageCount Value="34"/> + <UsageCount Value="33"/> </Unit46> <Unit47> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/bitmap.inc"/> @@ -390,119 +392,119 @@ <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpcanvas.inc"/> <CursorPos X="16" Y="20"/> <TopLine Value="18"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit48> <Unit49> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/examples/drawing.pp"/> <UnitName Value="Drawing"/> <CursorPos X="20" Y="19"/> <TopLine Value="1"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit49> <Unit50> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpimgcanv.pp"/> <UnitName Value="FPImgCanv"/> <CursorPos X="32" Y="23"/> <TopLine Value="13"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit50> <Unit51> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fppixlcanv.pp"/> <UnitName Value="FPPixlCanv"/> <CursorPos X="3" Y="31"/> <TopLine Value="32"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit51> <Unit52> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpimage.pp"/> <UnitName Value="FPimage"/> <CursorPos X="21" Y="239"/> <TopLine Value="214"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit52> <Unit53> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpimage.inc"/> <CursorPos X="14" Y="88"/> <TopLine Value="74"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit53> <Unit54> <Filename Value="../../../lazarus/lcl/lclintf.pas"/> <UnitName Value="LCLIntf"/> <CursorPos X="10" Y="76"/> <TopLine Value="66"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit54> <Unit55> <Filename Value="../../../lazarus/lcl/intfgraphics.pas"/> <UnitName Value="IntfGraphics"/> <CursorPos X="3" Y="1336"/> <TopLine Value="1334"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit55> <Unit56> <Filename Value="../../../lazarus/lcl/graphtype.pp"/> <UnitName Value="GraphType"/> <CursorPos X="45" Y="1006"/> <TopLine Value="994"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit56> <Unit57> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpcolors.inc"/> <CursorPos X="24" Y="21"/> <TopLine Value="12"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit57> <Unit58> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fppalette.inc"/> <CursorPos X="3" Y="19"/> <TopLine Value="4"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit58> <Unit59> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fphandler.inc"/> <CursorPos X="18" Y="268"/> <TopLine Value="241"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit59> <Unit60> <Filename Value="../../../FPC/FPCCheckout/packages/fcl-image/src/fpwritebmp.pp"/> <UnitName Value="FPWriteBMP"/> <CursorPos X="28" Y="722"/> <TopLine Value="698"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit60> <Unit61> <Filename Value="../../../lazarus/lcl/include/custombitmap.inc"/> <CursorPos X="3" Y="98"/> <TopLine Value="96"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit61> <Unit62> <Filename Value="../../../Compilertje/Units/CogatUnits/compmaths.pas"/> <UnitName Value="CompMaths"/> <CursorPos X="26" Y="43"/> <TopLine Value="14"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit62> <Unit63> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/math.pp"/> <UnitName Value="math"/> <CursorPos X="10" Y="155"/> <TopLine Value="145"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit63> <Unit64> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/systemh.inc"/> <CursorPos X="135" Y="9"/> <TopLine Value="1062"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit64> <Unit65> <Filename Value="../../../FPC/FPCCheckout/rtl/i386/fastmove.inc"/> <CursorPos X="44" Y="836"/> <TopLine Value="817"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit65> <Unit66> <Filename Value="../../Units/MMLCore/colour_conv.pas"/> @@ -517,51 +519,51 @@ <UnitName Value="CompColors"/> <CursorPos X="10" Y="35"/> <TopLine Value="20"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit67> <Unit68> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/mouse.inc"/> <CursorPos X="67" Y="48"/> <TopLine Value="31"/> - <UsageCount Value="12"/> + <UsageCount Value="11"/> </Unit68> <Unit69> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/other.inc"/> <CursorPos X="56" Y="46"/> <TopLine Value="25"/> - <UsageCount Value="45"/> + <UsageCount Value="44"/> </Unit69> <Unit70> <Filename Value="../../Units/PascalScript/uPSCompiler.pas"/> <UnitName Value="uPSCompiler"/> <CursorPos X="3" Y="1696"/> <TopLine Value="1686"/> - <UsageCount Value="18"/> + <UsageCount Value="17"/> </Unit70> <Unit71> <Filename Value="../../Units/MMLCore/macro/ColorSame.inc"/> <CursorPos X="37" Y="5"/> <TopLine Value="1"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit71> <Unit72> <Filename Value="../../../Documents/fpc/rtl/inc/mathh.inc"/> <CursorPos X="19" Y="58"/> <TopLine Value="56"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit72> <Unit73> <Filename Value="../../../Documents/fpc/rtl/objpas/sysutils/sysutilh.inc"/> <CursorPos X="19" Y="72"/> <TopLine Value="57"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit73> <Unit74> <Filename Value="../../Units/PascalScript/uPSRuntime.pas"/> <UnitName Value="uPSRuntime"/> <CursorPos X="37" Y="5873"/> <TopLine Value="5850"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit74> <Unit75> <Filename Value="../../Units/MMLAddon/plugins.pas"/> @@ -576,82 +578,80 @@ <UnitName Value="compFiles"/> <CursorPos X="19" Y="510"/> <TopLine Value="495"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit76> <Unit77> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/sysutils/filutilh.inc"/> <CursorPos X="3" Y="17"/> <TopLine Value="2"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit77> <Unit78> <Filename Value="../../../lazarus/lcl/fileutil.pas"/> <UnitName Value="FileUtil"/> <CursorPos X="10" Y="81"/> <TopLine Value="66"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit78> <Unit79> <Filename Value="../../../lazarus/lcl/include/fileutil.inc"/> <CursorPos X="35" Y="611"/> <TopLine Value="582"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit79> <Unit80> <Filename Value="../../Units/MMLAddon/PSInc/psdefines.inc"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit80> <Unit81> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/math.inc"/> <CursorPos X="56" Y="15"/> <TopLine Value="1"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit81> <Unit82> <Filename Value="../../../lazarus/lcl/controls.pp"/> <UnitName Value="Controls"/> <CursorPos X="3" Y="1426"/> <TopLine Value="1416"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit82> <Unit83> <Filename Value="../../../lazarus/lcl/include/control.inc"/> <CursorPos X="31" Y="85"/> <TopLine Value="80"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit83> <Unit84> <Filename Value="../../../lazarus/lcl/menus.pp"/> <UnitName Value="Menus"/> <CursorPos X="10" Y="38"/> <TopLine Value="38"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit84> <Unit85> <Filename Value="../../../cogat/Units/CogatUnits/compdtm.pas"/> <UnitName Value="compDTM"/> <CursorPos X="9" Y="79"/> <TopLine Value="61"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit85> <Unit86> <Filename Value="../../Units/MMLCore/dtm.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="dtm"/> - <CursorPos X="34" Y="465"/> - <TopLine Value="440"/> - <EditorIndex Value="5"/> + <CursorPos X="110" Y="290"/> + <TopLine Value="294"/> <UsageCount Value="200"/> - <Loaded Value="True"/> </Unit86> <Unit87> <Filename Value="../../../cogat/Units/CogatUnits/comppicker.pas"/> <UnitName Value="CompPicker"/> <CursorPos X="47" Y="240"/> <TopLine Value="213"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit87> <Unit88> <Filename Value="../../Units/MMLAddon/colourpicker.pas"/> @@ -666,7 +666,7 @@ <UnitName Value="CompDragger"/> <CursorPos X="101" Y="26"/> <TopLine Value="26"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit89> <Unit90> <Filename Value="../../../cogat/mainform.pas"/> @@ -676,7 +676,7 @@ <UnitName Value="MainForm"/> <CursorPos X="29" Y="635"/> <TopLine Value="612"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit90> <Unit91> <Filename Value="../../Units/MMLAddon/windowselector.pas"/> @@ -690,71 +690,69 @@ <Filename Value="../../../usr/lib64/fpc/2.2.4/source/rtl/objpas/classes/classesh.inc"/> <CursorPos X="3" Y="319"/> <TopLine Value="319"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit92> <Unit93> <Filename Value="../../../lazarus/lcl/forms.pp"/> <UnitName Value="Forms"/> <CursorPos X="23" Y="660"/> <TopLine Value="650"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit93> <Unit94> <Filename Value="../../../usr/lib64/fpc/2.2.4/source/rtl/unix/cthreads.pp"/> <UnitName Value="cthreads"/> <CursorPos X="28" Y="1077"/> <TopLine Value="1070"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit94> <Unit95> <Filename Value="../../../usr/lib64/fpc/2.2.4/source/rtl/inc/threadh.inc"/> <CursorPos X="58" Y="78"/> <TopLine Value="59"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit95> <Unit96> <Filename Value="../../Units/MMLCore/dtmutil.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="dtmutil"/> - <CursorPos X="21" Y="216"/> - <TopLine Value="28"/> - <EditorIndex Value="6"/> + <CursorPos X="3" Y="235"/> + <TopLine Value="6"/> <UsageCount Value="206"/> - <Loaded Value="True"/> </Unit96> <Unit97> <Filename Value="../../../cogat/Units/CogatUnits/compmaths.pas"/> <UnitName Value="CompMaths"/> <CursorPos X="15" Y="640"/> <TopLine Value="636"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit97> <Unit98> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/dtm.inc"/> - <CursorPos X="33" Y="34"/> - <TopLine Value="30"/> - <UsageCount Value="53"/> + <CursorPos X="67" Y="73"/> + <TopLine Value="1"/> + <UsageCount Value="58"/> </Unit98> <Unit99> <Filename Value="../../../Documents/lazarus/lcl/graphics.pp"/> <UnitName Value="Graphics"/> <CursorPos X="3" Y="53"/> <TopLine Value="38"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit99> <Unit100> <Filename Value="../../../cogat/compscript.pas"/> <UnitName Value="CompScript"/> <CursorPos X="1" Y="529"/> <TopLine Value="508"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit100> <Unit101> <Filename Value="../../../Documents/fpc/rtl/objpas/math.pp"/> <UnitName Value="math"/> <CursorPos X="40" Y="34"/> <TopLine Value="19"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit101> <Unit102> <Filename Value="../../Units/MMLCore/mmath.pas"/> @@ -769,150 +767,152 @@ <UnitName Value="types"/> <CursorPos X="5" Y="75"/> <TopLine Value="60"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit103> <Unit104> <Filename Value="../../../Documents/fpc/rtl/unix/classes.pp"/> <UnitName Value="Classes"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit104> <Unit105> <Filename Value="../../../Documents/fpc/rtl/unix/sysutils.pp"/> <UnitName Value="sysutils"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit105> <Unit106> <Filename Value="../../../Documents/lazarus/lcl/lclintf.pas"/> <UnitName Value="LCLIntf"/> <CursorPos X="51" Y="261"/> <TopLine Value="251"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit106> <Unit107> <Filename Value="../../Units/MMLCore/ocr.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="ocr"/> - <CursorPos X="24" Y="161"/> - <TopLine Value="145"/> + <CursorPos X="58" Y="616"/> + <TopLine Value="661"/> + <EditorIndex Value="2"/> <UsageCount Value="200"/> + <Loaded Value="True"/> </Unit107> <Unit108> <Filename Value="../../Units/PascalScript/uPSR_extctrls.pas"/> <UnitName Value="uPSR_extctrls"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit108> <Unit109> <Filename Value="../../../Documents and Settings/Raymond/Bureaublad/project.pas"/> <UnitName Value="project"/> <CursorPos X="46" Y="15"/> <TopLine Value="1"/> - <UsageCount Value="174"/> + <UsageCount Value="173"/> </Unit109> <Unit110> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/heap.inc"/> <CursorPos X="34" Y="463"/> <TopLine Value="455"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit110> <Unit111> <Filename Value="../../../FPC/FPCCheckout/rtl/win/wininc/struct.inc"/> <CursorPos X="6" Y="217"/> <TopLine Value="196"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit111> <Unit112> <Filename Value="../../../lazarus/lcl/include/customform.inc"/> <CursorPos X="17" Y="1643"/> <TopLine Value="1630"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit112> <Unit113> <Filename Value="../../../lazarus/lcl/include/winapih.inc"/> <CursorPos X="87" Y="236"/> <TopLine Value="232"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit113> <Unit114> <Filename Value="../../../lazarus/lcl/include/application.inc"/> <CursorPos X="37" Y="945"/> <TopLine Value="925"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit114> <Unit115> <Filename Value="../../../lazarus/components/synedit/syneditkeycmds.pp"/> <UnitName Value="SynEditKeyCmds"/> <CursorPos X="27" Y="146"/> <TopLine Value="151"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit115> <Unit116> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/sysutils/sysutilh.inc"/> <CursorPos X="13" Y="242"/> <TopLine Value="214"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit116> <Unit117> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/sysutils/sysutils.inc"/> <CursorPos X="9" Y="126"/> <TopLine Value="122"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit117> <Unit118> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/window.inc"/> <CursorPos X="50" Y="41"/> <TopLine Value="20"/> - <UsageCount Value="14"/> + <UsageCount Value="13"/> </Unit118> <Unit119> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/classes/compon.inc"/> <CursorPos X="62" Y="539"/> <TopLine Value="519"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit119> <Unit120> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/objpas.inc"/> <CursorPos X="9" Y="152"/> <TopLine Value="147"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit120> <Unit121> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/threadh.inc"/> <CursorPos X="11" Y="135"/> <TopLine Value="119"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit121> <Unit122> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/thread.inc"/> <CursorPos X="21" Y="152"/> <TopLine Value="152"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit122> <Unit123> <Filename Value="../../../lazarus/lcl/comctrls.pp"/> <UnitName Value="ComCtrls"/> <CursorPos X="14" Y="2243"/> <TopLine Value="2225"/> - <UsageCount Value="20"/> + <UsageCount Value="19"/> </Unit123> <Unit124> <Filename Value="../../../lazarus/lcl/imglist.pp"/> <UnitName Value="ImgList"/> <CursorPos X="3" Y="58"/> <TopLine Value="41"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit124> <Unit125> <Filename Value="../../Units/PascalScript/uPSDebugger.pas"/> <UnitName Value="uPSDebugger"/> <CursorPos X="13" Y="627"/> <TopLine Value="624"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit125> <Unit126> <Filename Value="../../Units/MMLCore/web.pas"/> @@ -927,49 +927,49 @@ <UnitName Value="LazHelpHTML"/> <CursorPos X="39" Y="89"/> <TopLine Value="81"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit127> <Unit128> <Filename Value="../../../lazarus/lcl/lazhelpintf.pas"/> <UnitName Value="LazHelpIntf"/> <CursorPos X="3" Y="455"/> <TopLine Value="447"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit128> <Unit129> <Filename Value="../../../lazarus/components/codetools/codetoolsstrconsts.pas"/> <UnitName Value="CodeToolsStrConsts"/> <CursorPos X="28" Y="81"/> <TopLine Value="74"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit129> <Unit130> <Filename Value="../../../lazarus/components/codetools/pascalparsertool.pas"/> <UnitName Value="PascalParserTool"/> <CursorPos X="40" Y="2806"/> <TopLine Value="2786"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit130> <Unit131> <Filename Value="../../../lazarus/components/codetools/stdcodetools.pas"/> <UnitName Value="StdCodeTools"/> <CursorPos X="7" Y="5187"/> <TopLine Value="5167"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit131> <Unit132> <Filename Value="../../../lazarus/components/codetools/definetemplates.pas"/> <UnitName Value="DefineTemplates"/> <CursorPos X="43" Y="4565"/> <TopLine Value="4526"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit132> <Unit133> <Filename Value="../../../lazarus/ide/editoroptions.pp"/> <UnitName Value="EditorOptions"/> <CursorPos X="1" Y="293"/> <TopLine Value="276"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit133> <Unit134> <Filename Value="../../../lazarus/ide/frames/editor_color_options.pas"/> @@ -979,14 +979,14 @@ <UnitName Value="editor_color_options"/> <CursorPos X="30" Y="357"/> <TopLine Value="311"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit134> <Unit135> <Filename Value="../../../lazarus/components/synedit/synedithighlighter.pp"/> <UnitName Value="SynEditHighlighter"/> <CursorPos X="28" Y="74"/> <TopLine Value="54"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit135> <Unit136> <Filename Value="../../../lazarus/ide/sourceeditor.pp"/> @@ -996,7 +996,7 @@ <UnitName Value="SourceEditor"/> <CursorPos X="35" Y="5100"/> <TopLine Value="5089"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit136> <Unit137> <Filename Value="../../../lazarus/ide/checklfmdlg.pas"/> @@ -1006,14 +1006,14 @@ <UnitName Value="CheckLFMDlg"/> <CursorPos X="41" Y="535"/> <TopLine Value="525"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit137> <Unit138> <Filename Value="../../../lazarus/ide/main.pp"/> <UnitName Value="Main"/> <CursorPos X="17" Y="1871"/> <TopLine Value="1860"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit138> <Unit139> <Filename Value="../../../lazarus/ide/buildfiledlg.pas"/> @@ -1023,7 +1023,7 @@ <UnitName Value="BuildFileDlg"/> <CursorPos X="22" Y="498"/> <TopLine Value="490"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit139> <Unit140> <Filename Value="../../../lazarus/ide/checkcompileropts.pas"/> @@ -1033,13 +1033,13 @@ <UnitName Value="CheckCompilerOpts"/> <CursorPos X="33" Y="513"/> <TopLine Value="505"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit140> <Unit141> <Filename Value="../../../FPC/FPCCheckout/rtl/inc/system.inc"/> <CursorPos X="38" Y="913"/> <TopLine Value="906"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit141> <Unit142> <Filename Value="../../../Compilertje/PascalScript/Samples/Lazarus/unit1.pas"/> @@ -1049,14 +1049,14 @@ <UnitName Value="Unit1"/> <CursorPos X="34" Y="148"/> <TopLine Value="141"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit142> <Unit143> <Filename Value="../../../Compilertje/PascalScript/Samples/RemObjects SDK Client/fMain.pas"/> <UnitName Value="fMain"/> <CursorPos X="34" Y="140"/> <TopLine Value="119"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit143> <Unit144> <Filename Value="../../../Compilertje/PascalScript/Samples/TestApp/fMain.pas"/> @@ -1064,13 +1064,13 @@ <UnitName Value="fMain"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit144> <Unit145> <Filename Value="../../../Compilertje/PascalScript/Samples/TestApp/fMain.lfm"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> <SyntaxHighlighter Value="LFM"/> </Unit145> <Unit146> @@ -1081,35 +1081,35 @@ <UnitName Value="Unit1"/> <CursorPos X="32" Y="86"/> <TopLine Value="76"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit146> <Unit147> <Filename Value="../../../Compilertje/PascalScript/Source/uPSComponent.pas"/> <UnitName Value="uPSComponent"/> <CursorPos X="101" Y="886"/> <TopLine Value="884"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit147> <Unit148> <Filename Value="../../../Compilertje/PascalScript/Source/uPSRuntime.pas"/> <UnitName Value="uPSRuntime"/> <CursorPos X="3" Y="2111"/> <TopLine Value="2125"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit148> <Unit149> <Filename Value="../../../Compilertje/PascalScript/Samples/Import/fMain.pas"/> <UnitName Value="fMain"/> <CursorPos X="74" Y="263"/> <TopLine Value="235"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit149> <Unit150> <Filename Value="../../../Compilertje/PascalScript/dunit/CompilerTestSimple.pas"/> <UnitName Value="CompilerTestSimple"/> <CursorPos X="28" Y="131"/> <TopLine Value="121"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit150> <Unit151> <Filename Value="framescript.pas"/> @@ -1117,76 +1117,74 @@ <ComponentName Value="ScriptFrame"/> <ResourceBaseClass Value="Frame"/> <UnitName Value="framescript"/> - <CursorPos X="45" Y="165"/> - <TopLine Value="137"/> - <EditorIndex Value="8"/> + <CursorPos X="15" Y="73"/> + <TopLine Value="161"/> <UsageCount Value="200"/> - <Loaded Value="True"/> </Unit151> <Unit152> <Filename Value="framesynedit.lrs"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit152> <Unit153> <Filename Value="../../../lazarus/lcl/include/pagecontrol.inc"/> <CursorPos X="15" Y="58"/> <TopLine Value="56"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit153> <Unit154> <Filename Value="../../../lazarus/lcl/extctrls.pp"/> <UnitName Value="ExtCtrls"/> <CursorPos X="14" Y="207"/> <TopLine Value="195"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit154> <Unit155> <Filename Value="../../../lazarus/lcl/include/customnotebook.inc"/> <CursorPos X="56" Y="307"/> <TopLine Value="296"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit155> <Unit156> <Filename Value="../../../lazarus/components/synedit/syneditpointclasses.pas"/> <UnitName Value="SynEditPointClasses"/> <CursorPos X="3" Y="1287"/> <TopLine Value="1281"/> - <UsageCount Value="12"/> + <UsageCount Value="11"/> </Unit156> <Unit157> <Filename Value="../../../lazarus/components/synedit/synedittextbase.pas"/> <UnitName Value="SynEditTextBase"/> <CursorPos X="14" Y="140"/> <TopLine Value="112"/> - <UsageCount Value="11"/> + <UsageCount Value="10"/> </Unit157> <Unit158> <Filename Value="../../../lazarus/lcl/include/wincontrol.inc"/> <CursorPos X="24" Y="4739"/> <TopLine Value="4721"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit158> <Unit159> <Filename Value="../../../lazarus/lcl/include/menuitem.inc"/> <CursorPos X="3" Y="1400"/> <TopLine Value="1378"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit159> <Unit160> <Filename Value="../../../lazarus/lcl/widgetset/wsmenus.pp"/> <UnitName Value="WSMenus"/> <CursorPos X="1" Y="129"/> <TopLine Value="126"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit160> <Unit161> <Filename Value="../../../lazarus/lcl/lclclasses.pp"/> <UnitName Value="LCLClasses"/> <CursorPos X="5" Y="40"/> <TopLine Value="32"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit161> <Unit162> <Filename Value="../../../lazarus/ide/codeexplorer.pas"/> @@ -1196,236 +1194,236 @@ <UnitName Value="CodeExplorer"/> <CursorPos X="13" Y="1477"/> <TopLine Value="1466"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit162> <Unit163> <Filename Value="../../../lazarus/ide/keymapping.pp"/> <UnitName Value="KeyMapping"/> <CursorPos X="32" Y="339"/> <TopLine Value="328"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit163> <Unit164> <Filename Value="../../../lazarus/ide/basedebugmanager.pas"/> <UnitName Value="BaseDebugManager"/> <CursorPos X="15" Y="87"/> <TopLine Value="76"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit164> <Unit165> <Filename Value="../../../lazarus/lcl/lmessages.pp"/> <UnitName Value="LMessages"/> <CursorPos X="11" Y="429"/> <TopLine Value="429"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit165> <Unit166> <Filename Value="../../../lazarus/lcl/include/customactionlist.inc"/> <CursorPos X="1" Y="134"/> <TopLine Value="127"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit166> <Unit167> <Filename Value="../../../lazarus/lcl/actnlist.pas"/> <UnitName Value="ActnList"/> <CursorPos X="14" Y="203"/> <TopLine Value="193"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit167> <Unit168> <Filename Value="../../../lazarus/lcl/include/customaction.inc"/> <CursorPos X="3" Y="247"/> <TopLine Value="245"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit168> <Unit169> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/classes/lists.inc"/> <CursorPos X="3" Y="626"/> <TopLine Value="624"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit169> <Unit170> <Filename Value="../../../lazarus/lcl/include/tabsheet.inc"/> <CursorPos X="11" Y="46"/> <TopLine Value="20"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit170> <Unit171> <Filename Value="../../../lazarus/lcl/include/custompage.inc"/> <CursorPos X="34" Y="177"/> <TopLine Value="174"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit171> <Unit172> <Filename Value="../../../fpc/rtl/inc/threadh.inc"/> <CursorPos X="11" Y="135"/> <TopLine Value="139"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit172> <Unit173> <Filename Value="../../../fpc/rtl/inc/thread.inc"/> <CursorPos X="28" Y="155"/> <TopLine Value="152"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit173> <Unit174> <Filename Value="../../../lazarus/lcl/widgetset/wsextctrls.pp"/> <UnitName Value="WSExtCtrls"/> <CursorPos X="50" Y="292"/> <TopLine Value="292"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit174> <Unit175> <Filename Value="../../../lazarus/lcl/interfaces/cocoa/cocoawsextctrls.pas"/> <UnitName Value="CocoaWSExtCtrls"/> <CursorPos X="22" Y="72"/> <TopLine Value="59"/> - <UsageCount Value="7"/> + <UsageCount Value="6"/> </Unit175> <Unit176> <Filename Value="../../../lazarus/lcl/interfaces/gtk/gtkwsextctrls.pp"/> <UnitName Value="GtkWSExtCtrls"/> <CursorPos X="67" Y="557"/> <TopLine Value="569"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit176> <Unit177> <Filename Value="../../../fpc/rtl/inc/objpash.inc"/> <CursorPos X="21" Y="184"/> <TopLine Value="172"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit177> <Unit178> <Filename Value="../../../fpc/rtl/objpas/sysutils/osutilsh.inc"/> <CursorPos X="11" Y="25"/> <TopLine Value="13"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit178> <Unit179> <Filename Value="../../../fpc/rtl/unix/sysutils.pp"/> <UnitName Value="sysutils"/> <CursorPos X="3" Y="1075"/> <TopLine Value="1069"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit179> <Unit180> <Filename Value="../../../fpc/rtl/unix/bunxh.inc"/> <CursorPos X="13" Y="81"/> <TopLine Value="78"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit180> <Unit181> <Filename Value="../../../fpc/rtl/objpas/sysutils/datih.inc"/> <CursorPos X="11" Y="179"/> <TopLine Value="158"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit181> <Unit182> <Filename Value="../../../fpc/rtl/objpas/sysutils/dati.inc"/> <CursorPos X="12" Y="258"/> <TopLine Value="254"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit182> <Unit183> <Filename Value="../../../lazarus/lcl/interfaces/wince/wincewsextctrls.pp"/> <UnitName Value="WinCEWSExtCtrls"/> <CursorPos X="56" Y="576"/> <TopLine Value="560"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit183> <Unit184> <Filename Value="../../../fpc/rtl/objpas/classes/classesh.inc"/> <CursorPos X="21" Y="1436"/> <TopLine Value="1424"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit184> <Unit185> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/ocr.inc"/> <CursorPos X="55" Y="4"/> <TopLine Value="1"/> - <UsageCount Value="41"/> + <UsageCount Value="40"/> </Unit185> <Unit186> <Filename Value="../../../Documents/lazarus/lcl/interfaces/gtk/gtkwidgetset.inc"/> <CursorPos X="1" Y="1291"/> <TopLine Value="1276"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit186> <Unit187> <Filename Value="../../../lazarus/ide/lazarusidestrconsts.pas"/> <UnitName Value="LazarusIDEStrConsts"/> <CursorPos X="3" Y="1407"/> <TopLine Value="1396"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit187> <Unit188> <Filename Value="../../../lazarus/ide/mainbar.pas"/> <UnitName Value="MainBar"/> <CursorPos X="12" Y="166"/> <TopLine Value="155"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit188> <Unit189> <Filename Value="../../../lazarus/ide/mainbase.pas"/> <UnitName Value="MainBase"/> <CursorPos X="8" Y="892"/> <TopLine Value="881"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit189> <Unit190> <Filename Value="../../../lazarus/components/synedit/syneditmarkuphighall.pp"/> <UnitName Value="SynEditMarkupHighAll"/> <CursorPos X="78" Y="717"/> <TopLine Value="706"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit190> <Unit191> <Filename Value="../../../lazarus/components/synedit/syneditmarkup.pp"/> <UnitName Value="SynEditMarkup"/> <CursorPos X="1" Y="1"/> <TopLine Value="145"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit191> <Unit192> <Filename Value="../../../lazarus/components/synedit/syneditmiscclasses.pp"/> <UnitName Value="SynEditMiscClasses"/> <CursorPos X="18" Y="198"/> <TopLine Value="170"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit192> <Unit193> <Filename Value="../../Units/Linux/xtest.pas"/> <UnitName Value="XTest"/> <CursorPos X="72" Y="28"/> <TopLine Value="14"/> - <UsageCount Value="12"/> + <UsageCount Value="11"/> </Unit193> <Unit194> <Filename Value="../../../Documents/fpc/packages/x11/src/x.pp"/> <UnitName Value="x"/> <CursorPos X="4" Y="125"/> <TopLine Value="111"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit194> <Unit195> <Filename Value="../../../Documents/fpc/rtl/unix/aliasctp.inc"/> <CursorPos X="33" Y="45"/> <TopLine Value="31"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit195> <Unit196> <Filename Value="../../../Documents/fpc/rtl/inc/ctypes.pp"/> <UnitName Value="ctypes"/> <CursorPos X="32" Y="63"/> <TopLine Value="49"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit196> <Unit197> <Filename Value="../../Units/MMLAddon/colourpickersort.pas"/> <UnitName Value="colourpickersort"/> <CursorPos X="11" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="34"/> + <UsageCount Value="33"/> </Unit197> <Unit198> <Filename Value="colourhistory.pas"/> @@ -1433,10 +1431,10 @@ <ComponentName Value="ColourHistoryForm"/> <ResourceBaseClass Value="Form"/> <UnitName Value="colourhistory"/> - <CursorPos X="39" Y="310"/> - <TopLine Value="290"/> - <EditorIndex Value="3"/> - <UsageCount Value="180"/> + <CursorPos X="71" Y="503"/> + <TopLine Value="486"/> + <EditorIndex Value="5"/> + <UsageCount Value="200"/> <Loaded Value="True"/> </Unit198> <Unit199> @@ -1444,37 +1442,37 @@ <UnitName Value="ComCtrls"/> <CursorPos X="36" Y="2004"/> <TopLine Value="1989"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit199> <Unit200> <Filename Value="../../../Documents/fpc/rtl/objpas/classes/classesh.inc"/> <CursorPos X="14" Y="276"/> <TopLine Value="262"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit200> <Unit201> <Filename Value="../../../Documents/lazarus/lcl/include/customform.inc"/> <CursorPos X="1" Y="137"/> <TopLine Value="123"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit201> <Unit202> <Filename Value="../../../Documents/lazarus/lcl/include/listitems.inc"/> <CursorPos X="60" Y="10"/> <TopLine Value="1"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit202> <Unit203> <Filename Value="../../../Documents/lazarus/lcl/include/listitem.inc"/> <CursorPos X="1" Y="324"/> <TopLine Value="310"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit203> <Unit204> <Filename Value="colourhistory.lfm"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> <SyntaxHighlighter Value="LFM"/> </Unit204> <Unit205> @@ -1482,202 +1480,202 @@ <UnitName Value="SynEdit"/> <CursorPos X="41" Y="921"/> <TopLine Value="909"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit205> <Unit206> <Filename Value="../../../usr/local/share/lazarus/components/synedit/synedittypes.pp"/> <UnitName Value="SynEditTypes"/> <CursorPos X="3" Y="77"/> <TopLine Value="64"/> - <UsageCount Value="2"/> + <UsageCount Value="1"/> </Unit206> <Unit207> <Filename Value="../../../usr/local/share/lazarus/components/synedit/syneditmiscclasses.pp"/> <UnitName Value="SynEditMiscClasses"/> <CursorPos X="44" Y="323"/> <TopLine Value="311"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit207> <Unit208> <Filename Value="../../../usr/local/share/lazarus/lcl/dialogs.pp"/> <UnitName Value="Dialogs"/> <CursorPos X="14" Y="421"/> <TopLine Value="409"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit208> <Unit209> <Filename Value="../../../usr/local/share/lazarus/lcl/lclintf.pas"/> <UnitName Value="LCLIntf"/> <CursorPos X="10" Y="82"/> <TopLine Value="70"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit209> <Unit210> <Filename Value="../../../usr/local/share/lazarus/components/synedit/synedittexttrimmer.pas"/> <UnitName Value="SynEditTextTrimmer"/> <CursorPos X="54" Y="35"/> <TopLine Value="24"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit210> <Unit211> <Filename Value="../../../lazarus/ide/compileroptions.pp"/> <UnitName Value="CompilerOptions"/> <CursorPos X="20" Y="2186"/> <TopLine Value="2175"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit211> <Unit212> <Filename Value="../../../lazarus/components/mouseandkeyinput/xkeyinput.pas"/> <UnitName Value="XKeyInput"/> <CursorPos X="17" Y="169"/> <TopLine Value="166"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit212> <Unit213> <Filename Value="../../../Documents/lazarus/components/mouseandkeyinput/mouseandkeyinput.pas"/> <UnitName Value="MouseAndKeyInput"/> <CursorPos X="18" Y="41"/> <TopLine Value="26"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit213> <Unit214> <Filename Value="../../../Documents/lazarus/components/mouseandkeyinput/keyinputintf.pas"/> <UnitName Value="KeyInputIntf"/> <CursorPos X="5" Y="34"/> <TopLine Value="24"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit214> <Unit215> <Filename Value="../../Units/MMLCore/mmlkeyinput.pas"/> <UnitName Value="MMLKeyInput"/> <CursorPos X="62" Y="31"/> <TopLine Value="40"/> - <UsageCount Value="14"/> + <UsageCount Value="13"/> </Unit215> <Unit216> <Filename Value="../../../Documents/lazarus/components/mouseandkeyinput/xkeyinput.pas"/> <UnitName Value="XKeyInput"/> <CursorPos X="5" Y="36"/> <TopLine Value="29"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit216> <Unit217> <Filename Value="../../../laz/lazarus/components/mouseandkeyinput/keyinputintf.pas"/> <UnitName Value="KeyInputIntf"/> <CursorPos X="24" Y="12"/> <TopLine Value="10"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit217> <Unit218> <Filename Value="../../../laz/lazarus/components/mouseandkeyinput/mouseandkeyinput.pas"/> <UnitName Value="MouseAndKeyInput"/> <CursorPos X="12" Y="26"/> <TopLine Value="16"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit218> <Unit219> <Filename Value="../../../laz/lazarus/components/mouseandkeyinput/winmouseinput.pas"/> <UnitName Value="WinMouseInput"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit219> <Unit220> <Filename Value="../../../laz/lazarus/components/mouseandkeyinput/winkeyinput.pas"/> <UnitName Value="WinKeyInput"/> <CursorPos X="15" Y="32"/> <TopLine Value="24"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit220> <Unit221> <Filename Value="../../../Documents/lazarus/lcl/lcltype.pp"/> <UnitName Value="LCLType"/> <CursorPos X="67" Y="522"/> <TopLine Value="507"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit221> <Unit222> <Filename Value="../../../Documents/fpc/rtl/inc/objpash.inc"/> <CursorPos X="11" Y="326"/> <TopLine Value="311"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit222> <Unit223> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/keyboard.inc"/> <CursorPos X="13" Y="46"/> <TopLine Value="26"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit223> <Unit224> <Filename Value="../../../Documents/fpc/packages/x11/src/xlib.pp"/> <UnitName Value="xlib"/> <CursorPos X="10" Y="1535"/> <TopLine Value="1520"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit224> <Unit225> <Filename Value="../../../Documents/lazarus/lcl/include/winapih.inc"/> <CursorPos X="1" Y="312"/> <TopLine Value="100"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit225> <Unit226> <Filename Value="../../../Documents/lazarus/lcl/interfaces/gtk2/gtk2winapi.inc"/> <CursorPos X="34" Y="10"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit226> <Unit227> <Filename Value="../../../Documents/lazarus/lcl/interfaces/gtk/gtkwinapi.inc"/> <CursorPos X="32" Y="5220"/> <TopLine Value="5199"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit227> <Unit228> <Filename Value="../../../Documents/lazarus/lcl/interfaces/gtk/gtkint.pp"/> <UnitName Value="GtkInt"/> <CursorPos X="26" Y="87"/> <TopLine Value="82"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit228> <Unit229> <Filename Value="../../../Documents/fpc/rtl/unix/ctypes.inc"/> <CursorPos X="3" Y="59"/> <TopLine Value="40"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit229> <Unit230> <Filename Value="../../../Documents/fpc/packages/x11/src/keysym.pp"/> <UnitName Value="keysym"/> <CursorPos X="3" Y="501"/> <TopLine Value="486"/> - <UsageCount Value="1"/> + <UsageCount Value="0"/> </Unit230> <Unit231> <Filename Value="../../../Documents/lazarus/lcl/interfaces/gtk/gtkproc.inc"/> <CursorPos X="14" Y="3074"/> <TopLine Value="3064"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit231> <Unit232> <Filename Value="../../Units/Linux/xdo_util.inc"/> <CursorPos X="24" Y="12"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit232> <Unit233> <Filename Value="../../Units/Linux/xkeyboard.pas"/> <UnitName Value="xkeyboard"/> <CursorPos X="26" Y="9"/> <TopLine Value="9"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit233> <Unit234> <Filename Value="../../../FPC/FPCCheckout/rtl/win/mouse.pp"/> <UnitName Value="Mouse"/> <CursorPos X="40" Y="45"/> <TopLine Value="33"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit234> <Unit235> <Filename Value="about.pas"/> @@ -1687,21 +1685,23 @@ <UnitName Value="about"/> <CursorPos X="44" Y="21"/> <TopLine Value="4"/> - <UsageCount Value="143"/> + <UsageCount Value="164"/> </Unit235> <Unit236> <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/file.inc"/> <CursorPos X="13" Y="21"/> <TopLine Value="1"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit236> <Unit237> <Filename Value="../../Units/MMLAddon/internets.pas"/> <IsPartOfProject Value="True"/> <UnitName Value="internets"/> - <CursorPos X="87" Y="3"/> + <CursorPos X="5" Y="14"/> <TopLine Value="1"/> - <UsageCount Value="137"/> + <EditorIndex Value="8"/> + <UsageCount Value="158"/> + <Loaded Value="True"/> </Unit237> <Unit238> <Filename Value="debugimageform.pas"/> @@ -1710,7 +1710,7 @@ <UnitName Value="debugimageform"/> <CursorPos X="20" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="124"/> + <UsageCount Value="145"/> </Unit238> <Unit239> <Filename Value="debugimage.pas"/> @@ -1718,69 +1718,67 @@ <ComponentName Value="DebugImgForm"/> <ResourceBaseClass Value="Form"/> <UnitName Value="debugimage"/> - <CursorPos X="59" Y="23"/> - <TopLine Value="88"/> - <EditorIndex Value="4"/> - <UsageCount Value="123"/> - <Loaded Value="True"/> + <CursorPos X="66" Y="17"/> + <TopLine Value="1"/> + <UsageCount Value="144"/> </Unit239> <Unit240> <Filename Value="debugimage.lrs"/> <CursorPos X="1" Y="3"/> <TopLine Value="1"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit240> <Unit241> <Filename Value="../../../lazarus/lcl/include/canvas.inc"/> <CursorPos X="19" Y="141"/> <TopLine Value="135"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit241> <Unit242> <Filename Value="../../../lazarus/lcl/interfacebase.pp"/> <UnitName Value="InterfaceBase"/> <CursorPos X="3" Y="172"/> <TopLine Value="162"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit242> <Unit243> <Filename Value="../../../Documents/fpc/rtl/inc/systemh.inc"/> <CursorPos X="35" Y="574"/> <TopLine Value="558"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit243> <Unit244> <Filename Value="../../../Documents/fpc/rtl/linux/linux.pp"/> <UnitName Value="Linux"/> <CursorPos X="65" Y="26"/> <TopLine Value="1"/> - <UsageCount Value="4"/> + <UsageCount Value="3"/> </Unit244> <Unit245> <Filename Value="../../../Documents/fpc/packages/libc/src/libc.pp"/> <UnitName Value="libc"/> <CursorPos X="10" Y="66"/> <TopLine Value="46"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit245> <Unit246> <Filename Value="../../../Documents/fpc/packages/libc/src/unistdh.inc"/> <CursorPos X="115" Y="195"/> <TopLine Value="162"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit246> <Unit247> <Filename Value="../../../usr/lib/lazarus/components/mouseandkeyinput/keyinputintf.pas"/> <UnitName Value="KeyInputIntf"/> <CursorPos X="16" Y="50"/> <TopLine Value="47"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit247> <Unit248> <Filename Value="project1.lpi"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> <SyntaxHighlighter Value="XML"/> </Unit248> <Unit249> @@ -1788,53 +1786,53 @@ <UnitName Value="ocrutil"/> <CursorPos X="78" Y="32"/> <TopLine Value="1"/> - <UsageCount Value="41"/> + <UsageCount Value="40"/> </Unit249> <Unit250> <Filename Value="../../../Documents/fpc/rtl/objpas/sysutils/filutilh.inc"/> <CursorPos X="25" Y="87"/> <TopLine Value="62"/> - <UsageCount Value="3"/> + <UsageCount Value="2"/> </Unit250> <Unit251> <Filename Value="../../../Documents/lazarus/lcl/intfgraphics.pas"/> <UnitName Value="IntfGraphics"/> <CursorPos X="37" Y="3116"/> <TopLine Value="3105"/> - <UsageCount Value="17"/> + <UsageCount Value="16"/> </Unit251> <Unit252> <Filename Value="../../../Documents/lazarus/lcl/include/treeview.inc"/> <CursorPos X="44" Y="276"/> <TopLine Value="1"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit252> <Unit253> <Filename Value="../../../Documents/lazarus/lcl/imglist.pp"/> <UnitName Value="ImgList"/> <CursorPos X="15" Y="170"/> <TopLine Value="138"/> - <UsageCount Value="6"/> + <UsageCount Value="5"/> </Unit253> <Unit254> <Filename Value="../../../Documents/lazarus/lcl/include/graphic.inc"/> <CursorPos X="1" Y="177"/> <TopLine Value="157"/> - <UsageCount Value="5"/> + <UsageCount Value="4"/> </Unit254> <Unit255> <Filename Value="../../../usr/local/share/lazarus/lcl/controls.pp"/> <UnitName Value="Controls"/> <CursorPos X="5" Y="288"/> <TopLine Value="276"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit255> <Unit256> <Filename Value="../../../usr/local/share/lazarus/lcl/forms.pp"/> <UnitName Value="Forms"/> <CursorPos X="22" Y="671"/> <TopLine Value="657"/> - <UsageCount Value="8"/> + <UsageCount Value="7"/> </Unit256> <Unit257> <Filename Value="framefunctionlist.pas"/> @@ -1844,54 +1842,54 @@ <UnitName Value="framefunctionlist"/> <CursorPos X="56" Y="9"/> <TopLine Value="54"/> - <UsageCount Value="44"/> + <UsageCount Value="65"/> </Unit257> <Unit258> <Filename Value="../../../usr/local/share/lazarus/lcl/comctrls.pp"/> <UnitName Value="ComCtrls"/> <CursorPos X="3" Y="2630"/> <TopLine Value="2626"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit258> <Unit259> <Filename Value="../../../usr/local/share/lazarus/lcl/graphics.pp"/> <UnitName Value="Graphics"/> <CursorPos X="3" Y="258"/> <TopLine Value="246"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit259> <Unit260> <Filename Value="../../../FPC/FPCSVN/rtl/inc/varianth.inc"/> <CursorPos X="10" Y="503"/> <TopLine Value="1"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit260> <Unit261> <Filename Value="../../Units/MMLCore/fontloader.pas"/> <UnitName Value="fontloader"/> <CursorPos X="19" Y="200"/> <TopLine Value="183"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit261> <Unit262> <Filename Value="../../Units/MMLCore/mufasatypesutil.pas"/> <UnitName Value="mufasatypesutil"/> <CursorPos X="69" Y="43"/> <TopLine Value="23"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit262> <Unit263> <Filename Value="../../Units/MMLCore/ocrold.pas"/> <UnitName Value="ocr"/> <CursorPos X="1" Y="1"/> <TopLine Value="441"/> - <UsageCount Value="9"/> + <UsageCount Value="8"/> </Unit263> <Unit264> <Filename Value="../../../lazarus/lcl/include/treeview.inc"/> <CursorPos X="3" Y="2056"/> <TopLine Value="2054"/> - <UsageCount Value="16"/> + <UsageCount Value="15"/> </Unit264> <Unit265> <Filename Value="simpleanalyzer.pas"/> @@ -1899,97 +1897,216 @@ <UnitName Value="simpleanalyzer"/> <CursorPos X="52" Y="104"/> <TopLine Value="193"/> - <EditorIndex Value="9"/> - <UsageCount Value="31"/> - <Loaded Value="True"/> + <UsageCount Value="52"/> </Unit265> <Unit266> <Filename Value="../../Units/Misc/mPasLex.pas"/> <UnitName Value="mPasLex"/> <CursorPos X="1" Y="1"/> <TopLine Value="1"/> - <EditorIndex Value="10"/> - <UsageCount Value="15"/> - <Loaded Value="True"/> + <UsageCount Value="22"/> </Unit266> <Unit267> <Filename Value="../../../lazarus/components/synedit/synedittypes.pp"/> <UnitName Value="SynEditTypes"/> <CursorPos X="3" Y="69"/> <TopLine Value="32"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit267> <Unit268> <Filename Value="../../../FPC/FPCCheckout/rtl/objpas/classes/classes.inc"/> <CursorPos X="3" Y="289"/> <TopLine Value="286"/> - <UsageCount Value="10"/> + <UsageCount Value="9"/> </Unit268> <Unit269> <Filename Value="../../../lazarus/lcl/stdctrls.pp"/> <UnitName Value="StdCtrls"/> <CursorPos X="14" Y="866"/> <TopLine Value="859"/> - <UsageCount Value="11"/> + <UsageCount Value="10"/> </Unit269> + <Unit270> + <Filename Value="../../../../Documents/fpc/packages/x11/src/xlib.pp"/> + <UnitName Value="xlib"/> + <CursorPos X="4" Y="225"/> + <TopLine Value="207"/> + <UsageCount Value="9"/> + </Unit270> + <Unit271> + <Filename Value="../../../../Documents/fpc/packages/fcl-net/src/httpclient.pp"/> + <UnitName Value="HTTPClient"/> + <CursorPos X="1" Y="1"/> + <TopLine Value="1"/> + <UsageCount Value="9"/> + </Unit271> + <Unit272> + <Filename Value="../../../../Documents/fpc/packages/fcl-net/src/httpbase.pp"/> + <UnitName Value="HTTPBase"/> + <CursorPos X="66" Y="16"/> + <TopLine Value="1"/> + <UsageCount Value="9"/> + </Unit272> + <Unit273> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <UnitName Value="httpsend"/> + <CursorPos X="59" Y="19"/> + <TopLine Value="1"/> + <EditorIndex Value="11"/> + <UsageCount Value="13"/> + <Loaded Value="True"/> + </Unit273> + <Unit274> + <Filename Value="../../Units/MMLAddon/PSInc/Wrappers/internets.inc"/> + <CursorPos X="39" Y="4"/> + <TopLine Value="1"/> + <EditorIndex Value="10"/> + <UsageCount Value="13"/> + <Loaded Value="True"/> + </Unit274> + <Unit275> + <Filename Value="../../Units/MMLAddon/PSInc/psexportedmethods.inc"/> + <CursorPos X="87" Y="133"/> + <TopLine Value="111"/> + <EditorIndex Value="7"/> + <UsageCount Value="13"/> + <Loaded Value="True"/> + </Unit275> + <Unit276> + <Filename Value="../../Units/Synapse/synautil.pas"/> + <UnitName Value="synautil"/> + <CursorPos X="47" Y="1037"/> + <TopLine Value="1025"/> + <UsageCount Value="10"/> + </Unit276> + <Unit277> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <IsPartOfProject Value="True"/> + <UnitName Value="updater"/> + <CursorPos X="24" Y="72"/> + <TopLine Value="52"/> + <EditorIndex Value="9"/> + <UsageCount Value="25"/> + <Loaded Value="True"/> + </Unit277> </Units> - <JumpHistory Count="14" HistoryIndex="13"> + <JumpHistory Count="29" HistoryIndex="28"> <Position1> - <Filename Value="testunit.pas"/> - <Caret Line="969" Column="37" TopLine="960"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="409" Column="17" TopLine="388"/> </Position1> <Position2> - <Filename Value="testunit.pas"/> - <Caret Line="984" Column="39" TopLine="973"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="92" Column="63" TopLine="74"/> </Position2> <Position3> - <Filename Value="framescript.pas"/> - <Caret Line="19" Column="46" TopLine="17"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="190" Column="10" TopLine="172"/> </Position3> <Position4> - <Filename Value="framescript.pas"/> - <Caret Line="33" Column="20" TopLine="17"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="388" Column="17" TopLine="370"/> </Position4> <Position5> - <Filename Value="framescript.pas"/> - <Caret Line="175" Column="16" TopLine="137"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="390" Column="18" TopLine="370"/> </Position5> <Position6> - <Filename Value="testunit.pas"/> - <Caret Line="62" Column="15" TopLine="34"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="408" Column="21" TopLine="390"/> </Position6> <Position7> - <Filename Value="testunit.pas"/> - <Caret Line="100" Column="21" TopLine="72"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="100" Column="25" TopLine="67"/> </Position7> <Position8> - <Filename Value="testunit.pas"/> - <Caret Line="151" Column="17" TopLine="123"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="161" Column="73" TopLine="154"/> </Position8> <Position9> - <Filename Value="testunit.pas"/> - <Caret Line="193" Column="25" TopLine="165"/> + <Filename Value="../../Units/MMLAddon/internets.pas"/> + <Caret Line="8" Column="25" TopLine="1"/> </Position9> <Position10> - <Filename Value="testunit.pas"/> - <Caret Line="969" Column="42" TopLine="960"/> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="99" Column="97" TopLine="89"/> </Position10> <Position11> - <Filename Value="testunit.pas"/> - <Caret Line="984" Column="1" TopLine="959"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="229" Column="28" TopLine="199"/> </Position11> <Position12> - <Filename Value="testunit.pas"/> - <Caret Line="983" Column="87" TopLine="955"/> + <Filename Value="../../Units/MMLAddon/mmlpsthread.pas"/> + <Caret Line="477" Column="24" TopLine="444"/> </Position12> <Position13> - <Filename Value="testunit.pas"/> - <Caret Line="984" Column="28" TopLine="955"/> + <Filename Value="../../Units/MMLAddon/internets.pas"/> + <Caret Line="4" Column="69" TopLine="1"/> </Position13> <Position14> - <Filename Value="testunit.pas"/> - <Caret Line="988" Column="72" TopLine="956"/> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="33" Column="3" TopLine="1"/> </Position14> + <Position15> + <Filename Value="../../Units/MMLAddon/internets.pas"/> + <Caret Line="14" Column="8" TopLine="1"/> + </Position15> + <Position16> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="145" Column="45" TopLine="122"/> + </Position16> + <Position17> + <Filename Value="../../Units/MMLAddon/internets.pas"/> + <Caret Line="14" Column="5" TopLine="1"/> + </Position17> + <Position18> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="22" Column="93" TopLine="1"/> + </Position18> + <Position19> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="21" Column="34" TopLine="3"/> + </Position19> + <Position20> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="17" Column="33" TopLine="2"/> + </Position20> + <Position21> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="755" Column="26" TopLine="732"/> + </Position21> + <Position22> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="125" Column="24" TopLine="107"/> + </Position22> + <Position23> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="175" Column="33" TopLine="157"/> + </Position23> + <Position24> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="182" Column="16" TopLine="157"/> + </Position24> + <Position25> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="186" Column="16" TopLine="157"/> + </Position25> + <Position26> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="193" Column="40" TopLine="175"/> + </Position26> + <Position27> + <Filename Value="../../Units/Synapse/httpsend.pas"/> + <Caret Line="197" Column="40" TopLine="175"/> + </Position27> + <Position28> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="11" Column="38" TopLine="1"/> + </Position28> + <Position29> + <Filename Value="../../Units/MMLAddon/updater.pas"/> + <Caret Line="46" Column="5" TopLine="23"/> + </Position29> </JumpHistory> </ProjectOptions> <CompilerOptions> @@ -1999,7 +2116,7 @@ </Target> <SearchPaths> <IncludeFiles Value="$(ProjOutDir)/;$(ProjPath)../../Units/MMLAddon/PSInc/"/> - <OtherUnitFiles Value="$(ProjPath)../../Units/MMLCore/;$(ProjPath)../../Units/MMLAddon/;$(ProjPath)../../Units/PascalScript/;$(ProjPath)../../Units/Misc/;$(ProjPath)../../Units/MMLAddon/PSInc/;$(ProjPath)../../Units/Linux/;$(LazarusDir)/components/mouseandkeyinput/"/> + <OtherUnitFiles Value="$(ProjPath)../../Units/MMLCore/;$(ProjPath)../../Units/MMLAddon/;$(ProjPath)../../Units/PascalScript/;$(ProjPath)../../Units/Misc/;$(ProjPath)../../Units/MMLAddon/PSInc/;$(ProjPath)../../Units/Linux/;$(ProjPath)../../Units/Synapse/;$(LazarusDir)/components/mouseandkeyinput/"/> </SearchPaths> <CodeGeneration> <Optimizations> diff --git a/Projects/SAMufasaGUI/project1.lpr b/Projects/SAMufasaGUI/project1.lpr index 0cb7377..5cb36ee 100644 --- a/Projects/SAMufasaGUI/project1.lpr +++ b/Projects/SAMufasaGUI/project1.lpr @@ -31,7 +31,7 @@ uses {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, LResources, testunit, colourhistory, About, internets, debugimage, - framefunctionlist, simpleanalyzer; + framefunctionlist, simpleanalyzer, updater; {$IFDEF WINDOWS}{$R project1.rc}{$ENDIF} diff --git a/Projects/SAMufasaGUI/testunit.lfm b/Projects/SAMufasaGUI/testunit.lfm index 02d8c5d..6c6dd77 100644 --- a/Projects/SAMufasaGUI/testunit.lfm +++ b/Projects/SAMufasaGUI/testunit.lfm @@ -1,11 +1,11 @@ object Form1: TForm1 - Left = 273 + Left = 395 Height = 557 - Top = 233 + Top = 267 Width = 734 ActiveControl = ScriptPanel Caption = 'THA FUKING MUFASA' - ClientHeight = 537 + ClientHeight = 532 ClientWidth = 734 KeyPreview = True Menu = MainMenu1 @@ -166,8 +166,8 @@ object Form1: TForm1 end object StatusBar: TStatusBar Left = 0 - Height = 23 - Top = 514 + Height = 21 + Top = 511 Width = 734 Panels = < item @@ -185,7 +185,7 @@ object Form1: TForm1 object PanelMemo: TPanel Left = 0 Height = 154 - Top = 360 + Top = 357 Width = 734 Align = alBottom ClientHeight = 154 @@ -205,19 +205,19 @@ object Form1: TForm1 Cursor = crVSplit Left = 0 Height = 5 - Top = 355 + Top = 352 Width = 734 Align = alBottom ResizeAnchor = akBottom end object ScriptPanel: TPanel Left = 0 - Height = 331 + Height = 328 Top = 24 Width = 734 Align = alClient BevelOuter = bvNone - ClientHeight = 331 + ClientHeight = 328 ClientWidth = 734 DockSite = True TabOrder = 4 @@ -225,7 +225,7 @@ object Form1: TForm1 OnDockOver = ScriptPanelDockOver object PageControl1: TPageControl Left = 150 - Height = 296 + Height = 293 Top = 0 Width = 584 Align = alClient @@ -244,7 +244,7 @@ object Form1: TForm1 object SearchPanel: TPanel Left = 0 Height = 35 - Top = 296 + Top = 293 Width = 734 Align = alBottom BevelOuter = bvSpace @@ -340,7 +340,7 @@ object Form1: TForm1 end object LabeledEditSearch: TLabeledEdit Left = 104 - Height = 21 + Height = 27 Top = 6 Width = 174 EditLabel.AnchorSideLeft.Control = LabeledEditSearch @@ -348,10 +348,10 @@ object Form1: TForm1 EditLabel.AnchorSideTop.Side = asrCenter EditLabel.AnchorSideRight.Control = LabeledEditSearch EditLabel.AnchorSideBottom.Control = LabeledEditSearch - EditLabel.Left = 73 - EditLabel.Height = 14 - EditLabel.Top = 9 - EditLabel.Width = 28 + EditLabel.Left = 67 + EditLabel.Height = 18 + EditLabel.Top = 10 + EditLabel.Width = 34 EditLabel.Caption = 'Find: ' EditLabel.ParentColor = False LabelPosition = lpLeft @@ -364,9 +364,9 @@ object Form1: TForm1 end object CheckBoxMatchCase: TCheckBox Left = 320 - Height = 17 + Height = 22 Top = 7 - Width = 72 + Width = 97 Caption = 'Match case' OnClick = CheckBoxMatchCaseClick TabOrder = 1 @@ -374,29 +374,31 @@ object Form1: TForm1 end object Splitter1: TSplitter Left = 145 - Height = 296 + Height = 293 Top = 0 Width = 5 OnCanResize = Splitter1CanResize Visible = False end inline frmFunctionList: TFunctionListFrame - Height = 296 + Height = 293 Width = 145 - ClientHeight = 296 + ClientHeight = 293 ClientWidth = 145 TabOrder = 3 Visible = False inherited FunctionList: TTreeView - Height = 275 + Height = 266 Width = 145 + DefaultItemHeight = 19 OnChange = FunctionListChange OnDeletion = nil OnEnter = FunctionListEnter OnExit = FunctionListExit end inherited editSearchList: TEdit - Top = 275 + Height = 27 + Top = 266 Width = 145 OnExit = editSearchListExit OnKeyPress = editSearchListKeyPress diff --git a/Projects/SAMufasaGUI/testunit.lrs b/Projects/SAMufasaGUI/testunit.lrs index 55a07ce..410c9be 100644 --- a/Projects/SAMufasaGUI/testunit.lrs +++ b/Projects/SAMufasaGUI/testunit.lrs @@ -1,2918 +1,2918 @@ -{ This is an automatically generated lazarus resource file } - -LazarusResources.Add('TForm1','FORMDATA',[ - 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#17#1#6'Height'#3'-'#2#3'Top'#3#233#0#5'Wi' - +'dth'#3#222#2#13'ActiveControl'#7#11'ScriptPanel'#7'Caption'#6#17'THA FUKING' - +' MUFASA'#12'ClientHeight'#3#25#2#11'ClientWidth'#3#222#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' - +'r'#8'ToolBar1'#4'Left'#2#0#6'Height'#2#24#3'Top'#2#0#5'Width'#3#222#2#7'Cap' - +'tion'#6#8'ToolBar1'#6'Images'#7#17'Mufasa_Image_List'#14'ParentShowHint'#8#8 - +'ShowHint'#9#8'TabOrder'#2#0#0#11'TToolButton'#6'TB_Run'#4'Left'#2'`'#4'Hint' - +#6#3'Run'#3'Top'#2#2#6'Action'#7#15'ActionRunScript'#10'ImageIndex'#2#6#0#0 - +#11'TToolButton'#8'TB_Pause'#4'Left'#2'w'#4'Hint'#6#5'Pause'#3'Top'#2#2#6'Ac' - +'tion'#7#17'ActionPauseScript'#7'Enabled'#8#10'ImageIndex'#2#5#0#0#11'TToolB' - +'utton'#7'TB_Stop'#4'Left'#3#142#0#4'Hint'#6#4'Stop'#3'Top'#2#2#6'Action'#7 - +#16'ActionStopScript'#7'Enabled'#8#10'ImageIndex'#2#7#0#0#11'TToolButton'#11 - +'ToolButton1'#4'Left'#3#165#0#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolBu' - +'tton1'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButton'#9'TB_NewTab'#4'Left'#3 - +#168#0#4'Hint'#6#7'Add tab'#3'Top'#2#2#6'Action'#7#12'ActionNewTab'#0#0#11'T' - +'ToolButton'#11'TB_CloseTab'#4'Left'#3#191#0#4'Hint'#6#9'Close tab'#3'Top'#2 - +#2#6'Action'#7#14'ActionCloseTab'#0#0#11'TToolButton'#11'ToolButton4'#4'Left' - +#3#214#0#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolButton4'#5'Style'#7#10 - +'tbsDivider'#0#0#11'TToolButton'#13'TB_ClearDebug'#4'Left'#3#217#0#4'Hint'#6 - +#15'Clear debug box'#3'Top'#2#2#6'Action'#7#16'ActionClearDebug'#0#0#11'TToo' - +'lButton'#13'TB_PickColour'#4'Left'#3#240#0#4'Hint'#6#12'Pick a color'#3'Top' - +#2#2#7'Caption'#6#13'TB_PickColour'#10'ImageIndex'#2#0#7'OnClick'#7#15'Butto' - +'nPickClick'#0#0#11'TToolButton'#15'TB_SelectClient'#4'Left'#3#7#1#4'Hint'#6 - +#15'Select a client'#3'Top'#2#2#7'Caption'#6#15'TB_SelectClient'#10'ImageInd' - +'ex'#2#2#11'OnMouseDown'#7#18'ButtonSelectorDown'#0#0#11'TToolButton'#11'Too' - +'lButton8'#4'Left'#3#30#1#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolButton' - +'8'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButton'#10'TB_Convert'#4'Left'#3'!' - +#1#3'Top'#2#2#7'Caption'#6#10'TB_Convert'#7'Enabled'#8#10'ImageIndex'#2#1#0#0 - +#11'TToolButton'#16'TB_ReloadPlugins'#4'Left'#3'8'#1#4'Hint'#6#14'Reload plu' - +'gins'#3'Top'#2#2#7'Caption'#6#16'TB_ReloadPlugins'#7'Enabled'#8#10'ImageInd' - +'ex'#2#13#0#0#11'TToolButton'#7'TB_Tray'#4'Left'#3'O'#1#4'Hint'#6#16'Minimiz' - +'e to tray'#3'Top'#2#2#7'Caption'#6#7'TB_Tray'#10'ImageIndex'#2#17#7'OnClick' - +#7#15'ButtonTrayClick'#0#0#11'TToolButton'#6'TB_New'#4'Left'#2#1#4'Hint'#6#3 - +'New'#3'Top'#2#2#6'Action'#7#15'ActionNewScript'#14'ParentShowHint'#8#8'Show' - +'Hint'#9#0#0#11'TToolButton'#11'ToolButton2'#4'Left'#2']'#3'Top'#2#2#5'Width' - +#2#3#7'Caption'#6#11'ToolButton2'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButt' - +'on'#7'TB_Open'#4'Left'#2#24#4'Hint'#6#4'Open'#3'Top'#2#2#6'Action'#7#16'Act' - +'ionOpenScript'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#7'TB_' - +'Save'#4'Left'#2'/'#4'Hint'#6#4'Save'#3'Top'#2#2#6'Action'#7#16'ActionSaveSc' - +'ript'#0#0#11'TToolButton'#10'TB_SaveAll'#4'Left'#2'F'#4'Hint'#6#8'Save all' - +#3'Top'#2#2#6'Action'#7#13'ActionSaveAll'#7'Enabled'#8#0#0#0#10'TStatusBar'#9 - +'StatusBar'#4'Left'#2#0#6'Height'#2#23#3'Top'#3#2#2#5'Width'#3#222#2#6'Panel' - +'s'#14#1#5'Width'#2'<'#0#1#4'Text'#6#8'Untitled'#5'Width'#3#150#0#0#1#5'Widt' - +'h'#2'2'#0#0#11'SimplePanel'#8#0#0#6'TPanel'#9'PanelMemo'#4'Left'#2#0#6'Heig' - +'ht'#3#154#0#3'Top'#3'h'#1#5'Width'#3#222#2#5'Align'#7#8'alBottom'#12'Client' - +'Height'#3#154#0#11'ClientWidth'#3#222#2#8'TabOrder'#2#2#0#5'TMemo'#5'Memo1' - +#4'Left'#2#1#6'Height'#3#152#0#3'Top'#2#1#5'Width'#3#220#2#5'Align'#7#8'alCl' - +'ient'#10'ScrollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TSplitter'#19 - +'SplitterMemoSynedit'#6'Cursor'#7#8'crVSplit'#4'Left'#2#0#6'Height'#2#5#3'To' - +'p'#3'c'#1#5'Width'#3#222#2#5'Align'#7#8'alBottom'#12'ResizeAnchor'#7#8'akBo' - +'ttom'#0#0#6'TPanel'#11'ScriptPanel'#4'Left'#2#0#6'Height'#3'K'#1#3'Top'#2#24 - +#5'Width'#3#222#2#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'Clien' - +'tHeight'#3'K'#1#11'ClientWidth'#3#222#2#8'DockSite'#9#8'TabOrder'#2#4#10'On' - +'DockDrop'#7#19'ScriptPanelDockDrop'#10'OnDockOver'#7#19'ScriptPanelDockOver' - +#0#12'TPageControl'#12'PageControl1'#4'Left'#3#150#0#6'Height'#3'('#1#3'Top' - +#2#0#5'Width'#3'H'#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' - +'er'#7#20'PageControl1DragOver'#11'OnMouseDown'#7#21'PageControl1MouseDown'#9 - +'OnMouseUp'#7#19'PageControl1MouseUp'#13'OnPageChanged'#7#18'PageControl1Cha' - +'nge'#0#0#6'TPanel'#11'SearchPanel'#4'Left'#2#0#6'Height'#2'#'#3'Top'#3'('#1 - ,#5'Width'#3#222#2#5'Align'#7#8'alBottom'#10'BevelOuter'#7#7'bvSpace'#12'Clie' - +'ntHeight'#2'#'#11'ClientWidth'#3#222#2#8'TabOrder'#2#1#7'Visible'#8#0#12'TS' - +'peedButton'#17'SpeedButtonSearch'#4'Left'#2' '#6'Height'#2#19#3'Top'#2#7#5 - +'Width'#2#16#5'Color'#7#9'clBtnFace'#4'Flat'#9#10'Glyph.Data'#10':'#9#0#0'6' - +#9#0#0'BM6'#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' '#0#0#0#0 - +#0#0#9#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#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#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#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255 - +#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#255#0#0#0#255#0#0#0#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#22'SpeedButtonSearchC' - +'lick'#0#0#12'TLabeledEdit'#17'LabeledEditSearch'#4'Left'#2'h'#6'Height'#2#21 - +#3'Top'#2#6#5'Width'#3#174#0' EditLabel.AnchorSideLeft.Control'#7#17'Labeled' - +'EditSearch'#31'EditLabel.AnchorSideTop.Control'#7#17'LabeledEditSearch'#28 - +'EditLabel.AnchorSideTop.Side'#7#9'asrCenter!EditLabel.AnchorSideRight.Contr' - +'ol'#7#17'LabeledEditSearch"EditLabel.AnchorSideBottom.Control'#7#17'Labeled' - +'EditSearch'#14'EditLabel.Left'#2'I'#16'EditLabel.Height'#2#14#13'EditLabel.' - +'Top'#2#9#15'EditLabel.Width'#2#28#17'EditLabel.Caption'#6#6'Find: '#21'Edit' - +'Label.ParentColor'#8#13'LabelPosition'#7#6'lpLeft'#8'TabOrder'#2#0#8'OnChan' - +'ge'#7#16'EditSearchChange'#7'OnEnter'#7#22'LabeledEditSearchEnter'#6'OnExit' - +#7#21'LabeledEditSearchExit'#9'OnKeyDown'#7#24'LabeledEditSearchKeyDown'#10 - +'OnKeyPress'#7#25'LabeledEditSearchKeyPress'#0#0#9'TCheckBox'#17'CheckBoxMat' - +'chCase'#4'Left'#3'@'#1#6'Height'#2#17#3'Top'#2#7#5'Width'#2'H'#7'Caption'#6 - +#10'Match case'#7'OnClick'#7#22'CheckBoxMatchCaseClick'#8'TabOrder'#2#1#0#0#0 - +#9'TSplitter'#9'Splitter1'#4'Left'#3#145#0#6'Height'#3'('#1#3'Top'#2#0#5'Wid' - +'th'#2#5#11'OnCanResize'#7#18'Splitter1CanResize'#7'Visible'#8#0#0#244#18'TF' - +'unctionListFrame'#15'frmFunctionList'#6'Height'#3'('#1#5'Width'#3#145#0#12 - +'ClientHeight'#3'('#1#11'ClientWidth'#3#145#0#8'TabOrder'#2#3#7'Visible'#8#0 - +#241#9'TTreeView'#12'FunctionList'#6'Height'#3#19#1#5'Width'#3#145#0#8'OnCha' - +'nge'#7#18'FunctionListChange'#10'OnDeletion'#13#7'OnEnter'#7#17'FunctionLis' - +'tEnter'#6'OnExit'#7#16'FunctionListExit'#0#0#241#5'TEdit'#14'editSearchList' - +#3'Top'#3#19#1#5'Width'#3#145#0#6'OnExit'#7#18'editSearchListExit'#10'OnKeyP' - +'ress'#7#22'editSearchListKeyPress'#0#0#0#0#9'TMainMenu'#9'MainMenu1'#4'left' - +#3#16#2#0#9'TMenuItem'#8'MenuFile'#7'Caption'#6#5'&File'#13'SubMenuImages'#7 - +#17'Mufasa_Image_List'#0#9'TMenuItem'#11'MenuItemNew'#6'Action'#7#15'ActionN' - +'ewScript'#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'Acti' - +'on'#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#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'TMenuItem'#12'MenuIt' - +'emSave'#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'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'TMe' - +'nuItem'#14'MenuItemSaveAs'#6'Action'#7#18'ActionSaveScriptAs'#7'Caption'#6 - ,#10'Save as...'#7'OnClick'#7#19'ActionSaveAsExecute'#0#0#9'TMenuItem'#15'Men' - +'uItemSaveAll'#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'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#195#127'Q'#201#239#182#154 - +#201#204#150'o'#248#214#182#145#248#200#136']'#255#239#191#161#255#253#252 - +#250#255#254#252#251#255#254#253#253#255#254#253#252#255#253#251#250#255#253 - +#252#251#255#221#168#133#255#193#127'S'#255#255#255#255#0#255#255#255#0#196 - +#129'T'#201#234#182#151#201#206#152's'#248#234#190#161#248#199#134'['#255#239 - +#192#158#255#255#255#255#255#204#147'n'#255#255#255#255#255#255#255#255#255 - +#255#251#247#255#255#248#241#255#228#175#140#255#199#138'a'#255#255#255#255#0 - +#255#255#255#0#201#139'a'#201#230#181#146#201#203#139'a'#248#238#188#158#248 - +#204#141'e'#255#243#205#176#255#255#255#255#255#227#199#179#255#255#255#255 - +#255#255#255#255#255#255#255#255#255#255#255#255#255#234#191#161#255#201#137 - +'`'#255#255#255#255#0#255#255#255#0#202#141'e'#201#234#184#153#201#201#137'_' - +#248#237#189#155#248#212#151'n'#255#212#158'{'#255#208#152'q'#255#214#164#130 - +#255#205#142'h'#255#205#144'i'#255#208#154'u'#255#209#153's'#255#200#139'b' - +#255#173'Z 6'#255#255#255#0#255#255#255#0#200#136']'#201#239#191#161#201#209 - +#153'u'#248#244#210#184#248#255#255#255#248#230#205#187#248#255#255#254#248 - +#255#255#255#248#251#246#242#248#248#241#237#248#234#191#161#222#201#137'`' - +#222#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#199#134'['#201 - +#239#192#158#201#217#162'}'#248#211#157'z'#248#213#163#128#248#218#174#143 - +#248#210#154'w'#248#210#155'w'#248#210#156'w'#248#208#151'q'#248#200#139'b' - +#222#173'Z /'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#204#141 - +'e'#201#243#205#176#201#255#255#255#201#227#199#179#201#255#255#255#201#255 - +#255#255#201#255#255#255#201#255#255#255#201#234#191#161#201#201#137'`'#201 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#212#151'n'#201#212#158'{'#201#208#152'q'#201#214#164#130#201#205 - +#142'h'#201#205#144'i'#201#208#154'u'#201#209#153's'#201#200#139'b'#201#173 - +'Z +'#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 - +#7'OnClick'#7#20'ActionSaveAllExecute'#0#0#9'TMenuItem'#16'MenuItemDivider2' - +#7'Caption'#6#1'-'#0#0#9'TMenuItem'#14'MenuItemNewTab'#6'Action'#7#12'Action' - +'NewTab'#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#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#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'~'#2#231#14'~'#2#231'='#226 - ,','#255#14'~'#2#231#14'~'#2#231#11'_'#2#176'''''''{'#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#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#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 - +'.'#255'u'#238'd'#255'>'#177'.'#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'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 - +#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 - +#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#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'MMM' - +'jQQQh'#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#252#252#255#253#253#253 - +#255'QQQhUUUg'#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#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#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#200#200#200#255#198#198 - +#198#255#198#197#197#255#201#197#197#255#205#198#198#255#209#199#199#255#215 - +#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUU' - +'fUUUfUUUfUUUfUUUYUUU"'#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#7'OnClick'#7#19'ActionNewTabExecute'#0#0#9'TMenuItem'#16 - +'MenuItemCloseTab'#6'Action'#7#14'ActionCloseTab'#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#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#0#0#0 - +#26#0#0#0#26#0#0#0#26#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#4#4'['#207#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2'X' - +#176'''''''{'#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'//'#167#255 - +'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#229'222' - +'v'#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'[['#190#255'--'#179 - +#255'--'#179#255'--'#179#255'--'#179#255'//'#181#255#17#17#129#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#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#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#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#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#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#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#253#253#253#255'QQQhUUUg'#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#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#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#200#200#200#255#198#198#198#255#198#197#197#255#201#197#197#255#205#198 - +#198#255#209#199#199#255#215#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUU' - +'fUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'#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#7'OnClick'#7#21'ActionClose' - +'TabExecute'#0#0#9'TMenuItem'#17'MenuItemCloseTabs'#7'Caption'#6#14'Close al' - +'l tabs'#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#10#0#0#0#24#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#0#0#0#25#0#0#0#11#0#0#0#0#0#0'w'#0#0#0#128#0 - +#17#17#17'e'#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131 - +#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20 - +#131#17#17#17'e'#0#0'Z'#0#0#0'w'#0#0#0#128#0'---x'#236#236#236#255#232#232 - +#232#255#232#232#232#255#232#232#232#255#232#232#232#255#232#232#232#255#232 - +#232#232#255#232#232#232#255'__'#173#255'//'#149#255'00'#150#255#5#5'w'#228#0 - +#0#128#204#0#0#128#204#0#0#132#153'666t'#235#235#235#255#228#228#228#255#228 - +#228#228#255#228#228#228#255#228#228#228#255#228#228#228#255#228#228#228#255 - +#228#228#228#255'..'#167#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255 - +'^^'#247#255#0#0#152#204'===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'EEEn'#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'eKKKk'#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 - +#246#246#255#246#246#246#255#248#248#248#255#166#166#166#255#232#232#232#255 - +#236#236#236#255'---xPPPi'#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#255#251#251#251#255#252#252#252#255#168#168#168#255#228#228 - +#228#255#235#235#235#255'666tTTTg'#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#174#174#174#255 - +#234#234#234#255#239#239#239#255'===qPPPi'#187#187#187#255#185#185#185#255 - +#182#182#182#255#180#180#180#255#176#176#176#255#173#173#173#255#169#169#169 - +#255#166#166#166#255#162#162#162#255#160#160#160#255#157#157#157#255#145#145 - +#145#255#240#240#240#255#244#244#244#255'EEEnRRR['#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#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'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#255#185#185#185#255#182#182#182 - ,#255#180#180#180#255#176#176#176#255#173#173#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[TTT'#0'TTT'#0'TTT'#0'UUU"UUUYUUUfUU' - +'UfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'#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'#6'Action'#7#10'ActionExit'#11'Bitm' - +'ap.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#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'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'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#255#255#0#255#255#255#0'\\\'#255#161#161#161 - +#255'<s@'#255#160#161#161#255#163#163#163#255#163#163#163#255#164#164#164#255 - +'6t'#170#255'}'#175#212#255'['#154#201#255'T'#149#199#255'X'#150#200#255'A' - +#128#174#255#19'\'#148#234#255#255#255#0#255#255#255#0'```'#255#160#160#160 - +#255'=vA'#255'6q9'#255#162#162#162#255#162#162#162#255#163#163#163#255'=y' - +#176#255#130#179#215#255'b'#159#204#255'Z'#154#201#255'^'#155#202#255'C'#129 - +#175#255#25'`'#152#234'7'#130'>'#255'4~;'#255'1y7'#255'.u4'#255'I'#145'P'#255 - +'F'#143'L'#255'9s='#255#161#161#161#255#162#162#162#255'E~'#180#255#136#183 - +#217#255'g'#163#207#255'a'#158#204#255'c'#159#204#255'E'#131#177#255#31'd' - +#156#234';'#135'B'#255#137#203#146#255#132#200#141#255#128#198#136#255'{'#195 - +#131#255'w'#193#127#255'G'#143'M'#255';t?'#255#161#161#161#255'L'#132#186#255 - +#141#187#219#255'n'#168#209#255'f'#166#209#255'_'#180#223#255'G'#133#177#255 - +'%i'#161#234'>'#139'F'#255#143#206#153#255'}'#198#135#255'x'#195#129#255's' - +#192'|'#255't'#192'|'#255'y'#194#129#255'I'#144'O'#255'T'#127'W'#255'T'#137 - +#191#255#148#191#221#255'u'#173#212#255'c'#184#225#255'K'#212#255#255'B'#139 - +#184#255',n'#166#234'A'#144'J'#255#148#210#159#255#145#208#154#255#141#205 - +#150#255#137#203#146#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159#159 - +#255'Z'#142#196#255#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196#237 - +#255'K'#136#179#255'4s'#171#234'D'#148'M'#255'B'#145'K'#255'?'#141'H'#255'=' - +#137'E'#255']'#164'e'#255'Z'#160'a'#255'E'#131'K'#255#158#158#158#255#158#158 - +#158#255'`'#146#201#255#158#199#226#255#131#184#218#255'}'#180#215#255'~'#179 - +#215#255'O'#137#180#255';y'#177#234#255#255#255#0#255#255#255#0'www'#255#154 - +#154#154#255'='#138'E'#255'I'#138'O'#255#156#156#156#255#157#157#157#255#157 - +#157#157#255'f'#150#204#255#162#203#227#255#137#189#220#255#131#185#218#255 - +#132#185#218#255'Q'#139#181#255'C~'#182#234#255#255#255#0#255#255#255#0'zzz' - +#255#153#153#153#255'R'#145'Y'#255#153#154#153#255#155#155#155#255#156#156 - +#156#255#156#156#156#255'l'#154#208#255#167#206#229#255#143#193#223#255#137 - +#189#220#255#139#189#220#255'S'#141#182#255'K'#132#188#234#255#255#255#0#255 - +#255#255#0'}}}'#255#153#153#153#255#153#153#153#255#154#154#154#255#154#154 - +#154#255#155#155#155#255#155#155#155#255'o'#157#211#255#170#209#231#255#171 - +#209#231#255#152#199#225#255#145#194#222#255'V'#143#183#255'R'#137#193#234 - +#255#255#255#0#255#255#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255'www' - +#255'uuu'#255'rrr'#255'q'#158#212#255'o'#158#214#255#135#178#220#255#171#211 - +#232#255#169#208#230#255'X'#144#184#255'Y'#142#198#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#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'p'#158#214#219'm' - +#156#212#255#133#177#218#255'Z'#145#185#255'`'#147#203#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#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'm'#156#212#137'j'#154#210#251'f'#151#207#238#7'OnClick'#7#17 - +'ActionExitExecute'#0#0#0#9'TMenuItem'#8'MenuEdit'#7'Caption'#6#5'&Edit'#13 - +'SubMenuImages'#7#17'Mufasa_Image_List'#7'OnClick'#7#13'MenuEditClick'#0#9'T' - +'MenuItem'#12'MenuItemUndo'#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' ' - +#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 - +#0#0#0#0#0#0#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#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#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 - +#0#0#5'y}'#17#0#160#196#255'v'#237#251#255#0#160#196#255#0#0#0#0#0#0#0#0#0 - +#160#196'0'#0#153#185'P'#0#160#196#201'm'#230#245#255'v'#226#239#255#25#163 - +#193#255#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237#251#255'v'#237 - +#251#255#0#160#196#255#0#160#196#255#0#160#196#255#0#160#196#255#1#169#196 - +#255'n'#225#238#255#15#201#223#255'i'#228#242#255#26#164#192#248#0#0#0#0#0#0 - +#0#0#5'y}'#17#0#160#196#255'v'#237#251#255#4#195#218#255'v'#237#251#255'i' - +#234#249#255'i'#234#249#255'i'#234#249#255'i'#234#249#255#5#221#247#255#10 - +#200#223#255#7#194#216#255'o'#220#235#255#27#163#191#244#0#0#0#0#5'y~'#17#0 - +#160#196#255'y'#237#251#255'2'#226#248#255','#223#244#255#4#192#214#255#4#192 - +#214#255#4#192#214#255#29#210#232#255#29#210#232#255#29#210#232#255#11#200 - +#223#255'j'#229#243#255#27#171#197#248#21#160#188#203#0#0#0#0#0#160#196#255 - +#173#243#251#255'/'#224#246#255'2'#226#248#255'2'#226#247#255'2'#226#247#255 - +'/'#224#245#255')'#219#241#255#29#210#232#255#29#210#232#255#29#210#232#255 - +'6'#217#236#255'@'#205#225#255#22#161#189#202#5'y}'#10#0#0#0#0#5'y}'#10#0#160 - +#196#255#173#243#251#255'/'#224#246#255'2'#226#247#255')'#219#241#255'/'#224 - +#245#255')'#219#241#255#22#205#227#255'6'#217#236#255'i'#231#246#255'A'#206 - +#227#254#19#163#193#228#5'y}2'#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255 - +#173#243#251#255'1'#225#246#255' '#227#250#255's'#236#250#255'o'#235#250#255 - +'n'#232#247#255'l'#232#247#248#20#161#188#212#20#163#193#213#5'y}'#28#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255'%' - +#228#251#255#0#160#196#255#0#160#196#255#19#161#190#231#21#159#187#207#27#161 - +#187#164#6'z|'#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5 - +'y}'#17#0#160#196#255#173#243#251#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#157#191#20#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 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#7'OnClick'#7#17'ActionUndoExecute'#0#0#9'TMenuItem'#12 - +'MenuItemRedo'#6'Action'#7#10'ActionRedo'#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#0#0#0#0#0#160#196#24 - +#26#167#196'i'#24#166#195'i'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#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#0#0#0#0#0#0#0#0#0 - +#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#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#17#162 - +#194#255#136#231#242#254#2#172#200#255#0#158#193#26#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#0#0#0 - +#255#255#255#0#25#163#193#255'v'#226#239#255'm'#230#245#255#0#160#196#201#0 - +#153#185'P'#0#160#196'0'#0#0#0#0#0#0#0#0#0#160#196#255'v'#237#251#255#0#160 - +#196#255#5'y}'#17#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#26#164#192#248'i'#228 - +#242#255#15#201#223#255'n'#225#238#255#1#169#196#255#0#160#196#255#0#160#196 - +#255#0#160#196#255#0#160#196#255'v'#237#251#255'v'#237#251#255#0#160#196#255 - +#5'y}'#17#0#0#0#0#0#0#0#0#255#255#255#0#27#163#191#244'o'#220#235#255#7#194 - +#216#255#10#200#223#255#5#221#247#255'i'#234#249#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'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'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' - +#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'#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'%'#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 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#173#243#251#255#0#160 - +#196#255#5'y}'#17#0#0#0#0#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#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#157 - +#191#20#0#0#0#0#0#0#0#0#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#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#7'OnClick'#7#17'ActionRedoExecute'#0#0#9'TMenuIte' - +'m'#16'MenuItemDivider3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#11'MenuItemCut'#6 - +'Action'#7#9'ActionCut'#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#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#255#255#255#0#255#255#255#0#255#255#255#0#5#15#141#31#6#16#142'&' - +#1#11#138#3#255#255#255#0#18#28#155'p@K'#217#255',5'#191#221'=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#15#25#151'c2='#199#248'7A'#207#255#31')'#171#176#0#10 - +#134#24'#-'#180#175'5@'#204#253#0#9#133#24#28''''#168#149'4>'#197#248#4#14 - +#140#20#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +'/:'#189#222'5?'#201#229'%0'#179#194'?J'#221#255#31'*'#172#194'$0'#178#203'2' - +'<'#198#242#0#10#134#3#17#27#157'w7A'#200#255#8#18#142' '#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'2<'#195#236'#.'#173#175 - +#255#255#255#0#26'%'#168#153'BP'#210#255#203#163'u'#254'AO'#214#255#22'!'#163 - +#157'/9'#192#212'.8'#190#223#2#13#139#10#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#29'('#169#156';F'#204#255#8#18#144':'#7#17 - +#144'S;H'#212#255#219#189#156#255#238#204#166#255'@L'#222#255':C'#209#255#15 - +#25#152'i'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#3#13#140#31',5'#185#215'<F'#207#255'3>'#202#242'?L'#215 - +#255#216#188#154#255#246#234#225#255#187#146'Z'#191#148'b'#24';'#145'a'#26#1 - +#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#3#13#140#31#27'&'#167#153'*4'#186#204#17#28#157#137 - +#187#152'i'#204#240#224#208#255#183#145'_'#197#143']'#20#11#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#11#136#2#255#255#255#0#180 - +#142'Z'#144#246#234#221#255#225#205#180#255#177#141']'#191#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 - +#179#140'W'#137#241#226#212#255#206#178#142#244#245#235#224#255#166#127'J' - +#157#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#177#137'S'#132#238#223#206#255#151'f e'#194#163'|'#218#233#216#197 - +#253#169#130'N{'#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#175#135'P|'#231#213#193#255#149'e'#31'+'#143'\'#18#27#197#167#131#231 - +#213#188#157#225#181#147'db'#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#172#131'Ku'#222#201#175#255#149'd'#29#31#255#255#255#0#146'`'#23'&' - +#195#164'|'#235#181#144'c'#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#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#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#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' - +'MenuItem'#12'MenuItemCopy'#6'Action'#7#10'ActionCopy'#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#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'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 - +#251#242#235#255#253#244#238#255#202#128'T'#249#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#207#130'S'#255#239 - +#241#231#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#239#242#232#255#206#129'V'#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#204 - +#131'R'#251#251#245#238#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#251#246#239#255#204#131'U' - +#254#199'yJ'#185#200'yK'#206#200'uE'#221#199'uE'#212#200'uE'#212#199'uE'#212 - +#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#200'|N'#211#252#243#236#222#250#241#232#222#250#240#231#222#251#241 - +#233#222#251#242#234#222#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#207#130'S'#222#239#241#231#222#255#233#217 - +#222#255#234#219#222#255#233#217#222#255#231#215#222#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#204#131'R'#219 - +#251#245#238#222#255#233#217#222#255#234#219#222#255#233#217#222#255#231#215 - +#222#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#202#132'R'#219#255#247#241#222#255#233#217#222#255#234#219#222 - +#255#233#217#222#255#231#215#222#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#203#133'S'#219#255#247#240#222#255 - +#231#213#222#253#231#214#222#253#230#212#222#252#228#208#222#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#203#134'T' - +#219#255#247#242#222#254#231#213#222#254#231#213#222#253#229#209#222#250#224 - +#202#222#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#203#134'U'#219#254#247#241#222#252#229#210#222#252#228#209#222 - +#251#226#204#222#249#221#196#222#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#203#134'U'#219#254#246#240#222#252#226#205#222#252 - +#227#205#222#250#223#200#222#247#217#188#222#245#233#221#222#250#243#235#222 - +#251#248#243#222#205#149'e'#220#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#203#134'V'#218#254#245#237#222#252#222 - +#197#222#251#224#199#222#249#220#194#222#245#211#180#222#254#249#243#222#250 - +#226#196#222#236#193#147#222#195'}H'#128#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#136#222#207#133'U'#156#180'i='#10#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'#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#7'OnClick'#7#17'ActionC' - +'opyExecute'#0#0#9'TMenuItem'#13'MenuItemPaste'#6'Action'#7#11'ActionPaste' - +#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'^^^'#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 - +#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 - +#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#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#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' - +#147#210#255'H'#143#208#255'J'#140#201#255'o'#139#165#255#241#241#241#255#182 - +#182#182#255#181#181#181#255#181#181#181#255#180#180#180#255#180#180#180#255 - +#180#180#180#255#237#237#237#250'SSS'#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#255#233#233#233#255#232#232#232#255#232#232#232#255#232 - +#232#232#255#231#231#231#255#237#237#237#250'VVV'#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#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 - +'s'#183#225#255'W'#163#215#255'S'#160#215#255'P'#157#213#255'R'#153#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'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'#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#255#255#255#0' c'#152#255'|' - +#189#228#255'e'#174#221#255'b'#171#220#255'^'#168#218#255'\'#167#217#255'\' - +#167#217#255'\'#167#217#255'\'#167#217#255'R'#159#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 - +#127#191#228#255'i'#178#222#255'J'#155#218#255'D'#151#220#255'C'#150#220#255 - +'B'#150#220#255'B'#149#220#255'A'#149#219#255'Q'#158#214#255'l'#178#222#255 - +' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152 - +#224'q'#179#219#254'~'#191#228#255'N'#157#223#255#181#238#253#255'u'#212#240 - +#255'u'#212#240#255#181#238#253#255'K'#155#222#255'n'#180#224#255'm'#179#223 - +#249' c'#152#243#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c' - +#152'2 c'#152#178' c'#152#255'7u'#164#255#182#239#254#255#128#219#243#255#128 - +#219#243#255#182#239#254#255'.n'#161#255' c'#152#255' c'#152#165' c'#152'S' - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0' c'#152'* c'#152#255' c'#152#255' c'#152#255' c'#152#255' c'#152 - +#255' c'#152#240#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#7'OnClick'#7#18'ActionPasteExecute'#0 - +#0#9'TMenuItem'#14'MenuItemDelete'#6'Action'#7#12'ActionDelete'#11'Bitmap.Da' - +'ta'#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#0#0#0#6#0#0#0#14#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*'#0#0#0'+' - +#0#0#0')'#0#0#0'$'#0#0#0#29#0#0#0#21#0#0#0#13#0#0#0#4#255#255#255#0#255#255 - +#255#0#255#255#255#0#0#0#255#1#0#0#211'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#211'F'#0#0#255#1#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0 - +#206#150#0#0#206#255#0#0#206'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#206'x'#0#0#207#255#0#0#207#150#0#0 - +#255#1#255#255#255#0#255#255#255#0#0#0#200'F'#0#0#200#255#0#0#200#255#0#0#201 - +#255#0#0#202'x'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0 - +#202'x'#0#0#201#255#0#0#201#255#0#0#201#255#0#0#200'F'#255#255#255#0#255#255 - +#255#0#255#255#255#0#0#0#193'x'#0#0#195#255#0#0#195#255#0#0#195#255#0#0#196 - +'x'#255#255#255#0#255#255#255#0#0#0#196'x'#0#0#195#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#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#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 - +#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#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#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#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#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#0#255#255 - +#255#0#255#255#255#0#0#0#149'x'#0#0#148#255#0#0#148#255#0#0#148#255#0#0#149 - +'F'#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#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#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#7'OnClick'#7#19'ActionDelet' - +'eExecute'#0#0#9'TMenuItem'#16'MenuItemDivider4'#7'Caption'#6#1'-'#0#0#9'TMe' - +'nuItem'#17'MenuItemSelectAll'#6'Action'#7#15'ActionSelectAll'#7'OnClick'#7 - +#22'ActionSelectAllExecute'#0#0#9'TMenuItem'#16'MenuItemDivider5'#7'Caption' - +#6#1'-'#0#0#9'TMenuItem'#12'MenuItemFind'#6'Action'#7#15'ActionFindStart'#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#0#0#0#0 - +#0#0#0#0#0#0#0#0#1#1#1' '#2#2#2#207#20#20#20#255'999'#207#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0' - +#2#2#2#239#21#21#21#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#0#0#0#1#1#1'0'#2#2#2#239#21#21#21#255 - +';;;'#255'```'#255#128#128#128#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239#21#21#21#255';;;'#255'aaa' - +#255#129#129#129#207#140#140#140#16#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140'P' - +#140#140#140#159#140#140#140#191#140#140#140#191#140#140#140#143'TTTP'#2#2#2 - +#239#22#22#22#255';;;'#255'aaa'#255#129#129#129#207#140#140#140#16#0#0#0#0#0 - +#0#0#0#140#140#140#16#140#140#140#191#140#140#140#255#162#159#154#255#190#182 - +#171#255#183#176#165#255#154#152#148#255#140#140#140#255'```'#255'<<<'#255'a' - +'aa'#255#129#129#129#207#140#140#140#16#0#0#0#0#0#0#0#0#140#140#140#16#140 - +#140#140#207#162#159#156#255#233#223#207#255#255#240#218#255#255#238#213#255 - +#255#236#208#255#255#235#204#255#219#204#181#255#147#146#144#255'|||'#255#129 - +#129#129#207#140#140#140#16#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#128#147#147 - +#146#255#241#232#220#255#255#244#227#255#255#242#222#255#255#240#217#255#255 - +#238#213#255#255#236#208#255#255#235#204#255#219#204#181#255#140#140#140#255 - +#140#140#140'P'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#239#190#188#183 - +#255#255#247#236#255#255#245#231#255#255#244#226#255#255#242#222#255#255#240 - +#217#255#255#238#213#255#255#236#208#255#255#235#203#255#162#158#151#255#140 - +#140#140#175#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#255#226#223#218#255 - +#255#249#240#255#255#247#235#255#255#245#231#255#255#244#226#255#255#242#221 - +#255#255#240#217#255#255#238#212#255#255#236#208#255#198#187#172#255#140#140 - +#140#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#255#226#224#221#255#255 - +#251#244#255#255#249#240#255#255#247#235#255#255#245#230#255#255#243#226#255 - +#255#242#221#255#255#240#217#255#255#238#212#255#198#188#174#255#140#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#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#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#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#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#7'OnClick'#7#22'ActionFindstartExecute'#0#0#9 - +'TMenuItem'#16'MenuItemFindNext'#6'Action'#7#14'ActionFindNext'#7'OnClick'#7 - +#21'ActionFindNextExecute'#0#0#9'TMenuItem'#15'MenuItemReplace'#6'Action'#7 - +#13'ActionReplace'#7'OnClick'#7#20'ActionReplaceExecute'#0#0#0#9'TMenuItem' - +#14'MenuItemScript'#7'Caption'#6#7'&Script'#13'SubMenuImages'#7#17'Mufasa_Im' - +'age_List'#0#9'TMenuItem'#11'MenuItemRun'#6'Action'#7#15'ActionRunScript'#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#4's:'#255'!'#130'O'#255'c'#130'r'#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#4's:'#255'z'#207#164#255','#140'Z'#255'=vY'#255#174#174#174#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#4's:'#255#130#216#172#255'v'#214#166#255'<'#157'j'#255'''tL'#255#172#174 - +#173#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#9'w?'#255#131#219#174#255#31#198'q'#255'r'#222#167#255'K'#178 - +#127#255#23'tE'#255#168#173#170#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#4's:'#255#131#220#175#255#17#195'i'#255#26#204 - +'s'#255'i'#223#163#255'Z'#194#141#255#19'vC'#255#158#167#163#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#4's:'#255#169#220#193 - +#255#16#189'e'#255#17#193'g'#255#19#194'i'#255'Y'#211#149#255'g'#201#152#255 - +#22'|G'#255#136#156#146#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#4's:'#255#169#220#193#255#13#179'^'#255#14#182'`'#255#14#182'`'#255#13 - +#180'_'#255'G'#196#132#255'p'#202#156#255#29#130'M'#255'g'#140'y'#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#4's:'#255#169#220#193#255#12#170'X' - +#255#18#174'^'#255#21#175'`'#255#22#173'a'#255#19#170']'#255':'#182'w'#255'u' - +#199#157#255'('#137'W'#255'N'#131'g'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#4's:'#255#169#220#193#255'.'#173'k'#255'+'#173'j'#255''''#171'h'#255'"' - +#169'd'#255#28#165'_'#255'A'#178'x'#255'x'#198#159#255')'#136'X'#255'g'#140 - +'y'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255#169#220#193#255'6' - +#173'p'#255'2'#172'm'#255'-'#170'j'#255'('#168'f'#255'X'#188#137#255'x'#197 - +#157#255#31#128'N'#255#131#154#142#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#4's:'#255#169#220#193#255'>'#177'v'#255':'#175's'#255'6'#174'p' - +#255'o'#197#152#255'q'#191#151#255#24'{I'#255#166#176#171#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#4's:'#255#169#220#193#255'E'#180'{' - +#255'G'#180'|'#255#130#204#166#255'g'#182#140#255#23'wE'#255#193#197#195#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#4's:'#255 - +#165#218#191#255'W'#187#135#255#144#210#176#255'['#171#130#255'#wL'#255#212 - +#213#212#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#4's:'#255#169#220#193#255#155#213#183#255'L'#159's'#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#0#0#0 - +#0#0#0#0#4's:'#255#164#217#190#255'='#147'f'#255'_'#136's'#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#4's:'#255'-'#136'Y'#255#133#156#144#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#10'ImageIndex'#2#6 - +#7'OnClick'#7#16'ActionRunExecute'#0#0#9'TMenuItem'#13'MenuItemPause'#6'Acti' - +'on'#7#17'ActionPauseScript'#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#238#238#238#0#238#238#238#0#238#238#238#0#152'pP' - +#255#164'e4'#255#164'e4'#255#152'pP'#255#251#227#188#0#251#227#188#0#152'pP' - +#255#164'e4'#255#164'e4'#255#152'pP'#255#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#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#0#0#164'e4'#0#164'e4'#0#164'e4'#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#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#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#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#217#176#141#255#230#206#183#255 - +#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#217#176#141#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#217#178#143#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4' - +#255#217#178#143#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#218#179#145#255#230#206#183#255#164'e' - +'4'#255#164'e4'#0#164'e4'#0#164'e4'#255#218#179#145#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 - +#218#181#147#255#230#207#185#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255 - +#218#181#147#255#230#207#185#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#219#182#148#255#231#209#187#255#164'e4' - +#255#164'e4'#0#164'e4'#0#164'e4'#255#219#182#148#255#231#209#187#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#221 - +#188#157#255#231#209#188#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#221 - +#188#157#255#231#209#188#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#153'nL'#0 - +#153'nL'#0#153'nL'#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#255 - +#153'nL'#0#153'nL'#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#238#238#238#0#238#238#238#0#238#238#238#0#153'nL' - +#255#171'qC'#255#172'rD'#255#153'nL'#255#251#227#188#0#251#227#188#0#153'nL' - +#255#171'qC'#255#172'rD'#255#153'nL'#255#0#0#0#0#0#0#0#0#0#0#0#0#10'ImageInd' - +'ex'#2#5#7'OnClick'#7#18'ActionPauseExecute'#0#0#9'TMenuItem'#12'MenuItemSto' - +'p'#6'Action'#7#16'ActionStopScript'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM' - +'6'#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#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'EP'#191#230'9' - +'9'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99' - +#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#135#150#246#255'|'#141#247 - +#255'r'#132#248#255'h|'#248#255'^s'#250#255'Sj'#250#255'Jc'#250#255'B\'#251 - +#255':U'#252#255'3O'#252#255'99'#134#230#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'EP'#191#230#146#158#245#255#135#150#246#255'|'#141#247 - +#255'r'#133#248#255'h|'#249#255'^s'#249#255'Tk'#250#255'Kc'#251#255'B\'#251 - +#255'9U'#252#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0'EP'#191#230#155#167#245#255#146#159#245#255#135#150#247#255'|'#141 - +#247#255'r'#132#248#255'g|'#248#255'^s'#249#255'Tk'#250#255'Jc'#251#255'A\' - +#251#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +'EP'#191#230#166#175#244#255#156#167#245#255#145#159#245#255#135#150#246#255 - +'}'#141#247#255'q'#132#247#255'h|'#248#255']s'#249#255'Tj'#250#255'Jc'#251 - +#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP' - +#191#230#174#183#243#255#165#175#245#255#156#167#245#255#145#159#245#255#135 - +#150#247#255'|'#141#247#255'r'#132#248#255'h{'#249#255']s'#249#255'Sk'#250 - +#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']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#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#241#255#191#197#243#255#183#190#243#255#174 - ,#183#244#255#166#175#244#255#155#167#245#255#146#159#246#255#135#150#246#255 - +'|'#141#247#255'r'#132#247#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#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#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'EP'#191#230'EP' - +#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191 - +#230'EP'#191#230'EP'#191#230'EP'#191#230#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#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#10'ImageI' - +'ndex'#2#7#7'OnClick'#7#17'ActionStopExecute'#0#0#0#9'TMenuItem'#8'MenuView' - +#7'Caption'#6#5'&View'#0#9'TMenuItem'#21'MenuItemColourHistory'#7'Caption'#6 - +#20'View &Colour History'#7'OnClick'#7#26'MenuItemColourHistoryClick'#0#0#9 - +'TMenuItem'#18'MenuItemDebugImage'#7'Caption'#6#17'View &Debug Image'#7'OnCl' - +'ick'#7#23'MenuItemDebugImageClick'#0#0#9'TMenuItem'#20'MenuItemFunctionList' - +#7'Caption'#6#19'View &Function List'#7'OnClick'#7#25'MenuItemFunctionListCl' - +'ick'#0#0#0#9'TMenuItem'#9'MenuExtra'#7'Caption'#6#5'Extra'#0#9'TMenuItem'#24 - +'MenuitemFillFunctionList'#7'Caption'#6#18'Fill Function List'#7'OnClick'#7 - +#29'MenuitemFillFunctionListClick'#0#0#0#9'TMenuItem'#8'MenuHelp'#7'Caption' - +#6#5'&Help'#0#9'TMenuItem'#13'MenuItemAbout'#7'Caption'#6#6'&About'#7'OnClic' - +'k'#7#18'MenuItemAboutClick'#0#0#0#0#10'TImageList'#17'Mufasa_Image_List'#4 - +'left'#3#232#1#6'Bitmap'#10#14'l'#0#0'Li'#27#0#0#0#16#0#0#0#16#0#0#0'BBB'#0 - +'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0 - +#161'UB'#255#161'UB'#255#161'UB'#255'BBB'#14'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB' - +#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#161'UB'#255#255#218#208#255#208 - +'^B'#255#161'UB'#255#161'UB'#255'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'B' - +'BB'#0'BBB'#0'BBB'#0'BBB'#0#161'UB'#255#255#218#208#255#208'^B'#255#208'^B' - +#255#161'UB'#255#161'UB'#255'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0 - +'BBB'#0#161'UB'#255#161'UB'#255#255#218#208#255#208'^B'#255#208'^B'#255#161 - +'UB'#255#161'UB'#255#161'UB'#255'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'B' - +'BB'#0#161'UB'#255#255#218#208#255#161'UB'#255#208'^B'#255#208'^B'#255#161'U' - +'B'#255#161'UB'#255#161'UB'#255'BBBcBBB'#0'BBB'#0'BBB'#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0'BBB'#11#161'UB'#255#255#218#208#255 - +#161'UB'#255#208'^B'#255#161'UB'#255#161'UB'#255'BBBcBBBLBBB'#0'BBB'#0'BBB'#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#131#131#131#255#255 - +#255#255#255#161'UB'#255#255#218#208#255#161'UB'#255#161'UB'#255'BBBcBBBLBBB' - +#25'BBB'#0'BBB'#0'BBB'#0#255#255#255#0#255#255#255#0#255#255#255#0#131#131 - +#131#255#255#255#255#255#229#229#229#255#161#161#161#255#161'UB'#255#255#218 - +#208#255#161'UB'#255'BBBXBBB'#28'BBB'#3'BBB'#0'BBB'#0'BBB'#0#255#255#255#0 - +#255#255#255#0#131#131#131#255#255#255#255#255#229#229#229#255#161#161#161 - +#255#131#131#131#255'BBBc'#161'UB'#255'BBB`BBBJBBB'#14'BBB'#0'BBB'#0'BBB'#0 - +'BBB'#0#255#255#255#0#131#131#131#255#255#255#255#255#229#229#229#255#161#161 - +#161#255#131#131#131#255'BBBcBBBLBBB''BBB>BBB'#25'BBB'#3'BBB'#0'BBB'#0'BBB'#0 - +'BBB'#0#131#131#131#255#255#255#255#255#229#229#229#255#161#161#161#255#131 - +#131#131#255'BBBcBBBLBBB'#25'BBB'#6'BBB'#11'BBB'#2'BBB'#0'BBB'#0'BBB'#0'BBB' - +#0#131#131#131#255#255#255#255#255#229#229#229#255#161#161#161#255#131#131 - +#131#255'BBBcBBBLBBB'#25'BBB'#3'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131 - +#131#131#255#255#255#255#255#229#229#229#255#161#161#161#255#131#131#131#255 - +'BBBcBBBLBBB'#25'BBB'#3'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131 - +#131#131#255#229#229#229#255#161#161#161#255#131#131#131#255'BBBcBBBLBBB'#25 - +'BBB'#3#255#255#255#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131 - +#255#229#229#229#255#131#131#131#255#131#131#131#255'BBBcBBBLBBB'#25'BBB'#3 - +#255#255#255#0#255#255#255#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#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#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#202#225#202#255#197#247#213#255#156#244#185#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#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'#255'1:1' - +#255'!>+'#255'[r['#255#0#0#0#191#0#0#0#0#0#0#0#0#224#225#247#255'!6'#211#255 - +#130#132#185#255#0#0#0#0#0#0#0#0'a'#177'a'#255'7'#198'^'#255'$'#153'J'#255'0' - +'I0'#255#0#0#0#191#0#0#0#191#9'@'#9#255#0#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0 - +#151#157#232#255#0#25#192#255#21#25'g'#255#0#0#0#0#0#0#0#0#27#142#27#255#22 - +#139'.'#255';^;'#255#0#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0'x'#135#241#255#0#0#0 - +#0#0#0#0#0#185#191#246#255#0','#241#255#0#20'}'#255#17#20'4'#255#0#0#0#0#0#0 - +#0#0'd'#140'd'#255#21'W"'#255'?D?'#255#0#0#0#191#0#0#0#0#0#0#0#0#194#201#249 - +#255#161#189#254#255#235#237#253#255#233#235#253#255'3d'#254#255#2' '#147#255 - +#0#11'<'#255'99?'#255#0#0#0#0#0#0#0#0#0#0#0#0#2'.'#3#255'$5$'#255#0#0#0#191#0 - +#0#0#0#0#0#0#0#133#151#250#255#142#182#255#255'hz'#238#255'p'#155#251#255#17 - +'5'#156#255#3#18'A'#255#6#10'3'#255#0#0#0#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#2''''#2#255'DLD'#255#0#0#0#0#0#0#0#0#16'2'#251#255'r'#178#255#255'c'#161#245 - +#255'6\'#154#255#19'"A'#255#5#11'7'#255#0#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0'=Q='#255#0#0#0#191#0#0#0#0#9'2'#181#255'S~'#161#255'5' - +'Rq'#255#26'+A'#255#23#28';'#255#0#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#191#0#0#0#0#23'$e'#255#30'/A'#255'(6A' - +#255#30'/A'#255#20'$A'#255#1#9'7'#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#191'::@'#255'%(='#255 - +#6#13'8'#255'%(='#255#0#0#0#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#255#255#255#0#255#255#255#0#255#255#255#0'Y'#170#131'HY' - +#170#131#171'Y'#170#131#210'Y'#170#131#255'Y'#170#131#213'Y'#170#131#174'Y' - +#170#131'Q'#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'V'#167#128#24'V'#167#128#195'l'#179#146 - +#255#168#213#195#255#197#230#219#255'q'#183#151#255#198#230#220#255#169#214 - +#196#255'o'#181#148#255'V'#167#128#198'V'#167#128#30#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0'R'#162'}'#27'S'#163'~'#228#143#198#174#255 - +#200#232#223#255#223#242#236#255#249#253#251#255'w'#184#153#255#248#252#251 - +#255#220#241#235#255#199#231#222#255#147#200#178#255'U'#164#128#232'R'#162'}' - +#30#255#255#255#0#255#255#255#0#255#255#255#0'M'#157'x'#192#140#195#171#255 - +#195#230#220#255#245#251#249#255#197#230#220#255#157#213#197#255'\'#170#135 - +#255#159#214#197#255#201#232#223#255#244#250#249#255#192#228#217#255#147#199 - +#178#255'M'#157'x'#204#255#255#255#0#255#255#255#0'H'#152'sQ`'#167#135#255 - +#173#218#203#255#239#248#245#255#155#210#193#255#130#199#178#255#130#199#178 - +#255'V'#164#130#255#130#199#178#255#130#199#178#255#156#211#194#255#240#248 - +#246#255#169#216#202#255'e'#170#139#255'H'#152'sT'#255#255#255#0'B'#145'n' - +#174#144#197#176#255#205#232#223#255#182#221#208#255'x'#193#169#255#141#202 - +#182#255#228#243#238#255'i'#169#141#255#226#242#237#255#139#202#181#255'x' - +#193#169#255#185#223#210#255#200#229#220#255#149#200#181#255'B'#145'n'#180 - +#255#255#255#0'<'#139'h'#219#129#194#170#255#241#249#246#255'|'#193#169#255 - +'n'#187#160#255#229#243#238#255#171#216#200#255'u'#190#164#255#177#218#204 - +#255#221#239#233#255'n'#187#160#255#129#196#172#255#240#248#245#255#129#194 - +#172#255'<'#139'h'#231#255#255#255#0'6'#132'b'#240'A'#143'o'#255'^'#156#130 - +#255'?'#142'm'#255'@'#142'n'#255'^'#156#130#255'd'#180#151#255'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#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#214#199#255#183#218 - +#204#255'F'#153'x'#255')vW'#180#255#255#255#0'#pQQ5'#129'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'!pQ'#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'#255#236#245#241#255 - +#173#212#196#255'M'#161'~'#255'*'#132'_'#255#27'gI'#235#24'dG'#27#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#19'_B'#21#19'_B'#174#26'lL'#255 - +'%'#128'['#255'+'#141'd'#255#22'eG'#255','#141'e'#255'%'#129'['#255#27'nM' - +#255#19'_B'#183#19'_B'#27#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#15'Z?W'#15'Z?'#183#15'Z?' - +#246#15'Z?'#255#15'Z?'#246#15'Z?'#186#15'Z?]'#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#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#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#255#255#0#255#255#255#0 - +#255#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#172#131'Ku'#222#201#175#255#149'd'#29#31 - +#255#255#255#0#146'`'#23'&'#195#164'|'#235#181#144'c'#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#175#135'P|'#231#213#193#255#149'e'#31'+' - +#143'\'#18#27#197#167#131#231#213#188#157#225#181#147'db'#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#177#137'S'#132#238#223#206#255#151'f e' - +#194#163'|'#218#233#216#197#253#169#130'N{'#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#179#140'W'#137#241#226#212#255#206#178#142 - +#244#245#235#224#255#166#127'J'#157#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#11#136#2#255#255#255#0#180#142'Z'#144#246#234#221#255#225#205 - +#180#255#177#141']'#191#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#3#13#140#31#27'&' - +#167#153'*4'#186#204#17#28#157#137#187#152'i'#204#240#224#208#255#183#145'_' - +#197#143']'#20#11#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#3#13#140#31',5'#185#215'<F'#207#255'3' - +'>'#202#242'?L'#215#255#216#188#154#255#246#234#225#255#187#146'Z'#191#148'b' - +#24';'#145'a'#26#1#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'('#169#156';F'#204#255#8#18#144':'#7#17#144 - +'S;H'#212#255#219#189#156#255#238#204#166#255'@L'#222#255':C'#209#255#15#25 - +#152'i'#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<'#195#236'#.'#173#175#255#255#255#0#26'%'#168#153'BP'#210 - +#255#203#163'u'#254'AO'#214#255#22'!'#163#157'/9'#192#212'.8'#190#223#2#13 - +#139#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +'/:'#189#222'5?'#201#229'%0'#179#194'?J'#221#255#31'*'#172#194'$0'#178#203'2' - +'<'#198#242#0#10#134#3#17#27#157'w7A'#200#255#8#18#142' '#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#15#25#151'c2='#199#248 - +'7A'#207#255#31')'#171#176#0#10#134#24'#-'#180#175'5@'#204#253#0#9#133#24#28 - +''''#168#149'4>'#197#248#4#14#140#20#255#255#255#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#5#15#141#31#6#16#142'&'#1#11#138 - +#3#255#255#255#0#18#28#155'p@K'#217#255',5'#191#221'=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#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#176#0'%'#2#178#0'%'#2 - +#179'8%'#2#179'|'#201#184#253#255#202#185#254#255'%'#2#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%'#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#176#159#233#255 - +#178#161#233#255#179#162#234#255#181#164#235#255#182#165#236#255#152#135#220 - +#255#170#153#238#255'#'#2#165#138'lll'#0'sss'#0'yyy'#0#128#128#128#0#133#133 - +#133'/'#131#131#131'f'#248#248#248#255#245#245#245#255#174#157#232#255#176 - +#159#233#255#178#161#233#255#179#162#234#255#149#132#217#255#151#134#219#255 - +#169#152#237#255'"'#2#161#141'lll'#0'sss'#0'yyy'#0#127#127#127'/}}}f'#246#246 - +#246#255#242#242#242#255#242#242#242#255#242#242#242#255#174#157#232#255#176 - +#159#233#255#146#129#214#255#148#131#216#255#166#149#234#255'"'#2#159#144'"' - +#2#159'Alll'#0'sss'#0'xxx/vvvf'#244#244#244#255#239#239#239#255#239#239#239 - +#255#239#239#239#255#239#239#239#255#239#239#239#255#142'}'#210#255#144#127 - +#212#255#163#146#231#255'!'#2#157#146'!'#2#156'B!'#2#158#0'lll'#0'rrr/pppf' - +#243#243#243#255#236#236#236#255#236#236#236#255#236#236#236#255#236#236#236 - +#255#236#236#236#255#206#206#206#255#208#208#208#255#159#142#227#255'!'#2#155 - +#149'!'#2#154'C!'#2#156#0'!'#2#158#0'kkk/iiif'#241#241#241#255#233#233#233 - +#255#233#233#233#255#233#233#233#255#233#233#233#255#233#233#233#255#202#202 - +#202#255#204#204#204#255#220#220#220#255'666f '#3#152'E!'#2#153#0'!'#2#156#0 - +'!'#2#158#0'cccf'#240#240#240#255#230#230#230#255#230#230#230#255#230#230#230 - +#255#230#230#230#255#230#230#230#255#198#198#198#255#200#200#200#255#216#216 - +#216#255'''''''f###/ '#3#151#0'!'#2#153#0#25#2'u'#0#17#1'O'#0'XXXf'#240#240 - +#240#255#227#227#227#255#227#227#227#255#227#227#227#255#227#227#227#255#194 - +#194#194#255#196#196#196#255#212#212#212#255#26#26#26'f'#22#22#22'/ '#0#24 - +#3'q'#0#8#1'&'#0#0#0#0#0#0#0#0#0'HHH/===f'#240#240#240#255#225#225#225#255 - +#225#225#225#255#191#191#191#255#192#192#192#255#209#209#209#255#15#15#15'f' - +#12#12#12'/'#15#15#15#0#8#8#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#16#16#16#0#30 - +#30#30'/ f'#223#223#223#255#206#206#206#255#206#206#206#255#206#206#206#255 - +#5#5#5'f'#2#2#2'/'#2#2#2#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#17#0#0#0'&'#9#9#9'H'#10#10#10'f'#5#5#5'f'#2#2#2'f'#1#1#1'f'#0#0#0'@'#0#0 - +#0#30#0#0#0#25#0#0#0#19#0#0#0#14#0#0#0#9#0#0#0#5#0#0#0#2#0#0#0#0#0#0#0#9#0#0 - +#0#19#0#0#0#26#0#0#0#25#0#0#0#24#0#0#0#22#0#0#0#20#0#0#0#18#0#0#0#15#0#0#0#13 - +#0#0#0#10#0#0#0#7#0#0#0#5#0#0#0#3#0#0#0#1#0#0#0#0#238#238#238#0#238#238#238#0 - +#238#238#238#0#153'nL'#255#171'qC'#255#172'rD'#255#153'nL'#255#251#227#188#0 - +#251#227#188#0#153'nL'#255#171'qC'#255#172'rD'#255#153'nL'#255#0#0#0#0#0#0#0 - +#0#0#0#0#0#153'nL'#0#153'nL'#0#153'nL'#0#162'f7'#255#220#191#164#255#223#198 - +#175#255#162'f7'#255#153'nL'#0#153'nL'#0#162'f7'#255#220#191#164#255#223#198 - +#175#255#162'f7'#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#221#188#157#255#231#209#188#255#164'e4'#255#164'e4'#0#164'e4'#0 - +#164'e4'#255#221#188#157#255#231#209#188#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#219#182#148#255#231#209#187 - +#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#219#182#148#255#231#209#187 - +#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#218#181#147#255#230#207#185#255#164'e4'#255#164'e4'#0#164'e4'#0#164 - +'e4'#255#218#181#147#255#230#207#185#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#218#179#145#255#230#206#183#255 - +#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#218#179#145#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#217#178#143#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4' - +#255#217#178#143#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#217#176#141#255#230#206#183#255#164'e' - +'4'#255#164'e4'#0#164'e4'#0#164'e4'#255#217#176#141#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 - +#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#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#0#0#0#0#0#0#0#164'e4'#0 - +#164'e4'#0#164'e4'#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#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#0#0#162'f8'#0#162'f' - +'8'#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>'#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#238#238#238#0#238#238 - +#238#0#238#238#238#0#152'pP'#255#164'e4'#255#164'e4'#255#152'pP'#255#251#227 - +#188#0#251#227#188#0#152'pP'#255#164'e4'#255#164'e4'#255#152'pP'#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255'-'#136'Y'#255#133#156#144#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#4's:'#255#164#217#190#255'='#147'f'#255'_'#136's' - +#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#4's:'#255#169#220#193#255#155#213#183#255'L'#159's' - +#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#0#0#0#0#0#0#0#4's:'#255#165#218#191#255'W'#187#135#255#144#210#176 - +#255'['#171#130#255'#wL'#255#212#213#212#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#4's:'#255#169#220#193#255'E'#180'{' - +#255'G'#180'|'#255#130#204#166#255'g'#182#140#255#23'wE'#255#193#197#195#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#4's:'#255 - +#169#220#193#255'>'#177'v'#255':'#175's'#255'6'#174'p'#255'o'#197#152#255'q' - +#191#151#255#24'{I'#255#166#176#171#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#4's:'#255#169#220#193#255'6'#173'p'#255'2'#172'm'#255'-' - +#170'j'#255'('#168'f'#255'X'#188#137#255'x'#197#157#255#31#128'N'#255#131#154 - +#142#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#4's:'#255#169#220 - +#193#255'.'#173'k'#255'+'#173'j'#255''''#171'h'#255'"'#169'd'#255#28#165'_' - +#255'A'#178'x'#255'x'#198#159#255')'#136'X'#255'g'#140'y'#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255#169#220#193#255#12#170'X'#255#18#174'^' - +#255#21#175'`'#255#22#173'a'#255#19#170']'#255':'#182'w'#255'u'#199#157#255 - +'('#137'W'#255'N'#131'g'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:' - +#255#169#220#193#255#13#179'^'#255#14#182'`'#255#14#182'`'#255#13#180'_'#255 - +'G'#196#132#255'p'#202#156#255#29#130'M'#255'g'#140'y'#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#4's:'#255#169#220#193#255#16#189'e'#255#17#193 - +'g'#255#19#194'i'#255'Y'#211#149#255'g'#201#152#255#22'|G'#255#136#156#146 - +#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#4's:'#255#131 - +#220#175#255#17#195'i'#255#26#204's'#255'i'#223#163#255'Z'#194#141#255#19'vC' - +#255#158#167#163#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#9'w?'#255#131#219#174#255#31#198'q'#255'r'#222#167#255'K'#178#127 - +#255#23'tE'#255#168#173#170#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#4's:'#255#130#216#172#255'v'#214#166#255'<'#157'j' - +#255'''tL'#255#172#174#173#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#4's:'#255'z'#207#164#255','#140'Z'#255'=v' - +'Y'#255#174#174#174#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#4's:'#255'!'#130'O'#255'c'#130'r'#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#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 - +#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'EP'#191#230'EP'#191#230'EP'#191#230'EP' - +#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191 - +#230'EP'#191#230'EP'#191#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#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#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#241#255#191#197#243 - +#255#183#190#243#255#174#183#244#255#166#175#244#255#155#167#245#255#146#159 - +#246#255#135#150#246#255'|'#141#247#255'r'#132#247#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 - +#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#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#174 - +#183#243#255#165#175#245#255#156#167#245#255#145#159#245#255#135#150#247#255 - +'|'#141#247#255'r'#132#248#255'h{'#249#255']s'#249#255'Sk'#250#255'99'#134 - +#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#166 - +#175#244#255#156#167#245#255#145#159#245#255#135#150#246#255'}'#141#247#255 - +'q'#132#247#255'h|'#248#255']s'#249#255'Tj'#250#255'Jc'#251#255'99'#134#230 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#155#167 - +#245#255#146#159#245#255#135#150#247#255'|'#141#247#255'r'#132#248#255'g|' - +#248#255'^s'#249#255'Tk'#250#255'Jc'#251#255'A\'#251#255'99'#134#230#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#146#158#245#255 - +#135#150#246#255'|'#141#247#255'r'#133#248#255'h|'#249#255'^s'#249#255'Tk' - +#250#255'Kc'#251#255'B\'#251#255'9U'#252#255'99'#134#230#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#135#150#246#255'|'#141#247 - +#255'r'#132#248#255'h|'#248#255'^s'#250#255'Sj'#250#255'Jc'#250#255'B\'#251 - +#255':U'#252#255'3O'#252#255'99'#134#230#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'EP'#191#230'99'#134#230'99'#134#230'99'#134#230'99'#134 - +#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230 - +'99'#134#230#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#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'zXA'#7'zU='#6'|V='#4'{W='#6'zX@%{Y@''' - +'yXB'#10#0#0#0#0'@C_'#4#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0'{W='#0'wU>'#13#171'i'#27#26'KF[m'#6'6'#171#223#2 - +'5'#173#255#2'6'#176#251#6'+'#141#164#0#0#0#0'"0c'#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'<@h'#29#25'8'#142#207#9'.'#142#253#1'5'#177 - +#255#4'('#148#255#2'/'#159#254#1'2'#171#255#6'$|'#135#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#15'6'#157#188#1')'#154#255#3'0'#166 - +#255#4'%'#145#254#5'('#137#255#1#23'u'#255#1'1'#171#254#1''''#145#255#7#30'j' - +#171#0#0#0#0#3#27'm'#0#0#0#0#0#0#0#0#0#127'rf'#0#0#0#0#0#0#9#154#1#3'2'#172 - +#226#15':'#133#241#11'v'#234#255#11'~'#240#255#18'\'#171#255#9'q'#229#255#3 - +'('#148#255#0','#162#254#0#25'm'#255#5#27'k'#221#19'&f"'#0#0#0#0#0#0#0#0'sf[' - +#6'uli'#29'gkz!'#8'A'#183#239#19'~'#236#255#12#137#255#254#23'p'#207#255'*x' - +#200#255#10'{'#243#255#5'K'#186#255#0'+'#160#255#4'*'#131#255#0#25'm'#254#2 - +#23'f'#255#17#29'_$tz'#137#6'pjd*xdW(Td'#130'c!'#128#229#255#22'\'#179#255#25 - +'a'#187#255'3'#149#249#255#9'y'#243#255#5'y'#248#255#3'y'#252#255#4'3'#158 - +#255#5')'#146#255#2'!v'#255#0#20'b'#255#3#20'_'#200'|'#136#177#11#129#138#170 - +')y'#140#159'''B'#143#222#189#18'M'#161#255#14'/h'#255'4'#136#229#255'7'#154 - +#255#255#20'z'#235#255#3'w'#246#255#3's'#238#255#2']'#209#255#2#21't'#255#3 - +'!'#138#255#2#20'h'#255#1#15'['#237'z'#134#165'$p'#139#169#24'n'#144#186#31 - +'H'#152#231#198'5'#145#238#255':'#155#255#255'4'#149#251#255'2'#134#231#255 - +' '#130#242#255#0'u'#244#255#0's'#238#255#0'o'#232#255#2#22'w'#255#1'!'#139 - +#255#1#26'}'#255#1#11'V'#255#0#0#0#0#129#144#164#5#0#0#0#0'L'#150#224#165'7' - +#148#248#255'4'#147#250#255'/'#142#249#255'/'#141#249#255#30#135#248#255#2'v' - +#241#255#0'q'#235#255#1'a'#211#255#1#28#132#255#1#30#133#255#0#27#127#255#1 - +#12'['#255#0#0#0#0#0#0#0#0#0#0#0#0'?'#147#236#172'2'#148#255#255'0'#145#254 - +#255'/'#143#252#255'+'#134#239#255#5'&'#136#255#2#21'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#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#129#255#2#23'w'#255#1 - +#28#127#255#0#27'~'#255#0#24'z'#255#1#17'l'#255#1#14'i'#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`'#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#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#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#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#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'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#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#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#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#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#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#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#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#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#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#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#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#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#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#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#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#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'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'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' - +#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'#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'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'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'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'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'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',' - +#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#255#255#255#0#255#255#255#0' c'#152'* c'#152#255' c'#152#255' c' - +#152#255' c'#152#255' c'#152#255' c'#152#240#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' c'#152'2' - +' c'#152#178' c'#152#255'7u'#164#255#182#239#254#255#128#219#243#255#128#219 - +#243#255#182#239#254#255'.n'#161#255' c'#152#255' c'#152#165' c'#152'S'#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152#224'q'#179#219 - +#254'~'#191#228#255'N'#157#223#255#181#238#253#255'u'#212#240#255'u'#212#240 - +#255#181#238#253#255'K'#155#222#255'n'#180#224#255'm'#179#223#249' c'#152#243 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152#255#127#191 - +#228#255'i'#178#222#255'J'#155#218#255'D'#151#220#255'C'#150#220#255'B'#150 - +#220#255'B'#149#220#255'A'#149#219#255'Q'#158#214#255'l'#178#222#255' c'#152 - +#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152#255'|' - +#189#228#255'e'#174#221#255'b'#171#220#255'^'#168#218#255'\'#167#217#255'\' - +#167#217#255'\'#167#217#255'\'#167#217#255'R'#159#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 - +'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#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'#152#255's'#183#225#255'W' - +#163#215#255'S'#160#215#255'P'#157#213#255'R'#153#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#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#255#233#233#233#255#232#232 - +#232#255#232#232#232#255#232#232#232#255#231#231#231#255#237#237#237#250'VVV' - +#132' c'#152#255'k'#177#222#255'M'#151#211#255'K'#147#210#255'H'#143#208#255 - +'J'#140#201#255'o'#139#165#255#241#241#241#255#182#182#182#255#181#181#181 - +#255#181#181#181#255#180#180#180#255#180#180#180#255#180#180#180#255#237#237 - +#237#250'SSS'#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'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#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#231#255#231#231#231#255#230 - +#230#230#255#230#230#230#255#236#236#236#250'III'#132' 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#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'#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#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#0#0#0#0#0#0#0#0#0#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#157 - +#191#20#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#173#243#251#255#0#160 - +#196#255#5'y}'#17#0#0#0#0#0#0#0#0#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#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#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#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#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 - +#27#163#191#244'o'#220#235#255#7#194#216#255#10#200#223#255#5#221#247#255'i' - +#234#249#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#26 - +#164#192#248'i'#228#242#255#15#201#223#255'n'#225#238#255#1#169#196#255#0#160 - +#196#255#0#160#196#255#0#160#196#255#0#160#196#255'v'#237#251#255'v'#237#251 - +#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#255#255#255#0#25#163#193#255'v' - +#226#239#255'm'#230#245#255#0#160#196#201#0#153#185'P'#0#160#196'0'#0#0#0#0#0 - +#0#0#0#0#160#196#255'v'#237#251#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#0 - +#0#0#0#255#255#255#0#17#162#194#255#136#231#242#254#2#172#200#255#0#158#193 - +#26#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#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#0#0#0#0#0#0#0#0#0#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#255#0#0#0#0#0#0#160#196 - +#24#26#167#196'i'#24#166#195'i'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#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#192#192#198#246#196#196#202 - +#255#175#175#180#217'CCG'#255#0#0#0'_'#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'@@'#255#255'::'#255#255'::'#255#255'=='#255#255#0#0#0'#'#0#0#0#11'MMP'#255 - +#191#191#197#246#194#194#200#255#182#182#188#206'AAD'#255#0#0#0'k'#255#255 - +#255#0#0#0#0#0#0#0#0#0''''''#255#255#17#17#255#255#11#11#255#255#24#24#255 - +#255'++'#255#255'00'#255#255#0#0#0';FFJ'#255#189#189#195#246#192#192#198#255 - +#190#190#196#195'BBF'#255#0#0#0'_'#255#255#255#0#0#0#0#0'%%'#255#255#0#0#251 - +#255#0#0#0'w'#0#0#0#143#0#0#0#143#26#26#255#255'!!'#255#255#13#13#255#255'CC' - +'G'#255#187#187#193#246#187#187#193#255#184#184#189#195'EEI'#255#0#0#0'_'#255 - +#255#255#0'11'#255#255#10#10#255#255#0#0#0'w'#0#0#0'w'#0#0#0'G'#0#0#0'/'#24 - +#24#255#255#21#21#255#255#0#0#252#255'@@D'#255#181#181#187#248#182#182#188 - +#255#178#178#183#195'EEI'#255#0#0#0'_'#255#255#255#0'##'#255#255#0#0#251#255 - +#0#0#0#143#0#0#0'G'#0#0#0#11#0#0#0#0'""'#255#255#15#15#255#255#0#0#239#255'=' - +'=@'#255#153#153#158#227#169#169#174#213#173#173#179#156'AAE'#255#0#0#0'_' - +#255#255#255#0#26#26#255#255#0#0#249#255#0#0#0#143#0#0#0'/'#0#0#0#0#0#0#0#0 - +'00'#255#255#16#16#255#255#0#0#234#255'<<?'#255'==A'#255'@@D'#255'??B'#255':' - +':>'#255#0#0#0'k'#255#255#255#0#23#23#255#255#0#0#253#255#0#0#0#143#0#0#0'/' - +#0#0#0#0#0#0#0#0'99'#255#255#22#22#255#255#0#0#241#255#0#0#0#179#0#0#0#143#0 - +#0#0'k'#0#0#0'_'#0#0#0'k'#0#0#0'_'#255#255#255#0#19#19#255#255#0#0#250#255#0 - +#0#0#143#24#24#255#255'::'#255#255#0#0#0'#77'#255#255#25#25#255#255#0#0#248 - +#255#0#0#0#155#0#0#209#255#0#0#197#255#0#0#0'S'#0#0#0';'#0#0#0'#'#255#255#255 - +#0#4#4#255#255#0#0#233#255#0#0#0#143#0#0#0'G'#31#31#255#255',,'#255#255'""' - +#255#255#10#10#255#255#0#0#237#255#0#0#209#255#0#0#189#255#0#0#0'k'#0#0#0'S' - +#0#0#0#23#0#0#0#0#255#255#255#0#0#0#237#255#0#0#208#255#0#0#0#143#0#0#0';'#0 - +#0#249#255#3#3#255#255#0#0#252#255#0#0#230#255#0#0#200#255#0#0#173#255#0#0 - +#162#255#0#0#0#143#0#0#0'G'#0#0#0#11#0#0#0#0#255#255#255#0#0#0#216#255#0#0 - +#191#255#0#0#0#143#0#0#0'/'#0#0#0'#'#0#0#222#255#0#0#209#255#0#0#185#255#0#0 - +#158#255#0#0#140#255#0#0#0#179#0#0#0'w'#0#0#0'#'#0#0#0#0#0#0#0#0#255#255#255 - +#0#0#0#0'#'#0#0#0'k'#0#0#0'k'#0#0#0'#'#0#0#0#11#0#0#0';'#0#0#184#255#0#0#156 - +#255#0#0#135#255#0#0#0#179#0#0#0#131#0#0#0';'#0#0#0#11#0#0#0#0#0#0#0#0#255 - +#255#255#0#0#0#0#11#0#0#0'#'#0#0#0'#'#0#0#0#11#0#0#0#0#0#0#0#11#0#0#0';'#0#0 - +#159#255#0#0#0#167#0#0#0#131#0#0#0';'#0#0#0#11#0#0#0#0#0#0#0#0#0#0#0#0#188'k' - +'6q'#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#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'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' - +#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'#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#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#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'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 - +'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#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#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'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#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#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#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'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#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'UUU"UUUYUUUfUUUfUUU' - +'fUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"RRR['#198#198#198#212#220#220 - +#220#255#216#217#217#255#213#213#213#255#208#209#209#255#204#204#204#255#200 - +#200#200#255#198#198#198#255#198#197#197#255#201#197#197#255#205#198#198#255 - +#209#199#199#255#215#203#203#255#196#184#184#212'RRR[PPPi'#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#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'fUUUg'#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#255#255#255#255#255#255#255#255#255'UUUgQQQh' - +#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#252#252#255#253#253#253#255'QQQ' - +'hMMMj'#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#255#250#250#250 - +#255'MMMjIIIl'#247#247#247#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#244#244#244#255#247 - +#247#247#255'IIIlDDDn'#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#239#239#255#239#239#239 - +#255#243#243#243#255'DDDn>>>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'k'#196'_'#255'@'#182'/'#255'k'#196 - +'_'#255#240#240#240#255'>>>q888s'#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'.'#255'u'#238'd'#255'>'#177 - +'.'#255#237#237#237#255'888s222v'#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'''''''{'#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#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'~'#2#231#14'~'#2#231'='#226','#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'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#255#255#0#255#255 - +#255#0'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"RRR[' - +#198#198#198#212#220#220#220#255#216#217#217#255#213#213#213#255#208#209#209 - +#255#204#204#204#255#200#200#200#255#198#198#198#255#198#197#197#255#201#197 - +#197#255#205#198#198#255#209#199#199#255#215#203#203#255#196#184#184#212'RRR' - +'[PPPi'#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#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'fUUUg'#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#255#255#255#255#255#255 - +#255#255#255'UUUgQQQh'#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#252#252 - +#255#253#253#253#255'QQQhMMMj'#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#255#250#250#250#255'MMMjIIIl'#247#247#247#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#244#244#244#255#247#247#247#255'IIIlDDDn'#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 - +#239#239#255#239#239#239#255#243#243#243#255'DDDn>>>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#255#235#235#235#255#240#240#240#255'>>>q888s'#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#230 - +#230#230#255#230#230#230#255#230#230#230#255#237#237#237#255'888s222v'#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'[['#190#255'--'#179#255'--' - +#179#255'--'#179#255'--'#179#255'//'#181#255#17#17#129#200'''''''{'#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'//'#167#255'^^'#247#255'^^'#247 - +#255'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#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#133#16#16#16 - +#133#16#16#16#133#4#4'['#207#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2 - +'s'#231#2#2'X'#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#0#0#0#26#0#0#0#26#0#0#0#26#0#0#0#22#0 - +#0#0#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#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#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#11#0#0#0'#'#0#0 - +#0'/'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#11#0#0#0'#'#0#0#0'G'#138#211#255#255 - +'_'#195#255#255'('#174#255#255#0#159#255#255#0#136#218#255#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#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#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'\'#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#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#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#138 - +#221#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'#'#27#169#255#255#0'o' - +#178#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#11#0#0#0'#'#0#0#0'/'#0#0#0'/'#0#0#0'S'#0#134#215#255#0 - +'Ky'#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#23'%'#173#255#255#10#163#255#255#0#138#222#255#0'l' - +#173#255#0'Eo'#255#0#0#0';'#0#0#0#11#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#11#0#0#0'#'#0#0#0'/'#0#0#0'/'#0 - +#0#0'/'#0#0#0'#'#0#0#0#11#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#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#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#157#191#20#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y' - +'}'#17#0#160#196#255#173#243#251#255'%'#228#251#255#0#160#196#255#0#160#196 - +#255#19#161#190#231#21#159#187#207#27#161#187#164#6'z|'#11#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255'1'#225#246#255 - +' '#227#250#255's'#236#250#255'o'#235#250#255'n'#232#247#255'l'#232#247#248 - +#20#161#188#212#20#163#193#213#5'y}'#28#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#10#0 - +#160#196#255#173#243#251#255'/'#224#246#255'2'#226#247#255')'#219#241#255'/' - +#224#245#255')'#219#241#255#22#205#227#255'6'#217#236#255'i'#231#246#255'A' - +#206#227#254#19#163#193#228#5'y}2'#0#0#0#0#0#0#0#0#0#160#196#255#173#243#251 - +#255'/'#224#246#255'2'#226#248#255'2'#226#247#255'2'#226#247#255'/'#224#245 - +#255')'#219#241#255#29#210#232#255#29#210#232#255#29#210#232#255'6'#217#236 - +#255'@'#205#225#255#22#161#189#202#5'y}'#10#0#0#0#0#5'y~'#17#0#160#196#255'y' - +#237#251#255'2'#226#248#255','#223#244#255#4#192#214#255#4#192#214#255#4#192 - +#214#255#29#210#232#255#29#210#232#255#29#210#232#255#11#200#223#255'j'#229 - +#243#255#27#171#197#248#21#160#188#203#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255 - +'v'#237#251#255#4#195#218#255'v'#237#251#255'i'#234#249#255'i'#234#249#255'i' - +#234#249#255'i'#234#249#255#5#221#247#255#10#200#223#255#7#194#216#255'o'#220 - +#235#255#27#163#191#244#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237 - +#251#255'v'#237#251#255#0#160#196#255#0#160#196#255#0#160#196#255#0#160#196 - +#255#1#169#196#255'n'#225#238#255#15#201#223#255'i'#228#242#255#26#164#192 - +#248#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237#251#255#0 - +#160#196#255#0#0#0#0#0#0#0#0#0#160#196'0'#0#153#185'P'#0#160#196#201'm'#230 - +#245#255'v'#226#239#255#25#163#193#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#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#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#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#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#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#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#0#0#162#0#255#255#255#0 - +#255#255#255#0#0#0#162#0#0#0#165#0#0#0#168'M'#9#9#174#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'#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#255#255#0#0#0#158'l22'#198 - +#227'II'#209#255#255#255#255#255#255#255#255#255#255#255#255#255'BB'#202#255 - +'BB'#202#255#255#255#255#255#255#255#255#255#255#255#255#255'GG'#207#255'**' - +#189#227#0#0#158'l'#255#255#255#0#255#255#255#0#0#0#154#167'GG'#211#245'77' - +#191#255'##'#171#255#255#255#255#255#247#247#247#255#232#232#232#255#222#222 - +#222#255#219#219#219#255#221#221#221#255#17#17#155#255#22#22#160#255'''''' - +#180#245#0#0#154#167#255#255#255#0#255#255#255#0#0#0#150#196'II'#209#253'33' - +#187#255'..'#184#255#19#19#159#255#206#206#206#255#209#209#209#255#214#214 - +#214#255#220#220#220#255#17#17#158#255#17#17#161#255#17#17#161#255#29#29#172 - +#253#0#0#150#196#255#255#255#0#255#255#255#0#0#0#146#196'DD'#205#253'&&'#181 - +#255#20#20#171#255#17#17#170#255#209#209#209#255#214#214#214#255#220#220#220 - +#255#226#226#226#255#17#17#170#255#17#17#170#255#17#17#170#255#24#24#175#253 - +#0#0#146#196#255#255#255#0#255#255#255#0#0#0#141#167'..'#192#245#18#18#180 - +#255#17#17#180#255#209#209#209#255#214#214#214#255#220#220#220#255#226#226 - +#226#255#230#230#230#255#234#234#234#255#17#17#180#255#17#17#180#255#18#18 - +#175#245#0#0#141#167#255#255#255#0#255#255#255#0#0#0#137'l'#22#22#170#226#22 - +#22#193#255#209#209#209#255#214#214#214#255#220#220#220#255#17#17#173#255#17 - +#17#173#255#234#234#234#255#238#238#238#255#238#238#238#255#17#17#190#255#9#9 - +#161#227#0#0#137'l'#255#255#255#0#255#255#255#0#0#0#133#26#3#3#138#191#24#24 - +#193#246#18#18#178#255#220#220#220#255#17#17#178#255#17#17#200#255#17#17#200 - +#255#17#17#178#255#238#238#238#255#17#17#178#255#15#15#188#246#2#2#137#191#0 - +#0#133#26#255#255#255#0#255#255#255#0#0#0#131#0#0#0#127'M'#4#4#136#205#18#18 - +#196#246#18#18#182#255#17#17#209#255#17#17#209#255#17#17#209#255#17#17#209 - +#255#17#17#182#255#15#15#194#246#3#3#136#205#0#0#127'M'#0#0#131#0#255#255#255 - +#0#255#255#255#0#0#0#0#0#0#0#31#0#0#0'SM'#2#2't'#191#8#8#157#227#14#14#196 - +#245#17#17#212#253#17#17#212#253#14#14#196#245#8#8#157#227#2#2't'#191#0#0'SM' - +#0#0#31#0#0#0#0#0#255#255#255#0#255#255#255#0#0#0#0#4#0#0#0#23#0#0#0'+'#0#0 - +#26'C'#0#0'D'#128#0#0'Z'#171#0#0']'#196#0#0']'#196#0#0'Z'#171#0#0'D'#128#0#0 - +#26'C'#0#0#0'-'#0#0#0#24#0#0#0#4#255#255#255#0#255#255#255#0#0#0#0#2#0#0#0#12 - +#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#23#0#0#0#12#0#0#0#2#255#255#255#0'TTT'#0'TTT'#0'TTT'#0'UUU"UUUYU' - +'UUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"TTT'#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[UUU'#0'TTT'#0'PPP'#0'PPPi'#187#187#187#255#185#185 - +#185#255#182#182#182#255#180#180#180#255#176#176#176#255#173#173#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'fUUU'#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"UUUYUUU' - +'fSSS'#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'PPPiRRR['#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#208#197#197#255#188 - +#188#188#255#246#246#246#255#248#248#248#255'KKKkPPPi'#187#187#187#255#185 - +#185#185#255#182#182#182#255#180#180#180#255#176#176#176#255#173#173#173#255 - +#169#169#169#255#166#166#166#255#162#162#162#255#160#160#160#255#157#157#157 - +#255#145#145#145#255#240#240#240#255#244#244#244#255'EEEnTTTg'#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#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#255#251#251#251 - +#255#252#252#252#255#168#168#168#255#228#228#228#255#235#235#235#255'666tKKK' - ,'k'#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#246#246#255#246 - +#246#246#255#248#248#248#255#166#166#166#255#232#232#232#255#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#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#255#228#228#228 - +#255#228#228#228#255#228#228#228#255#228#228#228#255'..'#167#255'^^'#247#255 - +'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#0#0#152#204'---x'#236#236 - +#236#255#232#232#232#255#232#232#232#255#232#232#232#255#232#232#232#255#232 - +#232#232#255#232#232#232#255#232#232#232#255'__'#173#255'//'#149#255'00'#150 - +#255#5#5'w'#228#0#0#128#204#0#0#128#204#0#0#132#153#17#17#17'e'#20#20#20#131 - +#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20 - +#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#17#17#17'e'#0#0'Z'#0 - +#0#0'w'#0#0#0#128#0#0#0#0#10#0#0#0#24#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#0#0#0#25#0#0#0#11#0#0#0#0#0#0'w'#0 - +#0#0#128#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#212#151'n'#201#212#158'{'#201#208#152'q'#201#214#164 - +#130#201#205#142'h'#201#205#144'i'#201#208#154'u'#201#209#153's'#201#200#139 - +'b'#201#173'Z +'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#204#141'e'#201#243#205#176#201#255#255#255#201#227 - +#199#179#201#255#255#255#201#255#255#255#201#255#255#255#201#255#255#255#201 - +#234#191#161#201#201#137'`'#201#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#134'['#201#239#192#158#201#217#162 - +'}'#248#211#157'z'#248#213#163#128#248#218#174#143#248#210#154'w'#248#210#155 - +'w'#248#210#156'w'#248#208#151'q'#248#200#139'b'#222#173'Z /'#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#200#136']'#201#239#191#161#201#209 - +#153'u'#248#244#210#184#248#255#255#255#248#230#205#187#248#255#255#254#248 - +#255#255#255#248#251#246#242#248#248#241#237#248#234#191#161#222#201#137'`' - +#222#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#202#141'e'#201 - +#234#184#153#201#201#137'_'#248#237#189#155#248#212#151'n'#255#212#158'{'#255 - +#208#152'q'#255#214#164#130#255#205#142'h'#255#205#144'i'#255#208#154'u'#255 - +#209#153's'#255#200#139'b'#255#173'Z 6'#255#255#255#0#255#255#255#0#201#139 - +'a'#201#230#181#146#201#203#139'a'#248#238#188#158#248#204#141'e'#255#243#205 - +#176#255#255#255#255#255#227#199#179#255#255#255#255#255#255#255#255#255#255 - +#255#255#255#255#255#255#255#234#191#161#255#201#137'`'#255#255#255#255#0#255 - +#255#255#0#196#129'T'#201#234#182#151#201#206#152's'#248#234#190#161#248#199 - +#134'['#255#239#192#158#255#255#255#255#255#204#147'n'#255#255#255#255#255 - +#255#255#255#255#255#251#247#255#255#248#241#255#228#175#140#255#199#138'a' - +#255#255#255#255#0#255#255#255#0#195#127'Q'#201#239#182#154#201#204#150'o' - +#248#214#182#145#248#200#136']'#255#239#191#161#255#253#252#250#255#254#252 - +#251#255#254#253#253#255#254#253#252#255#253#251#250#255#253#252#251#255#221 - +#168#133#255#193#127'S'#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#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#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#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#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#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'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#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'#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#136#222#207#133'U'#156 - +#180'i='#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#203#134'V'#218#254#245#237#222#252#222#197#222#251#224 - +#199#222#249#220#194#222#245#211#180#222#254#249#243#222#250#226#196#222#236 - +#193#147#222#195'}H'#128#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#203#134'U'#219#254#246#240#222#252#226#205 - +#222#252#227#205#222#250#223#200#222#247#217#188#222#245#233#221#222#250#243 - +#235#222#251#248#243#222#205#149'e'#220#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#203#134'U'#219#254#247#241 - +#222#252#229#210#222#252#228#209#222#251#226#204#222#249#221#196#222#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#203#134'T'#219 - +#255#247#242#222#254#231#213#222#254#231#213#222#253#229#209#222#250#224#202 - +#222#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#203#133'S'#219#255#247#240#222#255#231#213#222#253#231#214#222#253 - +#230#212#222#252#228#208#222#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#202#132'R'#219#255#247#241#222#255#233#217 - +#222#255#234#219#222#255#233#217#222#255#231#215#222#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#204#131'R'#219 - +#251#245#238#222#255#233#217#222#255#234#219#222#255#233#217#222#255#231#215 - +#222#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#207#130'S'#222#239#241#231#222#255#233#217#222#255#234#219#222 - +#255#233#217#222#255#231#215#222#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#200'|N'#211#252#243#236#222#250#241 - +#232#222#250#240#231#222#251#241#233#222#251#242#234#222#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#199'yJ'#185 - +#200'yK'#206#200'uE'#221#199'uE'#212#200'uE'#212#199'uE'#212#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#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#204#131'R'#251#251#245#238#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#251#246#239#255#204#131 - +'U'#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#207#130'S'#255#239#241#231#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#239#242#232 - +#255#206#129'V'#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#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#251#242#235#255 - +#253#244#238#255#202#128'T'#249#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#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#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#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#0#255#255#255#0 - +#255#255#255#0#0#0#149'x'#0#0#148#255#0#0#148#255#0#0#148#255#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#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#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#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#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#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#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#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#0#0#193'x'#0#0#195#255#0#0#195#255#0#0#195#255#0#0 - +#196'x'#255#255#255#0#255#255#255#0#0#0#196'x'#0#0#195#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#0#0#200'F'#0#0 - +#200#255#0#0#200#255#0#0#201#255#0#0#202'x'#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#0#0#202'x'#0#0#201#255#0#0#201#255#0#0#201#255#0#0 - +#200'F'#255#255#255#0#255#255#255#0#0#0#255#1#0#0#206#150#0#0#206#255#0#0#206 - +'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#206'x'#0#0#207#255#0#0#207#150#0#0#255#1#255#255#255#0#255#255 - +#255#0#255#255#255#0#0#0#255#1#0#0#211'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#211'F'#0#0#255#1#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#0#0#0#6#0#0#0#14#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*'#0#0#0'+'#0#0#0')'#0#0#0 - +'$'#0#0#0#29#0#0#0#21#0#0#0#13#0#0#0#4#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'ZZP<ZZP'#199'ff]'#255't' - +'tk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk' - +#255'ttk'#255'ff]'#255'ZZP'#199'ZZP<ZZP'#204#191#191#184#255#244#244#241#255 - +#246#246#244#255#246#246#244#255#246#246#244#255#246#246#244#255#246#246#244 - +#255#246#246#244#255#246#246#244#255#246#246#244#255#246#246#244#255#246#246 - +#244#255#244#244#241#255#191#191#185#255'ZZP'#204'bbX'#255#230#230#224#255 - +#227#227#218#255#225#225#216#255#225#225#216#255#221#221#212#255#221#221#212 - +#255#225#225#216#255#225#225#216#255#221#221#212#255#221#221#212#255#225#225 - +#216#255#225#225#216#255#227#227#218#255#231#231#225#255'ddZ'#255'hh^'#255 - +#218#218#208#255#217#217#207#255#217#217#207#255#213#213#203#255'}}u'#255#132 - +#132'|'#255#213#213#205#255#213#213#205#255#132#132'|'#255'}}u'#255#213#213 - +#203#255#217#217#207#255#217#217#207#255#218#218#208#255'llb'#255'ee['#255 - +#214#214#204#255#214#214#204#255#210#210#200#255'zzs'#255'MMC'#255'MMC'#255 - +#127#127'x'#255#127#127'x'#255'MMC'#255'MMC'#255'zzs'#255#210#210#200#255#214 - +#214#204#255#214#214#204#255'ii_'#255'ee['#255#210#210#200#255#210#210#200 - +#255#206#206#198#255'vvn'#255'HH>'#255'HH>'#255'HH>'#255'HH>'#255'HH>'#255'H' - +'H>'#255'vvn'#255#206#206#198#255#210#210#200#255#210#210#200#255'ii_'#255'd' - +'dZ'#255#206#206#196#255#206#206#196#255#206#206#196#255#206#206#198#255'zzs' - +#255'BB8'#255'BB8'#255'BB8'#255'BB8'#255'zzs'#255#206#206#198#255#206#206#196 - +#255#206#206#196#255#206#206#196#255'hh^'#255'ddZ'#255#203#203#193#255#203 - +#203#193#255#203#203#193#255#201#201#191#255'wwo'#255'==3'#255'==3'#255'==3' - +#255'==3'#255'wwo'#255#201#201#191#255#203#203#193#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'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#255#150#150#144#255#197 - +#197#188#255#197#197#188#255#150#150#144#255#141#141#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#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#149#139#255#149#149 - +#139#255#139#139#132#214#186#186#182'\'#183#183#179#216#166#166#160#249#161 - +#161#153#250#161#161#153#250#161#161#153#250#161#161#154#250#161#161#154#250 - +#161#161#154#250#161#161#155#250#161#161#155#250#162#162#155#250#162#162#155 - +#250#167#167#161#249#186#186#182#217#188#188#184']'#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#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'm'#156#212#137'j'#154#210#251'f'#151#207#238#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'p'#158#214#219'm'#156 - +#212#255#133#177#218#255'Z'#145#185#255'`'#147#203#234#255#255#255#0#255#255 - +#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255'www'#255'uuu'#255'rrr'#255 - +'q'#158#212#255'o'#158#214#255#135#178#220#255#171#211#232#255#169#208#230 - +#255'X'#144#184#255'Y'#142#198#234#255#255#255#0#255#255#255#0'}}}'#255#153 - +#153#153#255#153#153#153#255#154#154#154#255#154#154#154#255#155#155#155#255 - +#155#155#155#255'o'#157#211#255#170#209#231#255#171#209#231#255#152#199#225 - +#255#145#194#222#255'V'#143#183#255'R'#137#193#234#255#255#255#0#255#255#255 - +#0'zzz'#255#153#153#153#255'R'#145'Y'#255#153#154#153#255#155#155#155#255#156 - +#156#156#255#156#156#156#255'l'#154#208#255#167#206#229#255#143#193#223#255 - +#137#189#220#255#139#189#220#255'S'#141#182#255'K'#132#188#234#255#255#255#0 - +#255#255#255#0'www'#255#154#154#154#255'='#138'E'#255'I'#138'O'#255#156#156 - +#156#255#157#157#157#255#157#157#157#255'f'#150#204#255#162#203#227#255#137 - +#189#220#255#131#185#218#255#132#185#218#255'Q'#139#181#255'C~'#182#234'D' - +#148'M'#255'B'#145'K'#255'?'#141'H'#255'='#137'E'#255']'#164'e'#255'Z'#160'a' - +#255'E'#131'K'#255#158#158#158#255#158#158#158#255'`'#146#201#255#158#199#226 - +#255#131#184#218#255'}'#180#215#255'~'#179#215#255'O'#137#180#255';y'#177#234 - +'A'#144'J'#255#148#210#159#255#145#208#154#255#141#205#150#255#137#203#146 - +#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159#159#255'Z'#142#196#255 - +#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196#237#255'K'#136#179#255 - +'4s'#171#234'>'#139'F'#255#143#206#153#255'}'#198#135#255'x'#195#129#255's' - +#192'|'#255't'#192'|'#255'y'#194#129#255'I'#144'O'#255'T'#127'W'#255'T'#137 - +#191#255#148#191#221#255'u'#173#212#255'c'#184#225#255'K'#212#255#255'B'#139 - +#184#255',n'#166#234';'#135'B'#255#137#203#146#255#132#200#141#255#128#198 - +#136#255'{'#195#131#255'w'#193#127#255'G'#143'M'#255';t?'#255#161#161#161#255 - +'L'#132#186#255#141#187#219#255'n'#168#209#255'f'#166#209#255'_'#180#223#255 - +'G'#133#177#255'%i'#161#234'7'#130'>'#255'4~;'#255'1y7'#255'.u4'#255'I'#145 - +'P'#255'F'#143'L'#255'9s='#255#161#161#161#255#162#162#162#255'E~'#180#255 - +#136#183#217#255'g'#163#207#255'a'#158#204#255'c'#159#204#255'E'#131#177#255 - +#31'd'#156#234#255#255#255#0#255#255#255#0'```'#255#160#160#160#255'=vA'#255 - +'6q9'#255#162#162#162#255#162#162#162#255#163#163#163#255'=y'#176#255#130#179 - +#215#255'b'#159#204#255'Z'#154#201#255'^'#155#202#255'C'#129#175#255#25'`' - +#152#234#255#255#255#0#255#255#255#0'\\\'#255#161#161#161#255'<s@'#255#160 - +#161#161#255#163#163#163#255#163#163#163#255#164#164#164#255'6t'#170#255'}' - +#175#212#255'['#154#201#255'T'#149#199#255'X'#150#200#255'A'#128#174#255#19 - +'\'#148#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#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#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#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#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#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#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#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#255#226#224#221#255 - +#255#251#244#255#255#249#240#255#255#247#235#255#255#245#230#255#255#243#226 - +#255#255#242#221#255#255#240#217#255#255#238#212#255#198#188#174#255#140#140 - +#140#239#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#255#226#223#218#255#255 - +#249#240#255#255#247#235#255#255#245#231#255#255#244#226#255#255#242#221#255 - +#255#240#217#255#255#238#212#255#255#236#208#255#198#187#172#255#140#140#140 - +#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#239#190#188#183#255#255#247 - +#236#255#255#245#231#255#255#244#226#255#255#242#222#255#255#240#217#255#255 - +#238#213#255#255#236#208#255#255#235#203#255#162#158#151#255#140#140#140#175 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#128#147#147#146#255#241#232#220 - +#255#255#244#227#255#255#242#222#255#255#240#217#255#255#238#213#255#255#236 - +#208#255#255#235#204#255#219#204#181#255#140#140#140#255#140#140#140'P'#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#16#140#140#140#207#162#159#156#255#233 - +#223#207#255#255#240#218#255#255#238#213#255#255#236#208#255#255#235#204#255 - +#219#204#181#255#147#146#144#255'|||'#255#129#129#129#207#140#140#140#16#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#16#140#140#140#191#140#140#140#255 - +#162#159#154#255#190#182#171#255#183#176#165#255#154#152#148#255#140#140#140 - +#255'```'#255'<<<'#255'aaa'#255#129#129#129#207#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'P'#140#140#140#159#140#140#140#191#140 - +#140#140#191#140#140#140#143'TTTP'#2#2#2#239#22#22#22#255';;;'#255'aaa'#255 - +#129#129#129#207#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239#21#21#21#255';;;'#255 - +'aaa'#255#129#129#129#207#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239#21#21#21#255 - +';;;'#255'```'#255#128#128#128#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239#21#21#21 - +#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#0#0#0#0#0#0#0#0#0#0#0#1#1#1' '#2#2#2#207#20#20#20#255'9' - +'99'#207#0#0#9'TTrayIcon'#9'MTrayIcon'#9'PopUpMenu'#7#9'TrayPopup'#9'Icon.Da' - +'ta'#10#242#19#0#0#238#19#0#0#0#0#1#0#1#0'('#30#0#0#1#0' '#0#216#19#0#0#22#0 - +#0#0'('#0#0#0'('#0#0#0'<'#0#0#0#1#0' '#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#12#17'E'#1#0#0#0#0'F['#136#0#0#0#0#0#26'9o3'#9#30'o'#255#8#25'r' - +#255#9#25'r'#255#7#24'r'#255#8#24'q'#255#12'7'#144#255#21'w'#218#255#21'z' - +#220#255#22'z'#223#255#23'x'#225#255#23'v'#220#255#18'W'#179#255#12')x'#255 - +#10#23'a'#255#10#20'_'#255#10#21'`'#255#9#21'a'#255#9#21'`'#255#9#21'e'#255#9 - +#23'n'#255#9#22'o'#255#9#22'o'#255#8#22'o'#255#9#22'p'#255#9#23'm'#255#8#22 - +'i'#255#11#22'b'#255#12#19'F'#255#13#17'E'#255#12#17'C'#255#12#16'C'#255#12 - +#16'C'#255#12#15'B'#255#12#15'C'#255#12#16'D'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#16'+q'#175#7#26't'#255#8#26't'#255#9#25't'#255#8#25't'#255#8#25's'#255 - +#17'Y'#185#255#24'{'#226#255#25'|'#227#255#23'{'#230#255#24'{'#230#255#24'|' - +#230#255#25'}'#232#255#24'x'#225#255#19'['#188#255#11'"o'#255#10#19'_'#255#11 - +#20'b'#255#10#21'c'#255#10#20'c'#255#9#20'd'#255#9#23'o'#255#8#23'r'#255#8#23 - +'s'#255#9#22's'#255#8#23'r'#255#9#22'n'#255#10#23'n'#255#11#19'Q'#255#13#17 - +'D'#255#12#17'D'#255#12#16'E'#255#12#16'E'#255#13#16'E'#255#13#16'D'#255#12 - +#16'E'#255#0#0#0#0#0#0#0#0#0#0#0#0'2Hl5'#8#27'h'#249#9#25'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'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#24'x'#255#8#24'v'#255#7#28 - +'v'#255#24'{'#224#255#26'~'#228#255#24#127#231#255#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'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#26'}'#233#255#26'}'#232 - +#255#25'}'#231#255#24'{'#232#255#25'|'#231#255#31#129#241#255#11#30'q'#255#10 - +#21'b'#255#11#21'd'#255#9#21'b'#255#9#20'e'#255#9#20'b'#255#9#21'k'#255#8#23 - +'s'#255#7#22'w'#255#8#24'v'#255#8#22'u'#255#8#23'v'#255#11#21'['#255#13#16'I' - +#255#12#15'I'#255#11#16'I'#255#12#15'I'#255#13#15'E'#255#12#14'E'#255#0#0#0#0 - +#0#0#0#0'frw'#17#19'(q'#188#8#26'x'#255#8#25'y'#255#9#25'w'#255#8#23's'#255#8 - +#24'w'#255#7#24'v'#255#24']'#185#255'%Pu'#255'!>\'#255'0c'#147#255#27'c'#173 - +#255#29'~'#230#255#29'~'#235#255#29'}'#233#255#26'|'#236#255#26'|'#235#255#27 - +#130#240#255#17'2'#140#255#10#20'b'#255#10#22'd'#255#11#20'f'#255#10#20'e' - +#255#10#20'a'#255#8#20'f'#255#7#23'v'#255#8#22'w'#255#9#22'w'#255#8#22't'#255 - +#8#22'x'#255#11#21'f'#255#12#17'N'#255#13#17'O'#255#12#16'K'#255#13#16'I'#255 - +#12#16'F'#255#12#15'G'#255#0#0#0#0'hb'#127#0#6'(k'#5#13'$x'#218#9#26'y'#255 - +#10#26'x'#255#10#23'o'#255#8#23'w'#255#9#24'w'#255#7#27'x'#255#23'c'#199#255 - +#29'b'#168#255#31';['#255'x'#142#158#255'k'#128#186#255#29'2d'#255' t'#211 - +#255#30'}'#235#255#30'{'#234#255#28'|'#234#255#25'~'#238#255#20'U'#188#255#9 - +#18'b'#255#11#21'd'#255#11#21'e'#255#11#20'b'#255#10#20'c'#255#9#19'f'#255#8 - +#23'u'#255#9#23'w'#255#8#22'v'#255#9#21'r'#255#8#22'w'#255#9#22'n'#255#10#17 - +'Y'#255#13#20'^'#255#13#16'J'#255#13#15'H'#255#12#15'C'#255#13#14'I'#255'}}' - +#131'1'#0#0#0#0'nx'#138':'#7' s'#232#9#28'x'#255#10#27'u'#255#8#25'q'#255#7 - +#25'x'#255#8'%'#131#255#23'v'#222#255#27#130#228#255#31'x'#215#255#24'h'#192 - +#255#21#128#231#255#19'j'#199#255'5x'#191#255'#Jk'#255#25'j'#187#255#24#128 - +#228#255#25'~'#231#255#22#129#234#255#8'i'#213#255#10'7'#144#255#9#26'g'#255 - +#8#20'_'#255#9#19'a'#255#8#20'b'#255#8' w'#255#8#27'z'#255#8#23'y'#255#8#24 - +'w'#255#7#23'r'#255#8#23'y'#255#9#24'r'#255#9#18'a'#255#11#23'h'#255#11#17'L' - +#255#13#16'H'#255#11#15'H'#255#10#15'I'#255'~|'#134#26#127'z'#131'%Yh{T'#9#31 - +'k'#255#9#29'z'#255#9#27'r'#255#9#24's'#255#8#29'{'#255#20'h'#205#255'('#128 - +#218#255#19'B'#145#255#12'2'#130#255#12'2'#129#255#23'L'#156#255#31#136#242 - +#255#28#128#233#255#28'~'#228#255#27'c'#177#255#26'u'#213#255#26#127#230#255 - +#24#128#235#255#8'h'#214#255#8'`'#210#255#7'T'#192#255#7'F'#171#255#8'='#158 - +#255#7'@'#164#255#12'T'#193#255#9'$'#133#255#8#24'w'#255#9#25'v'#255#9#22'q' - +#255#9#23'x'#255#10#23'q'#255#9#19'h'#255#12#22'n'#255#13#17'L'#255#12#15'I' - +#255#11#15'K'#255#11#15'K'#255#0#0#0#0'gyy+?a'#147's'#11#28'd'#255#10#19'T' - +#255#12#28'e'#255#9#24'l'#255#12'<'#158#255'$|'#214#255#10'&f'#255#13':'#141 - +#255#9'5'#135#255#13'3'#127#255#14#22'.'#255#18'9q'#255#31'~'#229#255#29'|' - +#230#255#30#127#234#255#25'h'#196#255#27'~'#231#255#25#127#238#255#8'h'#215 - +#255#7'b'#211#255#8'['#201#255#6'`'#211#255#6'b'#212#255#8'c'#212#255#9'`' - +#209#255#12';'#162#255#8#23'x'#255#11#26'r'#255#8#20'`'#255#7#23'z'#255#10#22 - +'q'#255#8#20'm'#255#11#22'o'#255#13#17'L'#255#12#16'J'#255#11#16'K'#254#12#15 - +'I'#255#0#0#0#0#0#0#0#0'!P'#139'-'#11'$n'#255#12#25'P'#255#11#21'J'#255#7#22 - +'d'#255#19'U'#184#255#18'e'#208#255#15'r'#235#255#15'y'#244#255#13'j'#215#255 - +#14'K'#164#255#15'(Y'#255#9#19'3'#255#22'N'#163#255#28#128#231#255#29#127#232 - +#255#29#130#236#255#25'n'#209#255#26#128#235#255#9'`'#205#255#7'_'#206#255#7 - +'b'#214#255#6'c'#216#255#7'c'#213#255#8']'#205#255#6']'#207#255#13'L'#188#255 - +#7#23'y'#255#13#26'h'#255#8#17'X'#255#8#23'x'#255#10#22'n'#255#8#21's'#255#11 - +#22'm'#255#12#17'K'#255#10#16'J'#255#11#15'L'#255#14#17'B'#225'ov'#143'W'#0#0 - +#0#0#14'1t'#2#12'$m'#173#11#19'J'#255#12#20'I'#255#9#22']'#255#12'R'#186#255 - +#17's'#236#255#13'u'#240#255#12's'#240#255#12's'#243#255#14'w'#238#255#15'd' - +#205#255#10'?'#156#255#14'Q'#184#255#27'|'#233#255#27#127#236#255#26#127#239 - +#255#27's'#216#255#22't'#222#255#7'g'#218#255#6'd'#216#255#6'c'#214#255#8'Z' - +#202#255#7'Y'#207#255#7'd'#214#255#6'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#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#255#10#23'd'#255#10#16'H'#255#7#20 - +'l'#255#7#23'{'#255#7#22'z'#255#8#22'|'#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#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'#255#12#17'N'#255#11#15'L'#255#28#23 - +'='#146#0#0#0#0#0#0#0#0'I|'#170#20'?|'#167'2%V'#142'<'#9'$~'#246#10#31'|'#255 - +#11#23'W'#255#7'9'#146#255#7'g'#217#255#10'b'#212#255#6'e'#214#255#6'f'#216 - +#255#7'd'#216#255#6'c'#219#255#7'c'#220#255#8'e'#219#255#18'n'#221#255#17'o' - +#228#255#6']'#212#255#7'c'#219#255#7'_'#213#255#6'^'#213#255#6'c'#219#255#6 - +'b'#219#255#7'c'#221#255#7'c'#219#255#6'd'#218#255#13'i'#219#255#11#27'Z'#255 - +#10#16'G'#255#8#21'o'#255#7#23'z'#255#7#23'|'#255#8#23'|'#255#12#21'c'#255#11 - +#17'P'#255#10#16'O'#255#13#17'H'#255''''#24'*-'#255#255#255#1'\VQ'#4'V'#130 - +#165'-?{'#166':<b'#137'Y'#9' s'#249#7#27#127#255#10#26'h'#255#8#23'X'#255#19 - +'k'#199#255' q'#182#255#12'a'#200#255#7'f'#219#255#6'e'#220#255#6'f'#219#255 - +#6'd'#222#255#8'Y'#199#255#22'h'#210#255#21'z'#236#255#6'g'#225#255#6'a'#217 - +#255#6'b'#221#255#6'd'#224#255#6'c'#219#255#7'c'#220#255#6'c'#219#255#7'c' - +#216#255#6'i'#222#255#16'N'#170#255#9#17'F'#255#7#18'_'#255#7#22'x'#255#7#23 - +'|'#255#7#23#127#255#10#22'p'#255#10#17'R'#255#11#17'P'#254#10#16'P'#255#20 - +#17'?'#198#0#0#0#0#255#255#255#5#127'xu'#8#0#0#0#0#0#0#0#0'"0e1'#10#29'w'#248 - +#9#26#127#255#11#26'k'#255#11#19'L'#255#16'4'#131#255#23'G'#145#255#10'N'#177 - +#255#6'd'#216#255#8'e'#221#255#8'e'#225#255#6'd'#224#255#11'Z'#208#255#30'P' - +#134#255#23'Bp'#255' '#128#217#255#8'l'#225#255#8']'#215#255#7'\'#213#255#6 - +'b'#221#255#6'c'#220#255#7'd'#222#255#7'f'#224#255#15'`'#202#255#14'!d'#255#8 - +#18'Z'#255#8#21'w'#255#7#22'~'#255#9#23'~'#255#12#22'n'#255#12#19'U'#255#12 - +#17'Q'#255#12#14'N'#255#14#16'K'#255#25#19'61'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#22'+kq'#7#28'z'#254#8#26'|'#255#12#25'd'#255#12#19'B'#255#9'4'#128 - +#255#14'K'#169#255#6'U'#193#255#6'f'#218#255#6'g'#219#255#6'g'#222#255#6'g' - +#223#255#7'_'#210#255#14'I'#160#255#23'b'#168#255#22'S'#159#255#12'f'#210#255 - +#6'f'#221#255#7'd'#220#255#7'`'#217#255#7'b'#217#255#11'f'#213#255#14'C'#153 - +#255#11#29'f'#255#7#20'k'#255#7#23'{'#255#7#22'~'#255#8#23#127#255#10#22'f' - +#255#10#18'P'#255#9#16'P'#255#9#16'O'#255#10#16'O'#255#14#17'H'#191'?6R'#3#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':El'#3#24')q'#185#8#27'{'#255#9#26'|'#255#12 - +#21'W'#255#16#19'6'#255#19#30'('#255#10#29'J'#255#7'\'#204#255#7'e'#219#255#7 - +'f'#221#255#7'h'#221#255#7'g'#223#255#13'N'#167#255#12'L'#180#255#10'C'#168 - +#255#11'L'#178#255#17'E'#153#255#7'X'#203#255#7'b'#220#255#6'c'#224#255#14'f' - +#218#255#16'-y'#255#7#20'h'#255#8#24'|'#255#7#24'~'#255#7#22'~'#255#8#23'x' - +#255#12#21'Z'#255#10#16'O'#255#10#16'P'#255#11#15'O'#255#11#16'O'#255#11#15 - +'N'#254#23#19'@v'#255#255#0#0#189#176#174#0#0#0#0#0#0#0#0#0#0#0#0#0#129#133 - +#149#13#26'*q'#221#10#26'}'#255#10#25#127#255#12#22']'#255#12#18'G'#255#9#27 - +'Z'#255#8'e'#220#255#7'f'#221#255#8'g'#222#255#10'd'#220#255#6'e'#225#255#8 - +'d'#224#255#13'S'#158#255#13'!?'#255#20')O'#255#17'1^'#255#7'K'#172#255#7'c' - +#224#255#7'd'#223#255#13'd'#212#255#15'&u'#255#7#19'p'#255#8#24#127#255#8#23 - +'}'#255#8#23'~'#255#7#24'{'#255#12#28'b'#255#10#15'H'#255#11#17'Q'#255#11#17 - +'N'#255#10#16'O'#254#10#15'P'#255#14#15'H'#241'$'#21'+#'#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'o'#128#136#14#15'$k'#197#9#27#127#255#7#25#128#255#9#26 - +'y'#255#10#20'Q'#255#11#17'E'#255#7'-'#132#255#6'l'#229#255#17'c'#206#255#7 - +' '#130#255#8'V'#200#255#6'd'#222#255#7'e'#220#255#8'a'#210#255#7'^'#203#255 - +#6'b'#215#255#7'g'#224#255#7'g'#223#255#7'g'#224#255#13':'#146#255#8#25'x' - +#255#7#25'~'#255#8#24#127#255#7#24#127#255#7#23'}'#255#7' ~'#255#12'?'#158 - +#255#11#19'S'#255#11#16'P'#255#10#16'P'#255#10#17'O'#254#10#16'N'#255#24#18 - +';'#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'Vb{'#2#30',j'#164#7 - +#26'z'#255#8#26#129#255#8#25#129#255#8#25'x'#255#9#22']'#255#9#17'W'#255#16 - +'='#161#255#10#30#129#255#7#23'}'#255#8'('#136#255#8'b'#223#255#7'g'#231#255 - +#6'f'#229#255#6'f'#230#255#6'g'#229#255#6'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#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#7#24#131#255#7#24#129#255#8#23 - +#127#255#8#23'~'#255#6#28#129#255#8'U'#201#255#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#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#0#0'- 6'#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#31')<'#0#0#0#0#0'(*N9'#16#25'['#175#10#24'j'#255#9 - +#23's'#255#10#22'_'#255#9#17'T'#254#7#22'v'#255#7#23#127#255#7#24#129#255#7 - +#24#127#255#9#23'e'#255#10#17'K'#255#10#19'W'#255#8#16'N'#255#8#16'S'#255#7 - +#20'i'#255#7#24'|'#255#6#24#129#255#7#24#130#255#7#24'x'#255#8#23'{'#255#8#23 - +#129#255#9#24'x'#255#10#19'W'#255#10#16'O'#255#10#17'R'#254#10#16'R'#255#14 - +#17'J'#180#20#18'?T'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0'nI8'#0'nK<'#0#0#0#0#0#0#0#0#0#29#24'.$'#14#21'>'#150#11#20 - +'I'#239#6#16'Y'#255#6#23'~'#255#6#24#128#255#6#24#128#255#7#24#129#255#8#24 - +'y'#255#10#19'U'#255#9#17'X'#255#9#24'}'#255#7#24#129#255#7#23#131#255#7#24 - +#131#255#8#24#128#255#7#23'{'#255#8#22#129#255#6#24#129#255#7#23#128#254#11 - +#23'k'#255#11#17'R'#255#10#18'Q'#253#11#17'K'#255#23#21':'#174'`GA'#15#0#0#0 - +#0#31#17'#'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'nI8'#0'pM;'#2'g@4'#0'O4,'#0#0#0#0#0#0#0#0#0'(%-'''#10#21'c'#255#7#24#131#255 - +#6#24#130#255#7#23#131#255#7#23#133#255#8#23#127#255#9#22't'#255#10#19'a'#255 - +#9#20'a'#255#8#21'l'#255#9#21'p'#255#8#21'v'#255#8#22'|'#255#7#22#130#255#8 - +#22#131#255#8#23#132#255#10#24'|'#255#13#19'['#255#15#18'L'#206#19#19'Ai'#23 - +#22'/7"'#28'56*'#28'*)=$('#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'#^'#239#7#24#130#255#6#24#131#255#8#23#130#255#8#24#132#255#7#22#130 - +#255#7#23'~'#255#8#23#132#255#6#23#130#255#7#23#129#255#8#23#132#255#7#23#131 - +#255#8#22#131#255#7#23#133#255#8#24#132#254#8#24#128#255#12#23'`'#253#24#22 - +'@u"'#24'4'#7#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0'A6I'#0#0#0#0#0'/,RA'#14#27'p'#255#7#24#135#255#8#23#133#255#7#23 - +#134#255#7#23#135#255#7#23#132#255#7#23#128#255#8#22#131#255#8#23#132#255#8 - +#22#133#255#8#22#134#255#8#22#134#255#9#22#135#255#10#22#128#255#16#24'h'#188 - +'!'#28'4$'#0#0#0#0#0#0#0#0#0#0#0#0'OC9'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#14'\'#0#0#0#0#0' ''Rk'#13#30'o'#227#10#29 - +'w'#229#11#28't'#229#10#29'u'#229#10#29'w'#229#11#29'v'#229#10#29'y'#229#10 - +#29'v'#229#11#29't'#229#11#28'v'#229#10#28'w'#229#12#28'o'#232#28'#U'#143#23 - +#25#31#4#0#0#0#0'E99'#0'SC;'#0'OC9'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#248#0#0#0#0#0#0#0#240#0#0#0 - +#0#0#0#0#240#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0 - +#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0 - +#224#0#0#0#0#0#0#0#224#0#0#0#1#0#0#0#240#0#0#0#1#0#0#0#240#0#0#0#1#0#0#0#240 - +#0#0#0#3#0#0#0#240#0#0#0#3#0#0#0#240#0#0#0#7#0#0#0#240#0#0#0#7#0#0#0#224#0#0 - +#0#15#0#0#0#224#0#0#0#15#0#0#0#224#0#0#0#15#0#0#0#224#0#0#0#31#0#0#0#240#0#0 - +#0'?'#0#0#0#240#0#0#0'?'#0#0#0#248#0#0#0#255#0#0#0#254#0#0#1#255#0#0#0#255 - +#128#0#15#255#0#0#0#255#128#0'?'#255#0#0#0#255#192#0#127#255#0#0#0#255#224#0 - +#255#255#0#0#0#7'Visible'#9#7'OnClick'#7#6'NoTray'#4'left'#3#192#1#0#0#10'TP' - +'opupMenu'#9'TrayPopup'#6'Images'#7#17'Mufasa_Image_List'#4'left'#3'8'#2#0#9 - +'TMenuItem'#8'TrayStop'#6'Action'#7#16'ActionStopScript'#7'Enabled'#8#7'OnCl' - +'ick'#7#17'ActionStopExecute'#0#0#9'TMenuItem'#9'TrayPause'#6'Action'#7#17'A' - +'ctionPauseScript'#7'Enabled'#8#7'OnClick'#7#18'ActionPauseExecute'#0#0#9'TM' - +'enuItem'#8'TrayPlay'#6'Action'#7#15'ActionRunScript'#7'OnClick'#7#16'Action' - +'RunExecute'#0#0#9'TMenuItem'#11'TrayDivider'#7'Caption'#6#1'-'#0#0#9'TMenuI' - +'tem'#12'MenuItemShow'#7'Caption'#6#4'Show'#7'OnClick'#7#17'MenuItemShowClic' - +'k'#0#0#9'TMenuItem'#12'MenuItemHide'#7'Caption'#6#4'Hide'#7'OnClick'#7#17'M' - +'enuItemHideClick'#0#0#9'TMenuItem'#12'MenuItemExit'#6'Action'#7#10'ActionEx' - +'it'#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#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'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'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#255#255#0#255#255#255#0'\\\'#255#161 - +#161#161#255'<s@'#255#160#161#161#255#163#163#163#255#163#163#163#255#164#164 - +#164#255'6t'#170#255'}'#175#212#255'['#154#201#255'T'#149#199#255'X'#150#200 - +#255'A'#128#174#255#19'\'#148#234#255#255#255#0#255#255#255#0'```'#255#160 - +#160#160#255'=vA'#255'6q9'#255#162#162#162#255#162#162#162#255#163#163#163 - +#255'=y'#176#255#130#179#215#255'b'#159#204#255'Z'#154#201#255'^'#155#202#255 - +'C'#129#175#255#25'`'#152#234'7'#130'>'#255'4~;'#255'1y7'#255'.u4'#255'I'#145 - +'P'#255'F'#143'L'#255'9s='#255#161#161#161#255#162#162#162#255'E~'#180#255 - +#136#183#217#255'g'#163#207#255'a'#158#204#255'c'#159#204#255'E'#131#177#255 - +#31'd'#156#234';'#135'B'#255#137#203#146#255#132#200#141#255#128#198#136#255 - +'{'#195#131#255'w'#193#127#255'G'#143'M'#255';t?'#255#161#161#161#255'L'#132 - +#186#255#141#187#219#255'n'#168#209#255'f'#166#209#255'_'#180#223#255'G'#133 - +#177#255'%i'#161#234'>'#139'F'#255#143#206#153#255'}'#198#135#255'x'#195#129 - +#255's'#192'|'#255't'#192'|'#255'y'#194#129#255'I'#144'O'#255'T'#127'W'#255 - +'T'#137#191#255#148#191#221#255'u'#173#212#255'c'#184#225#255'K'#212#255#255 - +'B'#139#184#255',n'#166#234'A'#144'J'#255#148#210#159#255#145#208#154#255#141 - +#205#150#255#137#203#146#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159 - +#159#255'Z'#142#196#255#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196 - +#237#255'K'#136#179#255'4s'#171#234'D'#148'M'#255'B'#145'K'#255'?'#141'H'#255 - +'='#137'E'#255']'#164'e'#255'Z'#160'a'#255'E'#131'K'#255#158#158#158#255#158 - +#158#158#255'`'#146#201#255#158#199#226#255#131#184#218#255'}'#180#215#255'~' - +#179#215#255'O'#137#180#255';y'#177#234#255#255#255#0#255#255#255#0'www'#255 - +#154#154#154#255'='#138'E'#255'I'#138'O'#255#156#156#156#255#157#157#157#255 - +#157#157#157#255'f'#150#204#255#162#203#227#255#137#189#220#255#131#185#218 - +#255#132#185#218#255'Q'#139#181#255'C~'#182#234#255#255#255#0#255#255#255#0 - +'zzz'#255#153#153#153#255'R'#145'Y'#255#153#154#153#255#155#155#155#255#156 - +#156#156#255#156#156#156#255'l'#154#208#255#167#206#229#255#143#193#223#255 - +#137#189#220#255#139#189#220#255'S'#141#182#255'K'#132#188#234#255#255#255#0 - +#255#255#255#0'}}}'#255#153#153#153#255#153#153#153#255#154#154#154#255#154 - +#154#154#255#155#155#155#255#155#155#155#255'o'#157#211#255#170#209#231#255 - +#171#209#231#255#152#199#225#255#145#194#222#255'V'#143#183#255'R'#137#193 - +#234#255#255#255#0#255#255#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255 - +'www'#255'uuu'#255'rrr'#255'q'#158#212#255'o'#158#214#255#135#178#220#255#171 - +#211#232#255#169#208#230#255'X'#144#184#255'Y'#142#198#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#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'p'#158#214#219 - +'m'#156#212#255#133#177#218#255'Z'#145#185#255'`'#147#203#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 - +#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'm'#156#212#137'j'#154#210#251'f'#151#207#238#7'OnClick' - +#7#17'ActionExitExecute'#0#0#0#10'TPopupMenu'#8'TabPopup'#6'Images'#7#17'Muf' - +'asa_Image_List'#4'left'#3#152#1#0#9'TMenuItem'#14'MenuItemTabAdd'#6'Action' - +#7#12'ActionNewTab'#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#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#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'~'#2#231#14'~' - +#2#231'='#226','#255#14'~'#2#231#14'~'#2#231#11'_'#2#176'''''''{'#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#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#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'.'#255'u'#238'd'#255'>'#177'.'#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'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#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'DDDnIII' - +'l'#247#247#247#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#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#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#252#252#255 - +#253#253#253#255'QQQhUUUg'#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#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#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#200#200#200 - +#255#198#198#198#255#198#197#197#255#201#197#197#255#205#198#198#255#209#199 - +#199#255#215#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUU' - +'fUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'#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#7'OnClick'#7#19'ActionNewTabExecute'#0#0#9 - +'TMenuItem'#16'MenuItemTabClose'#7'Caption'#6#9'Close tab'#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#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#0 - +#0#0#26#0#0#0#26#0#0#0#26#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#4#4'['#207#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2 - +'X'#176'''''''{'#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'//'#167 - +#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#229 - +'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'[['#190#255'--' - +#179#255'--'#179#255'--'#179#255'--'#179#255'//'#181#255#17#17#129#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#230#230#230#255#230#230#230#255#230#230#230#255#237#237#237#255'888' - +'s>>>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#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#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#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#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#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#253#253#253#255'QQQhUUUg'#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#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#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#200#200#200#255#198#198#198#255#198#197#197#255#201#197#197#255#205 - +#198#198#255#209#199#199#255#215#203#203#255#196#184#184#212'RRR[UUU"UUUYUUU' - +'fUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'#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#10'ImageIndex'#2#16#7'O' - +'nClick'#7#21'MenuItemTabCloseClick'#0#0#9'TMenuItem'#22'MenuItemTabCloseOth' - +'ers'#7'Caption'#6#16'Close Other Tabs'#7'OnClick'#7#27'MenuItemTabCloseOthe' - +'rsClick'#0#0#0#11'TActionList'#10'ActionList'#6'Images'#7#17'Mufasa_Image_L' - +'ist'#4'left'#3'p'#1#0#7'TAction'#13'ActionTabNext'#7'Caption'#6#8'Next tab' - +#9'OnExecute'#7#20'ActionTabNextExecute'#8'ShortCut'#3#9'@'#0#0#7'TAction'#13 - +'ActionTabLast'#7'Caption'#6#8'Last tab'#9'OnExecute'#7#20'ActionTabLastExec' - +'ute'#8'ShortCut'#3#9'`'#0#0#7'TAction'#14'ActionCloseTab'#7'Caption'#6#10'&' - +'Close Tab'#10'ImageIndex'#2#16#9'OnExecute'#7#21'ActionCloseTabExecute'#26 - +'SecondaryShortCuts.Strings'#1#6#7'Ctrl+F4'#0#8'ShortCut'#3'W@'#0#0#7'TActio' - +'n'#12'ActionNewTab'#7'Caption'#6#8'New &Tab'#10'ImageIndex'#2#15#9'OnExecut' - +'e'#7#19'ActionNewTabExecute'#8'ShortCut'#3'T@'#0#0#7'TAction'#15'ActionNewS' - +'cript'#7'Caption'#6#4'&New'#10'ImageIndex'#2#9#9'OnExecute'#7#16'ActionNewE' - +'xecute'#8'ShortCut'#3'N@'#0#0#7'TAction'#16'ActionOpenScript'#7'Caption'#6#5 - +'&Open'#10'ImageIndex'#2#10#9'OnExecute'#7#17'ActionOpenExecute'#8'ShortCut' - +#3'O@'#0#0#7'TAction'#16'ActionSaveScript'#7'Caption'#6#5'&Save'#10'ImageInd' - +'ex'#2#14#9'OnExecute'#7#17'ActionSaveExecute'#8'ShortCut'#3'S@'#0#0#7'TActi' - +'on'#18'ActionSaveScriptAs'#7'Caption'#6#9'Save as..'#9'OnExecute'#7#19'Acti' - +'onSaveAsExecute'#0#0#7'TAction'#15'ActionRunScript'#7'Caption'#6#4'&Run'#9 - +'OnExecute'#7#16'ActionRunExecute'#8'ShortCut'#2'x'#0#0#7'TAction'#17'Action' - +'PauseScript'#7'Caption'#6#6'&Pause'#9'OnExecute'#7#18'ActionPauseExecute'#0 - +#0#7'TAction'#16'ActionStopScript'#7'Caption'#6#5'&Stop'#9'OnExecute'#7#17'A' - +'ctionStopExecute'#0#0#7'TAction'#13'ActionSaveAll'#7'Caption'#6#8'Save All' - +#10'ImageIndex'#2#21#9'OnExecute'#7#20'ActionSaveAllExecute'#8'ShortCut'#3'S' - +'`'#0#0#7'TAction'#16'ActionClearDebug'#7'Caption'#6#5'Clear'#10'ImageIndex' - +#2#4#9'OnExecute'#7#23'ActionClearDebugExecute'#0#0#7'TAction'#15'ActionFind' - +'Start'#7'Caption'#6#9'&Find ...'#10'ImageIndex'#2#26#9'OnExecute'#7#22'Acti' - +'onFindstartExecute'#8'ShortCut'#3'F@'#0#0#7'TAction'#9'ActionCut'#7'Caption' - +#6#4'Cu&t'#10'ImageIndex'#2#3#9'OnExecute'#7#16'ActionCutExecute'#8'ShortCut' - +#3'X@'#0#0#7'TAction'#10'ActionCopy'#7'Caption'#6#5'&Copy'#10'ImageIndex'#2 - +#22#9'OnExecute'#7#17'ActionCopyExecute'#8'ShortCut'#3'C@'#0#0#7'TAction'#11 - +'ActionPaste'#7'Caption'#6#6'&Paste'#10'ImageIndex'#2#11#9'OnExecute'#7#18'A' - +'ctionPasteExecute'#8'ShortCut'#3'V@'#0#0#7'TAction'#12'ActionDelete'#7'Capt' - +'ion'#6#7'&Delete'#10'ImageIndex'#2#23#9'OnExecute'#7#19'ActionDeleteExecute' - +#8'ShortCut'#2'.'#0#0#7'TAction'#15'ActionSelectAll'#7'Caption'#6#11'&Select' - +' All'#9'OnExecute'#7#22'ActionSelectAllExecute'#8'ShortCut'#3'A@'#0#0#7'TAc' - +'tion'#10'ActionUndo'#7'Caption'#6#5'&Undo'#10'ImageIndex'#2#18#9'OnExecute' - +#7#17'ActionUndoExecute'#8'ShortCut'#3'Z@'#0#0#7'TAction'#10'ActionRedo'#7'C' - +'aption'#6#5'&Redo'#10'ImageIndex'#2#12#9'OnExecute'#7#17'ActionRedoExecute' - +#8'ShortCut'#3'Y@'#0#0#7'TAction'#14'ActionFindNext'#7'Caption'#6#10'Find &n' - +'ext'#9'OnExecute'#7#21'ActionFindNextExecute'#8'ShortCut'#2'r'#0#0#7'TActio' - +'n'#13'ActionReplace'#7'Caption'#6#11'R&eplace...'#9'OnExecute'#7#20'ActionR' - +'eplaceExecute'#8'ShortCut'#3'R@'#0#0#7'TAction'#10'ActionExit'#7'Caption'#6 - +#5'&Exit'#10'ImageIndex'#2#25#9'OnExecute'#7#17'ActionExitExecute'#0#0#0#6'T' - +'Timer'#10'DebugTimer'#7'OnTimer'#7#18'ProcessDebugStream'#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'A' - +'ction'#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' '#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#0#0#0#0#0#0#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#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#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#0#0#5'y}'#17#0#160#196#255'v'#237 - +#251#255#0#160#196#255#0#0#0#0#0#0#0#0#0#160#196'0'#0#153#185'P'#0#160#196 - +#201'm'#230#245#255'v'#226#239#255#25#163#193#255#0#0#0#0#0#0#0#0#0#0#0#0#5 - +'y}'#17#0#160#196#255'v'#237#251#255'v'#237#251#255#0#160#196#255#0#160#196 - +#255#0#160#196#255#0#160#196#255#1#169#196#255'n'#225#238#255#15#201#223#255 - +'i'#228#242#255#26#164#192#248#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237 - +#251#255#4#195#218#255'v'#237#251#255'i'#234#249#255'i'#234#249#255'i'#234 - +#249#255'i'#234#249#255#5#221#247#255#10#200#223#255#7#194#216#255'o'#220#235 - +#255#27#163#191#244#0#0#0#0#5'y~'#17#0#160#196#255'y'#237#251#255'2'#226#248 - +#255','#223#244#255#4#192#214#255#4#192#214#255#4#192#214#255#29#210#232#255 - +#29#210#232#255#29#210#232#255#11#200#223#255'j'#229#243#255#27#171#197#248 - +#21#160#188#203#0#0#0#0#0#160#196#255#173#243#251#255'/'#224#246#255'2'#226 - +#248#255'2'#226#247#255'2'#226#247#255'/'#224#245#255')'#219#241#255#29#210 - +#232#255#29#210#232#255#29#210#232#255'6'#217#236#255'@'#205#225#255#22#161 - +#189#202#5'y}'#10#0#0#0#0#5'y}'#10#0#160#196#255#173#243#251#255'/'#224#246 - +#255'2'#226#247#255')'#219#241#255'/'#224#245#255')'#219#241#255#22#205#227 - +#255'6'#217#236#255'i'#231#246#255'A'#206#227#254#19#163#193#228#5'y}2'#0#0#0 - +#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255'1'#225#246#255' ' - +#227#250#255's'#236#250#255'o'#235#250#255'n'#232#247#255'l'#232#247#248#20 - +#161#188#212#20#163#193#213#5'y}'#28#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#5'y}'#17#0#160#196#255#173#243#251#255'%'#228#251#255#0#160#196#255#0#160 - +#196#255#19#161#190#231#21#159#187#207#27#161#187#164#6'z|'#11#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251 - +#255#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#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#157#191#20#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'OnClick' - +#7#17'ActionUndoExecute'#0#0#9'TMenuItem'#13'PopupItemRedo'#6'Action'#7#10'A' - +'ctionRedo'#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#0#0#0#0#0#160#196#24#26#167#196'i'#24#166#195'i'#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#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#0#0#0#0#0#0#0#0#0#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#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#17#162#194#255#136#231#242#254#2#172#200 - +#255#0#158#193#26#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#0#0#0#255#255#255#0#25#163#193#255'v'#226 - +#239#255'm'#230#245#255#0#160#196#201#0#153#185'P'#0#160#196'0'#0#0#0#0#0#0#0 - +#0#0#160#196#255'v'#237#251#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#0#0#0 - +#0#255#255#255#0#26#164#192#248'i'#228#242#255#15#201#223#255'n'#225#238#255 - +#1#169#196#255#0#160#196#255#0#160#196#255#0#160#196#255#0#160#196#255'v'#237 - +#251#255'v'#237#251#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#255#255#255#0 - +#27#163#191#244'o'#220#235#255#7#194#216#255#10#200#223#255#5#221#247#255'i' - +#234#249#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'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'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'#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'#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'%'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#160#196#255#173#243#251#255#0#160#196#255#5'y}'#17#0#0#0#0#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#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#157#191#20#0#0#0#0#0#0#0#0#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#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#7'OnClick'#7 - +#17'ActionRedoExecute'#0#0#9'TMenuItem'#17'PopupItemDivider1'#7'Caption'#6#1 - +'-'#0#0#9'TMenuItem'#12'PopupItemCut'#6'Action'#7#9'ActionCut'#11'Bitmap.Dat' - +'a'#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#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#255#255#255#0#255#255 - +#255#0#255#255#255#0#5#15#141#31#6#16#142'&'#1#11#138#3#255#255#255#0#18#28 - +#155'p@K'#217#255',5'#191#221'=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#15#25#151 - +'c2='#199#248'7A'#207#255#31')'#171#176#0#10#134#24'#-'#180#175'5@'#204#253#0 - +#9#133#24#28''''#168#149'4>'#197#248#4#14#140#20#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0'/:'#189#222'5?'#201#229'%0'#179 - +#194'?J'#221#255#31'*'#172#194'$0'#178#203'2<'#198#242#0#10#134#3#17#27#157 - +'w7A'#200#255#8#18#142' '#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'2<'#195#236'#.'#173#175#255#255#255#0#26'%'#168#153'BP' - +#210#255#203#163'u'#254'AO'#214#255#22'!'#163#157'/9'#192#212'.8'#190#223#2 - +#13#139#10#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#29'('#169#156';F'#204#255#8#18#144':'#7#17#144'S;H'#212#255#219#189 - +#156#255#238#204#166#255'@L'#222#255':C'#209#255#15#25#152'i'#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#3#13 - +#140#31',5'#185#215'<F'#207#255'3>'#202#242'?L'#215#255#216#188#154#255#246 - +#234#225#255#187#146'Z'#191#148'b'#24';'#145'a'#26#1#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 - +#3#13#140#31#27'&'#167#153'*4'#186#204#17#28#157#137#187#152'i'#204#240#224 - +#208#255#183#145'_'#197#143']'#20#11#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#11#136#2#255#255#255#0#180#142'Z'#144#246#234#221 - +#255#225#205#180#255#177#141']'#191#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#179#140'W'#137#241#226 - +#212#255#206#178#142#244#245#235#224#255#166#127'J'#157#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#177#137'S'#132#238 - +#223#206#255#151'f e'#194#163'|'#218#233#216#197#253#169#130'N{'#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#175#135'P|'#231#213#193 - +#255#149'e'#31'+'#143'\'#18#27#197#167#131#231#213#188#157#225#181#147'db' - +#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#172#131'Ku'#222#201#175 - +#255#149'd'#29#31#255#255#255#0#146'`'#23'&'#195#164'|'#235#181#144'c'#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#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#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#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'TMenuItem'#13'PopupItemCopy'#6'Acti' - +'on'#7#10'ActionCopy'#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#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'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#251#242#235#255#253#244#238#255 - +#202#128'T'#249#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#207#130'S'#255#239#241#231#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 - +#239#242#232#255#206#129'V'#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#204#131'R'#251#251#245#238#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#251#246#239#255#204#131'U'#254#199'yJ'#185#200'yK'#206#200'uE' - +#221#199'uE'#212#200'uE'#212#199'uE'#212#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#200'|N'#211#252#243#236#222 - +#250#241#232#222#250#240#231#222#251#241#233#222#251#242#234#222#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#207 - +#130'S'#222#239#241#231#222#255#233#217#222#255#234#219#222#255#233#217#222 - +#255#231#215#222#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#204#131'R'#219#251#245#238#222#255#233#217#222#255 - +#234#219#222#255#233#217#222#255#231#215#222#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#202#132'R'#219#255#247 - +#241#222#255#233#217#222#255#234#219#222#255#233#217#222#255#231#215#222#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#203#133'S'#219#255#247#240#222#255#231#213#222#253#231#214#222#253#230 - +#212#222#252#228#208#222#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#203#134'T'#219#255#247#242#222#254#231#213#222 - +#254#231#213#222#253#229#209#222#250#224#202#222#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#203#134'U'#219#254#247#241 - +#222#252#229#210#222#252#228#209#222#251#226#204#222#249#221#196#222#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#203#134'U'#219 - +#254#246#240#222#252#226#205#222#252#227#205#222#250#223#200#222#247#217#188 - +#222#245#233#221#222#250#243#235#222#251#248#243#222#205#149'e'#220#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#203#134'V'#218#254#245#237#222#252#222#197#222#251#224#199#222#249#220#194 - +#222#245#211#180#222#254#249#243#222#250#226#196#222#236#193#147#222#195'}H' - +#128#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#136#222#207#133'U' - +#156#180'i='#10#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'#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#7'OnClick'#7#17'ActionCopyExecute'#0#0#9'TMenuItem'#14'PopupI' - +'temPaste'#6'Action'#7#11'ActionPaste'#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'^^^'#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#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#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#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#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'#147#210#255'H'#143#208#255'J'#140#201 - +#255'o'#139#165#255#241#241#241#255#182#182#182#255#181#181#181#255#181#181 - +#181#255#180#180#180#255#180#180#180#255#180#180#180#255#237#237#237#250'SSS' - +#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#255#233#233#233 - +#255#232#232#232#255#232#232#232#255#232#232#232#255#231#231#231#255#237#237 - +#237#250'VVV'#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#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's'#183#225#255'W'#163#215#255'S' - +#160#215#255'P'#157#213#255'R'#153#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'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'h' - +'hh'#138'eee'#138'bbbc 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#255#255#255#0' c'#152#255'|'#189#228#255'e'#174#221#255'b'#171 - +#220#255'^'#168#218#255'\'#167#217#255'\'#167#217#255'\'#167#217#255'\'#167 - +#217#255'R'#159#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#127#191#228#255'i'#178#222#255'J' - +#155#218#255'D'#151#220#255'C'#150#220#255'B'#150#220#255'B'#149#220#255'A' - +#149#219#255'Q'#158#214#255'l'#178#222#255' c'#152#255#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0' c'#152#224'q'#179#219#254'~'#191#228#255 - +'N'#157#223#255#181#238#253#255'u'#212#240#255'u'#212#240#255#181#238#253#255 - +'K'#155#222#255'n'#180#224#255'm'#179#223#249' c'#152#243#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0' c'#152'2 c'#152#178' c'#152#255'7u' - +#164#255#182#239#254#255#128#219#243#255#128#219#243#255#182#239#254#255'.n' - +#161#255' c'#152#255' c'#152#165' c'#152'S'#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152'* c'#152#255' c' - +#152#255' c'#152#255' c'#152#255' c'#152#255' c'#152#240#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#7'OnClick'#7#18'ActionPasteExecute'#0#0#9'TMenuItem'#15'PopupItemDele' - +'te'#6'Action'#7#12'ActionDelete'#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#0#0#0#6#0#0#0#14 - +#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*'#0#0#0'+'#0#0#0')'#0#0#0'$'#0#0#0#29#0#0 - +#0#21#0#0#0#13#0#0#0#4#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0 - +#0#211'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#211'F'#0#0#255#1#255#255#255 - +#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0#206#150#0#0#206#255#0#0#206'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#206'x'#0#0#207#255#0#0#207#150#0#0#255#1#255#255#255#0#255#255 - +#255#0#0#0#200'F'#0#0#200#255#0#0#200#255#0#0#201#255#0#0#202'x'#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#202'x'#0#0#201#255#0#0#201 - +#255#0#0#201#255#0#0#200'F'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#193 - +'x'#0#0#195#255#0#0#195#255#0#0#195#255#0#0#196'x'#255#255#255#0#255#255#255 - +#0#0#0#196'x'#0#0#195#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#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#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#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#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#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#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#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#0#255#255#255#0#255#255#255#0#0#0#149'x'#0#0#148 - +#255#0#0#148#255#0#0#148#255#0#0#149'F'#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#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#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#7'OnClick'#7#19'ActionDeleteExecute'#0#0#9'TMenuItem'#17'PopupItemDiv' - +'ider2'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#18'PopupItemSelectAll'#6'Action'#7 - +#15'ActionSelectAll'#7'OnClick'#7#22'ActionSelectAllExecute'#0#0#9'TMenuItem' - +#17'PopupItemDivider3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#13'PopupItemFind'#6 - +'Action'#7#14'ActionFindNext'#7'OnClick'#7#21'ActionFindNextExecute'#0#0#9'T' - +'MenuItem'#16'PopupItemReplace'#6'Action'#7#13'ActionReplace'#7'Caption'#6#7 - +'Replace'#7'OnClick'#7#20'ActionReplaceExecute'#0#0#0#14'TReplaceDialog'#10 - +'dlgReplace'#7'Options'#11#6'frDown'#10'frFindNext'#12'frHideUpDown'#0#6'OnF' - +'ind'#7#14'dlgReplaceFind'#9'OnReplace'#7#17'dlgReplaceReplace'#4'left'#3#176 - +#2#0#0#0 -]); +{ This is an automatically generated lazarus resource file } + +LazarusResources.Add('TForm1','FORMDATA',[ + 'TPF0'#6'TForm1'#5'Form1'#4'Left'#3#139#1#6'Height'#3'-'#2#3'Top'#3#11#1#5'Wi' + +'dth'#3#222#2#13'ActiveControl'#7#11'ScriptPanel'#7'Caption'#6#17'THA FUKING' + +' MUFASA'#12'ClientHeight'#3#20#2#11'ClientWidth'#3#222#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' + +'r'#8'ToolBar1'#4'Left'#2#0#6'Height'#2#24#3'Top'#2#0#5'Width'#3#222#2#7'Cap' + +'tion'#6#8'ToolBar1'#6'Images'#7#17'Mufasa_Image_List'#14'ParentShowHint'#8#8 + +'ShowHint'#9#8'TabOrder'#2#0#0#11'TToolButton'#6'TB_Run'#4'Left'#2'`'#4'Hint' + +#6#3'Run'#3'Top'#2#2#6'Action'#7#15'ActionRunScript'#10'ImageIndex'#2#6#0#0 + +#11'TToolButton'#8'TB_Pause'#4'Left'#2'w'#4'Hint'#6#5'Pause'#3'Top'#2#2#6'Ac' + +'tion'#7#17'ActionPauseScript'#7'Enabled'#8#10'ImageIndex'#2#5#0#0#11'TToolB' + +'utton'#7'TB_Stop'#4'Left'#3#142#0#4'Hint'#6#4'Stop'#3'Top'#2#2#6'Action'#7 + +#16'ActionStopScript'#7'Enabled'#8#10'ImageIndex'#2#7#0#0#11'TToolButton'#11 + +'ToolButton1'#4'Left'#3#165#0#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolBu' + +'tton1'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButton'#9'TB_NewTab'#4'Left'#3 + +#168#0#4'Hint'#6#7'Add tab'#3'Top'#2#2#6'Action'#7#12'ActionNewTab'#0#0#11'T' + +'ToolButton'#11'TB_CloseTab'#4'Left'#3#191#0#4'Hint'#6#9'Close tab'#3'Top'#2 + +#2#6'Action'#7#14'ActionCloseTab'#0#0#11'TToolButton'#11'ToolButton4'#4'Left' + +#3#214#0#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolButton4'#5'Style'#7#10 + +'tbsDivider'#0#0#11'TToolButton'#13'TB_ClearDebug'#4'Left'#3#217#0#4'Hint'#6 + +#15'Clear debug box'#3'Top'#2#2#6'Action'#7#16'ActionClearDebug'#0#0#11'TToo' + +'lButton'#13'TB_PickColour'#4'Left'#3#240#0#4'Hint'#6#12'Pick a color'#3'Top' + +#2#2#7'Caption'#6#13'TB_PickColour'#10'ImageIndex'#2#0#7'OnClick'#7#15'Butto' + +'nPickClick'#0#0#11'TToolButton'#15'TB_SelectClient'#4'Left'#3#7#1#4'Hint'#6 + +#15'Select a client'#3'Top'#2#2#7'Caption'#6#15'TB_SelectClient'#10'ImageInd' + +'ex'#2#2#11'OnMouseDown'#7#18'ButtonSelectorDown'#0#0#11'TToolButton'#11'Too' + +'lButton8'#4'Left'#3#30#1#3'Top'#2#2#5'Width'#2#3#7'Caption'#6#11'ToolButton' + +'8'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButton'#10'TB_Convert'#4'Left'#3'!' + +#1#3'Top'#2#2#7'Caption'#6#10'TB_Convert'#7'Enabled'#8#10'ImageIndex'#2#1#0#0 + +#11'TToolButton'#16'TB_ReloadPlugins'#4'Left'#3'8'#1#4'Hint'#6#14'Reload plu' + +'gins'#3'Top'#2#2#7'Caption'#6#16'TB_ReloadPlugins'#7'Enabled'#8#10'ImageInd' + +'ex'#2#13#0#0#11'TToolButton'#7'TB_Tray'#4'Left'#3'O'#1#4'Hint'#6#16'Minimiz' + +'e to tray'#3'Top'#2#2#7'Caption'#6#7'TB_Tray'#10'ImageIndex'#2#17#7'OnClick' + +#7#15'ButtonTrayClick'#0#0#11'TToolButton'#6'TB_New'#4'Left'#2#1#4'Hint'#6#3 + +'New'#3'Top'#2#2#6'Action'#7#15'ActionNewScript'#14'ParentShowHint'#8#8'Show' + +'Hint'#9#0#0#11'TToolButton'#11'ToolButton2'#4'Left'#2']'#3'Top'#2#2#5'Width' + +#2#3#7'Caption'#6#11'ToolButton2'#5'Style'#7#10'tbsDivider'#0#0#11'TToolButt' + +'on'#7'TB_Open'#4'Left'#2#24#4'Hint'#6#4'Open'#3'Top'#2#2#6'Action'#7#16'Act' + +'ionOpenScript'#14'ParentShowHint'#8#8'ShowHint'#9#0#0#11'TToolButton'#7'TB_' + +'Save'#4'Left'#2'/'#4'Hint'#6#4'Save'#3'Top'#2#2#6'Action'#7#16'ActionSaveSc' + +'ript'#0#0#11'TToolButton'#10'TB_SaveAll'#4'Left'#2'F'#4'Hint'#6#8'Save all' + +#3'Top'#2#2#6'Action'#7#13'ActionSaveAll'#7'Enabled'#8#0#0#0#10'TStatusBar'#9 + +'StatusBar'#4'Left'#2#0#6'Height'#2#21#3'Top'#3#255#1#5'Width'#3#222#2#6'Pan' + +'els'#14#1#5'Width'#2'<'#0#1#4'Text'#6#8'Untitled'#5'Width'#3#150#0#0#1#5'Wi' + +'dth'#2'2'#0#0#11'SimplePanel'#8#0#0#6'TPanel'#9'PanelMemo'#4'Left'#2#0#6'He' + +'ight'#3#154#0#3'Top'#3'e'#1#5'Width'#3#222#2#5'Align'#7#8'alBottom'#12'Clie' + +'ntHeight'#3#154#0#11'ClientWidth'#3#222#2#8'TabOrder'#2#2#0#5'TMemo'#5'Memo' + +'1'#4'Left'#2#1#6'Height'#3#152#0#3'Top'#2#1#5'Width'#3#220#2#5'Align'#7#8'a' + +'lClient'#10'ScrollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#0#9'TSplitter' + +#19'SplitterMemoSynedit'#6'Cursor'#7#8'crVSplit'#4'Left'#2#0#6'Height'#2#5#3 + +'Top'#3'`'#1#5'Width'#3#222#2#5'Align'#7#8'alBottom'#12'ResizeAnchor'#7#8'ak' + +'Bottom'#0#0#6'TPanel'#11'ScriptPanel'#4'Left'#2#0#6'Height'#3'H'#1#3'Top'#2 + +#24#5'Width'#3#222#2#5'Align'#7#8'alClient'#10'BevelOuter'#7#6'bvNone'#12'Cl' + +'ientHeight'#3'H'#1#11'ClientWidth'#3#222#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'#3#150#0#6'Height'#3'%'#1#3 + +'Top'#2#0#5'Width'#3'H'#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'PageCont' + +'rol1Change'#10'OnChanging'#7#20'PageControl1Changing'#14'OnContextPopup'#7 + +#24'PageControl1ContextPopup'#10'OnDragDrop'#7#20'PageControl1DragDrop'#10'O' + +'nDragOver'#7#20'PageControl1DragOver'#11'OnMouseDown'#7#21'PageControl1Mous' + +'eDown'#9'OnMouseUp'#7#19'PageControl1MouseUp'#13'OnPageChanged'#7#18'PageCo' + +'ntrol1Change'#0#0#6'TPanel'#11'SearchPanel'#4'Left'#2#0#6'Height'#2'#'#3'To' + ,'p'#3'%'#1#5'Width'#3#222#2#5'Align'#7#8'alBottom'#10'BevelOuter'#7#7'bvSpac' + +'e'#12'ClientHeight'#2'#'#11'ClientWidth'#3#222#2#8'TabOrder'#2#1#7'Visible' + +#8#0#12'TSpeedButton'#17'SpeedButtonSearch'#4'Left'#2' '#6'Height'#2#19#3'To' + +'p'#2#7#5'Width'#2#16#5'Color'#7#9'clBtnFace'#4'Flat'#9#10'Glyph.Data'#10':' + +#9#0#0'6'#9#0#0'BM6'#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#24#0#0#0#24#0#0#0#1#0' ' + +#0#0#0#0#0#0#9#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#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#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#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#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 + +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0 + +#0#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#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255 + +#0#0#0#255#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#255#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#255#0#0#0#255#0#0#0#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#22'SpeedButto' + +'nSearchClick'#0#0#12'TLabeledEdit'#17'LabeledEditSearch'#4'Left'#2'h'#6'Hei' + +'ght'#2#27#3'Top'#2#6#5'Width'#3#174#0' EditLabel.AnchorSideLeft.Control'#7 + +#17'LabeledEditSearch'#31'EditLabel.AnchorSideTop.Control'#7#17'LabeledEditS' + +'earch'#28'EditLabel.AnchorSideTop.Side'#7#9'asrCenter!EditLabel.AnchorSideR' + +'ight.Control'#7#17'LabeledEditSearch"EditLabel.AnchorSideBottom.Control'#7 + +#17'LabeledEditSearch'#14'EditLabel.Left'#2'C'#16'EditLabel.Height'#2#18#13 + +'EditLabel.Top'#2#10#15'EditLabel.Width'#2'"'#17'EditLabel.Caption'#6#6'Find' + +': '#21'EditLabel.ParentColor'#8#13'LabelPosition'#7#6'lpLeft'#8'TabOrder'#2 + +#0#8'OnChange'#7#16'EditSearchChange'#7'OnEnter'#7#22'LabeledEditSearchEnter' + +#6'OnExit'#7#21'LabeledEditSearchExit'#9'OnKeyDown'#7#24'LabeledEditSearchKe' + +'yDown'#10'OnKeyPress'#7#25'LabeledEditSearchKeyPress'#0#0#9'TCheckBox'#17'C' + +'heckBoxMatchCase'#4'Left'#3'@'#1#6'Height'#2#22#3'Top'#2#7#5'Width'#2'a'#7 + +'Caption'#6#10'Match case'#7'OnClick'#7#22'CheckBoxMatchCaseClick'#8'TabOrde' + +'r'#2#1#0#0#0#9'TSplitter'#9'Splitter1'#4'Left'#3#145#0#6'Height'#3'%'#1#3'T' + +'op'#2#0#5'Width'#2#5#11'OnCanResize'#7#18'Splitter1CanResize'#7'Visible'#8#0 + +#0#244#18'TFunctionListFrame'#15'frmFunctionList'#6'Height'#3'%'#1#5'Width'#3 + +#145#0#12'ClientHeight'#3'%'#1#11'ClientWidth'#3#145#0#8'TabOrder'#2#3#7'Vis' + +'ible'#8#0#241#9'TTreeView'#12'FunctionList'#6'Height'#3#10#1#5'Width'#3#145 + +#0#17'DefaultItemHeight'#2#19#8'OnChange'#7#18'FunctionListChange'#10'OnDele' + +'tion'#13#7'OnEnter'#7#17'FunctionListEnter'#6'OnExit'#7#16'FunctionListExit' + +#0#0#241#5'TEdit'#14'editSearchList'#6'Height'#2#27#3'Top'#3#10#1#5'Width'#3 + +#145#0#6'OnExit'#7#18'editSearchListExit'#10'OnKeyPress'#7#22'editSearchList' + +'KeyPress'#0#0#0#0#9'TMainMenu'#9'MainMenu1'#4'left'#3#16#2#0#9'TMenuItem'#8 + +'MenuFile'#7'Caption'#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'Ca' + +'ption'#6#1'-'#0#0#9'TMenuItem'#12'MenuItemOpen'#6'Action'#7#16'ActionOpenSc' + +'ript'#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#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'TMenuItem'#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'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'ActionSaveScriptAs'#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'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#195#127'Q'#201#239#182#154#201#204#150'o'#248#214#182#145#248#200 + +#136']'#255#239#191#161#255#253#252#250#255#254#252#251#255#254#253#253#255 + +#254#253#252#255#253#251#250#255#253#252#251#255#221#168#133#255#193#127'S' + +#255#255#255#255#0#255#255#255#0#196#129'T'#201#234#182#151#201#206#152's' + +#248#234#190#161#248#199#134'['#255#239#192#158#255#255#255#255#255#204#147 + +'n'#255#255#255#255#255#255#255#255#255#255#251#247#255#255#248#241#255#228 + +#175#140#255#199#138'a'#255#255#255#255#0#255#255#255#0#201#139'a'#201#230 + +#181#146#201#203#139'a'#248#238#188#158#248#204#141'e'#255#243#205#176#255 + +#255#255#255#255#227#199#179#255#255#255#255#255#255#255#255#255#255#255#255 + +#255#255#255#255#255#234#191#161#255#201#137'`'#255#255#255#255#0#255#255#255 + +#0#202#141'e'#201#234#184#153#201#201#137'_'#248#237#189#155#248#212#151'n' + +#255#212#158'{'#255#208#152'q'#255#214#164#130#255#205#142'h'#255#205#144'i' + +#255#208#154'u'#255#209#153's'#255#200#139'b'#255#173'Z 6'#255#255#255#0#255 + +#255#255#0#200#136']'#201#239#191#161#201#209#153'u'#248#244#210#184#248#255 + +#255#255#248#230#205#187#248#255#255#254#248#255#255#255#248#251#246#242#248 + +#248#241#237#248#234#191#161#222#201#137'`'#222#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#199#134'['#201#239#192#158#201#217#162'}'#248 + +#211#157'z'#248#213#163#128#248#218#174#143#248#210#154'w'#248#210#155'w'#248 + +#210#156'w'#248#208#151'q'#248#200#139'b'#222#173'Z /'#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#204#141'e'#201#243#205#176#201#255#255#255 + +#201#227#199#179#201#255#255#255#201#255#255#255#201#255#255#255#201#255#255 + +#255#201#234#191#161#201#201#137'`'#201#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#212#151'n'#201#212#158'{' + +#201#208#152'q'#201#214#164#130#201#205#142'h'#201#205#144'i'#201#208#154'u' + +#201#209#153's'#201#200#139'b'#201#173'Z +'#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#7'OnClick'#7#20'ActionSaveAllExecute' + +#0#0#9'TMenuItem'#16'MenuItemDivider2'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#14 + +'MenuItemNewTab'#6'Action'#7#12'ActionNewTab'#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#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#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'~'#2#231#14'~'#2#231'='#226','#255#14'~'#2#231#14'~'#2#231#11 + +'_'#2#176'''''''{'#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#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#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'.'#255'u'#238'd'#255'>'#177'.' + +#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'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#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#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#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#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#253#253#253#255'QQQhUUUg'#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#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#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'f' + +'RRR['#198#198#198#212#220#220#220#255#216#217#217#255#213#213#213#255#208 + +#209#209#255#204#204#204#255#200#200#200#255#198#198#198#255#198#197#197#255 + +#201#197#197#255#205#198#198#255#209#199#199#255#215#203#203#255#196#184#184 + +#212'RRR[UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"' + +#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 + +#7'OnClick'#7#19'ActionNewTabExecute'#0#0#9'TMenuItem'#16'MenuItemCloseTab'#6 + +'Action'#7#14'ActionCloseTab'#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#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#0#0#0#26#0#0#0#26#0#0#0#26#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#4#4'['#207#2#2's'#231#2 + +#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2'X'#176'''''''{'#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'//'#167#255'^^'#247#255'^^'#247#255 + +'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#229'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'[['#190#255'--'#179#255'--'#179#255'--'#179 + +#255'--'#179#255'//'#181#255#17#17#129#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#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#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#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#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'IIIlMMM' + +'j'#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#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#252#252#255#253#253 + +#253#255'QQQhUUUg'#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#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#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#200#200#200#255#198 + +#198#198#255#198#197#197#255#201#197#197#255#205#198#198#255#209#199#199#255 + +#215#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUU' + +'fUUUfUUUfUUUfUUUfUUUYUUU"'#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#7'OnClick'#7#21'ActionCloseTabExecute'#0#0#9'TMenuI' + +'tem'#17'MenuItemCloseTabs'#7'Caption'#6#14'Close all tabs'#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#10#0#0#0#24 + +#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#0#0#0#25#0#0#0#11#0#0#0#0#0#0'w'#0#0#0#128#0#17#17#17'e'#20#20#20#131 + +#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20 + +#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#17#17#17'e'#0#0'Z'#0 + +#0#0'w'#0#0#0#128#0'---x'#236#236#236#255#232#232#232#255#232#232#232#255#232 + +#232#232#255#232#232#232#255#232#232#232#255#232#232#232#255#232#232#232#255 + +'__'#173#255'//'#149#255'00'#150#255#5#5'w'#228#0#0#128#204#0#0#128#204#0#0 + +#132#153'666t'#235#235#235#255#228#228#228#255#228#228#228#255#228#228#228 + +#255#228#228#228#255#228#228#228#255#228#228#228#255#228#228#228#255'..'#167 + +#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#0#0#152#204 + +'===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'EEEn'#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'eKKKk'#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#246#246#255#246#246#246 + +#255#248#248#248#255#166#166#166#255#232#232#232#255#236#236#236#255'---xPPP' + +'i'#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#255#251 + +#251#251#255#252#252#252#255#168#168#168#255#228#228#228#255#235#235#235#255 + +'666tTTTg'#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#174#174#174#255#234#234#234#255#239#239 + +#239#255'===qPPPi'#187#187#187#255#185#185#185#255#182#182#182#255#180#180 + +#180#255#176#176#176#255#173#173#173#255#169#169#169#255#166#166#166#255#162 + +#162#162#255#160#160#160#255#157#157#157#255#145#145#145#255#240#240#240#255 + +#244#244#244#255'EEEnRRR['#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#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'PPP' + +'iUUU'#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#255#185#185#185#255#182#182#182#255#180#180#180#255#176 + +#176#176#255#173#173#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[TTT'#0'TTT'#0'TTT'#0'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUU' + +'UfUUUfUUUfUUUYUUU"'#10'ImageIndex'#2#20#7'OnClick'#7#22'MenuItemCloseTabsCl' + +'ick'#0#0#9'TMenuItem'#16'MenuItemDivider6'#7'Caption'#6#1'-'#0#0#9'TMenuIte' + +'m'#16'MenuItemMainExit'#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#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'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'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#255#255#0#255#255#255#0'\\\'#255#161#161#161#255'<s@'#255#160#161 + +#161#255#163#163#163#255#163#163#163#255#164#164#164#255'6t'#170#255'}'#175 + +#212#255'['#154#201#255'T'#149#199#255'X'#150#200#255'A'#128#174#255#19'\' + +#148#234#255#255#255#0#255#255#255#0'```'#255#160#160#160#255'=vA'#255'6q9' + +#255#162#162#162#255#162#162#162#255#163#163#163#255'=y'#176#255#130#179#215 + +#255'b'#159#204#255'Z'#154#201#255'^'#155#202#255'C'#129#175#255#25'`'#152 + +#234'7'#130'>'#255'4~;'#255'1y7'#255'.u4'#255'I'#145'P'#255'F'#143'L'#255'9s' + +'='#255#161#161#161#255#162#162#162#255'E~'#180#255#136#183#217#255'g'#163 + +#207#255'a'#158#204#255'c'#159#204#255'E'#131#177#255#31'd'#156#234';'#135'B' + +#255#137#203#146#255#132#200#141#255#128#198#136#255'{'#195#131#255'w'#193 + +#127#255'G'#143'M'#255';t?'#255#161#161#161#255'L'#132#186#255#141#187#219 + +#255'n'#168#209#255'f'#166#209#255'_'#180#223#255'G'#133#177#255'%i'#161#234 + +'>'#139'F'#255#143#206#153#255'}'#198#135#255'x'#195#129#255's'#192'|'#255't' + +#192'|'#255'y'#194#129#255'I'#144'O'#255'T'#127'W'#255'T'#137#191#255#148#191 + +#221#255'u'#173#212#255'c'#184#225#255'K'#212#255#255'B'#139#184#255',n'#166 + +#234'A'#144'J'#255#148#210#159#255#145#208#154#255#141#205#150#255#137#203 + +#146#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159#159#255'Z'#142#196 + +#255#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196#237#255'K'#136#179 + +#255'4s'#171#234'D'#148'M'#255'B'#145'K'#255'?'#141'H'#255'='#137'E'#255']' + +#164'e'#255'Z'#160'a'#255'E'#131'K'#255#158#158#158#255#158#158#158#255'`' + +#146#201#255#158#199#226#255#131#184#218#255'}'#180#215#255'~'#179#215#255'O' + +#137#180#255';y'#177#234#255#255#255#0#255#255#255#0'www'#255#154#154#154#255 + +'='#138'E'#255'I'#138'O'#255#156#156#156#255#157#157#157#255#157#157#157#255 + +'f'#150#204#255#162#203#227#255#137#189#220#255#131#185#218#255#132#185#218 + +#255'Q'#139#181#255'C~'#182#234#255#255#255#0#255#255#255#0'zzz'#255#153#153 + +#153#255'R'#145'Y'#255#153#154#153#255#155#155#155#255#156#156#156#255#156 + +#156#156#255'l'#154#208#255#167#206#229#255#143#193#223#255#137#189#220#255 + +#139#189#220#255'S'#141#182#255'K'#132#188#234#255#255#255#0#255#255#255#0'}' + +'}}'#255#153#153#153#255#153#153#153#255#154#154#154#255#154#154#154#255#155 + +#155#155#255#155#155#155#255'o'#157#211#255#170#209#231#255#171#209#231#255 + +#152#199#225#255#145#194#222#255'V'#143#183#255'R'#137#193#234#255#255#255#0 + +#255#255#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255'www'#255'uuu'#255 + +'rrr'#255'q'#158#212#255'o'#158#214#255#135#178#220#255#171#211#232#255#169 + +#208#230#255'X'#144#184#255'Y'#142#198#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#255#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0'p'#158#214#219'm'#156#212 + +#255#133#177#218#255'Z'#145#185#255'`'#147#203#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#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'm'#156#212#137'j'#154#210#251'f'#151#207#238#7'OnClick'#7#17'ActionEx' + +'itExecute'#0#0#0#9'TMenuItem'#8'MenuEdit'#7'Caption'#6#5'&Edit'#13'SubMenuI' + +'mages'#7#17'Mufasa_Image_List'#7'OnClick'#7#13'MenuEditClick'#0#9'TMenuItem' + +#12'MenuItemUndo'#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' '#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#0#0#0#0#0 + +#0#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#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#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#0#0#5'y}'#17 + +#0#160#196#255'v'#237#251#255#0#160#196#255#0#0#0#0#0#0#0#0#0#160#196'0'#0 + +#153#185'P'#0#160#196#201'm'#230#245#255'v'#226#239#255#25#163#193#255#0#0#0 + +#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237#251#255'v'#237#251#255#0#160 + +#196#255#0#160#196#255#0#160#196#255#0#160#196#255#1#169#196#255'n'#225#238 + +#255#15#201#223#255'i'#228#242#255#26#164#192#248#0#0#0#0#0#0#0#0#5'y}'#17#0 + +#160#196#255'v'#237#251#255#4#195#218#255'v'#237#251#255'i'#234#249#255'i' + +#234#249#255'i'#234#249#255'i'#234#249#255#5#221#247#255#10#200#223#255#7#194 + +#216#255'o'#220#235#255#27#163#191#244#0#0#0#0#5'y~'#17#0#160#196#255'y'#237 + +#251#255'2'#226#248#255','#223#244#255#4#192#214#255#4#192#214#255#4#192#214 + +#255#29#210#232#255#29#210#232#255#29#210#232#255#11#200#223#255'j'#229#243 + +#255#27#171#197#248#21#160#188#203#0#0#0#0#0#160#196#255#173#243#251#255'/' + +#224#246#255'2'#226#248#255'2'#226#247#255'2'#226#247#255'/'#224#245#255')' + +#219#241#255#29#210#232#255#29#210#232#255#29#210#232#255'6'#217#236#255'@' + +#205#225#255#22#161#189#202#5'y}'#10#0#0#0#0#5'y}'#10#0#160#196#255#173#243 + +#251#255'/'#224#246#255'2'#226#247#255')'#219#241#255'/'#224#245#255')'#219 + +#241#255#22#205#227#255'6'#217#236#255'i'#231#246#255'A'#206#227#254#19#163 + +#193#228#5'y}2'#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251 + +#255'1'#225#246#255' '#227#250#255's'#236#250#255'o'#235#250#255'n'#232#247 + +#255'l'#232#247#248#20#161#188#212#20#163#193#213#5'y}'#28#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255'%'#228#251#255 + +#0#160#196#255#0#160#196#255#19#161#190#231#21#159#187#207#27#161#187#164#6 + +'z|'#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0 + +#160#196#255#173#243#251#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#157 + +#191#20#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#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#7'OnClick'#7#17'ActionUndoExecute'#0#0#9'TMenuItem'#12'MenuItem' + +'Redo'#6'Action'#7#10'ActionRedo'#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#0#0#0#0#0#160#196#24#26#167#196 + +'i'#24#166#195'i'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#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#0#0#0#0#0#0#0#0#0#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#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#17#162#194#255#136 + +#231#242#254#2#172#200#255#0#158#193#26#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#0#0#0#255#255#255#0 + +#25#163#193#255'v'#226#239#255'm'#230#245#255#0#160#196#201#0#153#185'P'#0 + +#160#196'0'#0#0#0#0#0#0#0#0#0#160#196#255'v'#237#251#255#0#160#196#255#5'y}' + +#17#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#26#164#192#248'i'#228#242#255#15 + +#201#223#255'n'#225#238#255#1#169#196#255#0#160#196#255#0#160#196#255#0#160 + +#196#255#0#160#196#255'v'#237#251#255'v'#237#251#255#0#160#196#255#5'y}'#17#0 + +#0#0#0#0#0#0#0#255#255#255#0#27#163#191#244'o'#220#235#255#7#194#216#255#10 + +#200#223#255#5#221#247#255'i'#234#249#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'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'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'#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'#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'%'#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#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#173#243#251#255#0#160#196#255#5'y}' + +#17#0#0#0#0#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#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#157#191#20#0#0#0#0 + +#0#0#0#0#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#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#7'OnClick'#7#17'ActionRedoExecute'#0#0#9'TMenuItem'#16'MenuItem' + +'Divider3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#11'MenuItemCut'#6'Action'#7#9 + +'ActionCut'#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#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 + +#255#255#255#0#255#255#255#0#255#255#255#0#5#15#141#31#6#16#142'&'#1#11#138#3 + +#255#255#255#0#18#28#155'p@K'#217#255',5'#191#221'=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#15#25#151'c2='#199#248'7A'#207#255#31')'#171#176#0#10#134#24'#-' + +#180#175'5@'#204#253#0#9#133#24#28''''#168#149'4>'#197#248#4#14#140#20#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'/:'#189 + +#222'5?'#201#229'%0'#179#194'?J'#221#255#31'*'#172#194'$0'#178#203'2<'#198 + +#242#0#10#134#3#17#27#157'w7A'#200#255#8#18#142' '#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0'2<'#195#236'#.'#173#175#255#255 + +#255#0#26'%'#168#153'BP'#210#255#203#163'u'#254'AO'#214#255#22'!'#163#157'/9' + +#192#212'.8'#190#223#2#13#139#10#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#29'('#169#156';F'#204#255#8#18#144':'#7#17#144 + +'S;H'#212#255#219#189#156#255#238#204#166#255'@L'#222#255':C'#209#255#15#25 + +#152'i'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#3#13#140#31',5'#185#215'<F'#207#255'3>'#202#242'?L'#215#255 + +#216#188#154#255#246#234#225#255#187#146'Z'#191#148'b'#24';'#145'a'#26#1#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#3#13#140#31#27'&'#167#153'*4'#186#204#17#28#157#137#187 + +#152'i'#204#240#224#208#255#183#145'_'#197#143']'#20#11#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#11#136#2#255#255#255#0#180#142 + +'Z'#144#246#234#221#255#225#205#180#255#177#141']'#191#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#179 + +#140'W'#137#241#226#212#255#206#178#142#244#245#235#224#255#166#127'J'#157 + +#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#177#137'S'#132#238#223#206#255#151'f e'#194#163'|'#218#233#216#197#253 + +#169#130'N{'#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 + +#175#135'P|'#231#213#193#255#149'e'#31'+'#143'\'#18#27#197#167#131#231#213 + +#188#157#225#181#147'db'#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 + +#172#131'Ku'#222#201#175#255#149'd'#29#31#255#255#255#0#146'`'#23'&'#195#164 + +'|'#235#181#144'c'#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#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#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#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'TMenuItem' + +#12'MenuItemCopy'#6'Action'#7#10'ActionCopy'#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#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'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#251#242#235 + +#255#253#244#238#255#202#128'T'#249#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#207#130'S'#255#239#241#231#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#239#242#232#255#206#129'V'#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#204#131'R'#251#251 + +#245#238#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#251#246#239#255#204#131'U'#254#199'yJ'#185 + +#200'yK'#206#200'uE'#221#199'uE'#212#200'uE'#212#199'uE'#212#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#200'|N' + +#211#252#243#236#222#250#241#232#222#250#240#231#222#251#241#233#222#251#242 + +#234#222#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#207#130'S'#222#239#241#231#222#255#233#217#222#255#234#219 + +#222#255#233#217#222#255#231#215#222#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#204#131'R'#219#251#245#238#222 + +#255#233#217#222#255#234#219#222#255#233#217#222#255#231#215#222#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#202 + +#132'R'#219#255#247#241#222#255#233#217#222#255#234#219#222#255#233#217#222 + +#255#231#215#222#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#203#133'S'#219#255#247#240#222#255#231#213#222#253 + +#231#214#222#253#230#212#222#252#228#208#222#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#203#134'T'#219#255#247#242 + +#222#254#231#213#222#254#231#213#222#253#229#209#222#250#224#202#222#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#203 + +#134'U'#219#254#247#241#222#252#229#210#222#252#228#209#222#251#226#204#222 + +#249#221#196#222#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#203#134'U'#219#254#246#240#222#252#226#205#222#252#227#205#222#250#223 + +#200#222#247#217#188#222#245#233#221#222#250#243#235#222#251#248#243#222#205 + +#149'e'#220#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0#203#134'V'#218#254#245#237#222#252#222#197#222#251#224 + +#199#222#249#220#194#222#245#211#180#222#254#249#243#222#250#226#196#222#236 + +#193#147#222#195'}H'#128#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 + +#136#222#207#133'U'#156#180'i='#10#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' + +#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#7'OnClick'#7#17'ActionCopyExecute'#0#0#9 + +'TMenuItem'#13'MenuItemPaste'#6'Action'#7#11'ActionPaste'#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'^^^'#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#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#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#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#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'#147#210#255'H'#143#208 + +#255'J'#140#201#255'o'#139#165#255#241#241#241#255#182#182#182#255#181#181 + +#181#255#181#181#181#255#180#180#180#255#180#180#180#255#180#180#180#255#237 + +#237#237#250'SSS'#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 + +#255#233#233#233#255#232#232#232#255#232#232#232#255#232#232#232#255#231#231 + +#231#255#237#237#237#250'VVV'#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#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's'#183#225#255'W' + +#163#215#255'S'#160#215#255'P'#157#213#255'R'#153#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'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'#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#255#255#255#0' c'#152#255'|'#189#228#255'e'#174#221 + +#255'b'#171#220#255'^'#168#218#255'\'#167#217#255'\'#167#217#255'\'#167#217 + +#255'\'#167#217#255'R'#159#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#127#191#228#255'i'#178 + +#222#255'J'#155#218#255'D'#151#220#255'C'#150#220#255'B'#150#220#255'B'#149 + +#220#255'A'#149#219#255'Q'#158#214#255'l'#178#222#255' c'#152#255#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152#224'q'#179#219#254'~' + +#191#228#255'N'#157#223#255#181#238#253#255'u'#212#240#255'u'#212#240#255#181 + +#238#253#255'K'#155#222#255'n'#180#224#255'm'#179#223#249' c'#152#243#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152'2 c'#152#178' c'#152 + +#255'7u'#164#255#182#239#254#255#128#219#243#255#128#219#243#255#182#239#254 + +#255'.n'#161#255' c'#152#255' c'#152#165' c'#152'S'#255#255#255#0#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152'* c'#152 + +#255' c'#152#255' c'#152#255' c'#152#255' c'#152#255' c'#152#240#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#7'OnClick'#7#18'ActionPasteExecute'#0#0#9'TMenuItem'#14'MenuItemD' + +'elete'#6'Action'#7#12'ActionDelete'#11'Bitmap.Data'#10':'#4#0#0'6'#4#0#0'BM' + +'6'#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#0#0#0#6#0#0 + +#0#14#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*'#0#0#0'+'#0#0#0')'#0#0#0'$'#0#0#0#29 + +#0#0#0#21#0#0#0#13#0#0#0#4#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255 + +#1#0#0#211'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#211'F'#0#0#255#1#255#255 + +#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0#206#150#0#0#206#255#0#0#206 + +'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#206'x'#0#0#207#255#0#0#207#150#0#0#255#1#255#255#255#0#255#255 + +#255#0#0#0#200'F'#0#0#200#255#0#0#200#255#0#0#201#255#0#0#202'x'#255#255#255 + +#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#202'x'#0#0#201#255#0#0#201 + +#255#0#0#201#255#0#0#200'F'#255#255#255#0#255#255#255#0#255#255#255#0#0#0#193 + +'x'#0#0#195#255#0#0#195#255#0#0#195#255#0#0#196'x'#255#255#255#0#255#255#255 + +#0#0#0#196'x'#0#0#195#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#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#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#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#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#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#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#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#0#255#255#255#0#255#255#255#0#0#0#149'x'#0#0#148 + +#255#0#0#148#255#0#0#148#255#0#0#149'F'#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#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#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#7'OnClick'#7#19'ActionDeleteExecute'#0#0#9'TMenuItem'#16'MenuItemDivi' + +'der4'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#17'MenuItemSelectAll'#6'Action'#7 + +#15'ActionSelectAll'#7'OnClick'#7#22'ActionSelectAllExecute'#0#0#9'TMenuItem' + +#16'MenuItemDivider5'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#12'MenuItemFind'#6 + +'Action'#7#15'ActionFindStart'#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#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1' '#2#2#2#207#20#20#20 + +#255'999'#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239#21#21#21#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#0#0 + +#0#1#1#1'0'#2#2#2#239#21#21#21#255';;;'#255'```'#255#128#128#128#207#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2 + +#2#239#21#21#21#255';;;'#255'aaa'#255#129#129#129#207#140#140#140#16#0#0#0#0 + +#0#0#0#0#0#0#0#0#140#140#140'P'#140#140#140#159#140#140#140#191#140#140#140 + +#191#140#140#140#143'TTTP'#2#2#2#239#22#22#22#255';;;'#255'aaa'#255#129#129 + +#129#207#140#140#140#16#0#0#0#0#0#0#0#0#140#140#140#16#140#140#140#191#140 + +#140#140#255#162#159#154#255#190#182#171#255#183#176#165#255#154#152#148#255 + +#140#140#140#255'```'#255'<<<'#255'aaa'#255#129#129#129#207#140#140#140#16#0 + +#0#0#0#0#0#0#0#140#140#140#16#140#140#140#207#162#159#156#255#233#223#207#255 + +#255#240#218#255#255#238#213#255#255#236#208#255#255#235#204#255#219#204#181 + +#255#147#146#144#255'|||'#255#129#129#129#207#140#140#140#16#0#0#0#0#0#0#0#0 + +#0#0#0#0#140#140#140#128#147#147#146#255#241#232#220#255#255#244#227#255#255 + +#242#222#255#255#240#217#255#255#238#213#255#255#236#208#255#255#235#204#255 + +#219#204#181#255#140#140#140#255#140#140#140'P'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#140#140#140#239#190#188#183#255#255#247#236#255#255#245#231#255#255#244 + +#226#255#255#242#222#255#255#240#217#255#255#238#213#255#255#236#208#255#255 + +#235#203#255#162#158#151#255#140#140#140#175#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#140#140#140#255#226#223#218#255#255#249#240#255#255#247#235#255#255#245#231 + +#255#255#244#226#255#255#242#221#255#255#240#217#255#255#238#212#255#255#236 + +#208#255#198#187#172#255#140#140#140#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140 + +#140#140#255#226#224#221#255#255#251#244#255#255#249#240#255#255#247#235#255 + +#255#245#230#255#255#243#226#255#255#242#221#255#255#240#217#255#255#238#212 + +#255#198#188#174#255#140#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#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#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#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#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#7'On' + +'Click'#7#22'ActionFindstartExecute'#0#0#9'TMenuItem'#16'MenuItemFindNext'#6 + +'Action'#7#14'ActionFindNext'#7'OnClick'#7#21'ActionFindNextExecute'#0#0#9'T' + +'MenuItem'#15'MenuItemReplace'#6'Action'#7#13'ActionReplace'#7'OnClick'#7#20 + +'ActionReplaceExecute'#0#0#0#9'TMenuItem'#14'MenuItemScript'#7'Caption'#6#7 + +'&Script'#13'SubMenuImages'#7#17'Mufasa_Image_List'#0#9'TMenuItem'#11'MenuIt' + +'emRun'#6'Action'#7#15'ActionRunScript'#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#4's:'#255'!'#130'O' + +#255'c'#130'r'#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#4's:'#255'z'#207#164#255',' + +#140'Z'#255'=vY'#255#174#174#174#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#4's:'#255#130#216#172#255'v' + +#214#166#255'<'#157'j'#255'''tL'#255#172#174#173#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#9'w?'#255#131#219 + +#174#255#31#198'q'#255'r'#222#167#255'K'#178#127#255#23'tE'#255#168#173#170 + +#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 + +#4's:'#255#131#220#175#255#17#195'i'#255#26#204's'#255'i'#223#163#255'Z'#194 + +#141#255#19'vC'#255#158#167#163#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#4's:'#255#169#220#193#255#16#189'e'#255#17#193'g'#255 + +#19#194'i'#255'Y'#211#149#255'g'#201#152#255#22'|G'#255#136#156#146#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#4's:'#255#169#220#193#255 + +#13#179'^'#255#14#182'`'#255#14#182'`'#255#13#180'_'#255'G'#196#132#255'p' + +#202#156#255#29#130'M'#255'g'#140'y'#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#4's:'#255#169#220#193#255#12#170'X'#255#18#174'^'#255#21#175'`' + +#255#22#173'a'#255#19#170']'#255':'#182'w'#255'u'#199#157#255'('#137'W'#255 + +'N'#131'g'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255#169#220#193 + +#255'.'#173'k'#255'+'#173'j'#255''''#171'h'#255'"'#169'd'#255#28#165'_'#255 + +'A'#178'x'#255'x'#198#159#255')'#136'X'#255'g'#140'y'#255#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#4's:'#255#169#220#193#255'6'#173'p'#255'2'#172'm'#255'-' + +#170'j'#255'('#168'f'#255'X'#188#137#255'x'#197#157#255#31#128'N'#255#131#154 + +#142#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#4's:'#255#169#220 + +#193#255'>'#177'v'#255':'#175's'#255'6'#174'p'#255'o'#197#152#255'q'#191#151 + +#255#24'{I'#255#166#176#171#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#4's:'#255#169#220#193#255'E'#180'{'#255'G'#180'|'#255#130#204#166 + +#255'g'#182#140#255#23'wE'#255#193#197#195#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#4's:'#255#165#218#191#255'W'#187#135#255 + +#144#210#176#255'['#171#130#255'#wL'#255#212#213#212#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#4's:'#255#169#220#193 + +#255#155#213#183#255'L'#159's'#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#0#0#0#0#0#0#0#4's:'#255#164#217#190 + +#255'='#147'f'#255'_'#136's'#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#4's:'#255'-'#136'Y'#255 + +#133#156#144#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#10'ImageIndex'#2#6#7'OnClick'#7#16'ActionRunExe' + +'cute'#0#0#9'TMenuItem'#13'MenuItemPause'#6'Action'#7#17'ActionPauseScript' + +#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 + +#238#238#238#0#238#238#238#0#238#238#238#0#152'pP'#255#164'e4'#255#164'e4' + +#255#152'pP'#255#251#227#188#0#251#227#188#0#152'pP'#255#164'e4'#255#164'e4' + +#255#152'pP'#255#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#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#0#0#164 + +'e4'#0#164'e4'#0#164'e4'#0#164'e4'#255#215#167#127#255#230#204#181#255#164'e' + +'4'#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#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#0#0#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e4'#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#217#176#141#255#230#206#183#255#164'e4'#255 + +#164'e4'#0#164'e4'#0#164'e4'#255#217#176#141#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#217#178 + +#143#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#217#178 + +#143#255#230#206#183#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#164'e4'#0#164'e' + +'4'#0#164'e4'#0#164'e4'#255#218#179#145#255#230#206#183#255#164'e4'#255#164 + +'e4'#0#164'e4'#0#164'e4'#255#218#179#145#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#218#181#147 + +#255#230#207#185#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#218#181#147 + +#255#230#207#185#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#219#182#148#255#231#209#187#255#164'e4'#255#164'e4'#0 + +#164'e4'#0#164'e4'#255#219#182#148#255#231#209#187#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#221#188#157#255#231 + +#209#188#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#221#188#157#255#231 + +#209#188#255#164'e4'#255#0#0#0#0#0#0#0#0#0#0#0#0#153'nL'#0#153'nL'#0#153'nL' + +#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#255#153'nL'#0#153'nL' + +#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#255#0#0#0#0#0#0#0#0#0 + +#0#0#0#238#238#238#0#238#238#238#0#238#238#238#0#153'nL'#255#171'qC'#255#172 + +'rD'#255#153'nL'#255#251#227#188#0#251#227#188#0#153'nL'#255#171'qC'#255#172 + +'rD'#255#153'nL'#255#0#0#0#0#0#0#0#0#0#0#0#0#10'ImageIndex'#2#5#7'OnClick'#7 + +#18'ActionPauseExecute'#0#0#9'TMenuItem'#12'MenuItemStop'#6'Action'#7#16'Act' + +'ionStopScript'#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#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'EP'#191#230'99'#134#230'99'#134 + +#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230 + +'99'#134#230'99'#134#230'99'#134#230#255#255#255#0#255#255#255#0#255#255#255 + +#0#255#255#255#0'EP'#191#230#135#150#246#255'|'#141#247#255'r'#132#248#255'h' + +'|'#248#255'^s'#250#255'Sj'#250#255'Jc'#250#255'B\'#251#255':U'#252#255'3O' + +#252#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +'EP'#191#230#146#158#245#255#135#150#246#255'|'#141#247#255'r'#133#248#255'h' + +'|'#249#255'^s'#249#255'Tk'#250#255'Kc'#251#255'B\'#251#255'9U'#252#255'99' + +#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230 + +#155#167#245#255#146#159#245#255#135#150#247#255'|'#141#247#255'r'#132#248 + +#255'g|'#248#255'^s'#249#255'Tk'#250#255'Jc'#251#255'A\'#251#255'99'#134#230 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#166#175 + +#244#255#156#167#245#255#145#159#245#255#135#150#246#255'}'#141#247#255'q' + +#132#247#255'h|'#248#255']s'#249#255'Tj'#250#255'Jc'#251#255'99'#134#230#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230#174#183#243 + +#255#165#175#245#255#156#167#245#255#145#159#245#255#135#150#247#255'|'#141 + +#247#255'r'#132#248#255'h{'#249#255']s'#249#255'Sk'#250#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']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#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#241#255#191#197#243#255#183#190#243#255#174#183#244#255#166#175#244 + +#255#155#167#245#255#146#159#246#255#135#150#246#255'|'#141#247#255'r'#132 + +#247#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#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#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'EP'#191#230'EP'#191#230'EP'#191#230'EP' + +#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191 + +#230'EP'#191#230#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#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#10'ImageIndex'#2#7#7'OnClick'#7#17 + +'ActionStopExecute'#0#0#0#9'TMenuItem'#8'MenuView'#7'Caption'#6#5'&View'#0#9 + +'TMenuItem'#21'MenuItemColourHistory'#7'Caption'#6#20'View &Colour History'#7 + +'OnClick'#7#26'MenuItemColourHistoryClick'#0#0#9'TMenuItem'#18'MenuItemDebug' + +'Image'#7'Caption'#6#17'View &Debug Image'#7'OnClick'#7#23'MenuItemDebugImag' + +'eClick'#0#0#9'TMenuItem'#20'MenuItemFunctionList'#7'Caption'#6#19'View &Fun' + +'ction List'#7'OnClick'#7#25'MenuItemFunctionListClick'#0#0#0#9'TMenuItem'#9 + +'MenuExtra'#7'Caption'#6#5'Extra'#0#9'TMenuItem'#24'MenuitemFillFunctionList' + +#7'Caption'#6#18'Fill Function List'#7'OnClick'#7#29'MenuitemFillFunctionLis' + +'tClick'#0#0#0#9'TMenuItem'#8'MenuHelp'#7'Caption'#6#5'&Help'#0#9'TMenuItem' + +#13'MenuItemAbout'#7'Caption'#6#6'&About'#7'OnClick'#7#18'MenuItemAboutClick' + +#0#0#0#0#10'TImageList'#17'Mufasa_Image_List'#4'left'#3#232#1#6'Bitmap'#10#14 + +'l'#0#0'Li'#27#0#0#0#16#0#0#0#16#0#0#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BB' + +'B'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#161'UB'#255#161'UB'#255#161 + +'UB'#255'BBB'#14'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB' + +#0'BBB'#0'BBB'#0#161'UB'#255#255#218#208#255#208'^B'#255#161'UB'#255#161'UB' + +#255'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0 + +#161'UB'#255#255#218#208#255#208'^B'#255#208'^B'#255#161'UB'#255#161'UB'#255 + +'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#161'UB'#255#161'UB' + +#255#255#218#208#255#208'^B'#255#208'^B'#255#161'UB'#255#161'UB'#255#161'UB' + +#255'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#161'UB'#255#255#218#208 + +#255#161'UB'#255#208'^B'#255#208'^B'#255#161'UB'#255#161'UB'#255#161'UB'#255 + +'BBBcBBB'#0'BBB'#0'BBB'#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0'BBB'#11#161'UB'#255#255#218#208#255#161'UB'#255#208'^B'#255#161'UB' + +#255#161'UB'#255'BBBcBBBLBBB'#0'BBB'#0'BBB'#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#131#131#131#255#255#255#255#255#161'UB'#255#255#218 + +#208#255#161'UB'#255#161'UB'#255'BBBcBBBLBBB'#25'BBB'#0'BBB'#0'BBB'#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#131#131#131#255#255#255#255#255#229#229 + +#229#255#161#161#161#255#161'UB'#255#255#218#208#255#161'UB'#255'BBBXBBB'#28 + +'BBB'#3'BBB'#0'BBB'#0'BBB'#0#255#255#255#0#255#255#255#0#131#131#131#255#255 + +#255#255#255#229#229#229#255#161#161#161#255#131#131#131#255'BBBc'#161'UB' + +#255'BBB`BBBJBBB'#14'BBB'#0'BBB'#0'BBB'#0'BBB'#0#255#255#255#0#131#131#131 + +#255#255#255#255#255#229#229#229#255#161#161#161#255#131#131#131#255'BBBcBBB' + +'LBBB''BBB>BBB'#25'BBB'#3'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#255#255 + +#255#255#229#229#229#255#161#161#161#255#131#131#131#255'BBBcBBBLBBB'#25'BBB' + +#6'BBB'#11'BBB'#2'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#255#255#255#255 + +#229#229#229#255#161#161#161#255#131#131#131#255'BBBcBBBLBBB'#25'BBB'#3'BBB' + +#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#255#255#255#255#229#229 + +#229#255#161#161#161#255#131#131#131#255'BBBcBBBLBBB'#25'BBB'#3'BBB'#0'BBB'#0 + +'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#229#229#229#255#161#161 + +#161#255#131#131#131#255'BBBcBBBLBBB'#25'BBB'#3#255#255#255#0'BBB'#0'BBB'#0 + +'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#229#229#229#255#131#131#131#255 + +#131#131#131#255'BBBcBBBLBBB'#25'BBB'#3#255#255#255#0#255#255#255#0'BBB'#0'B' + +'BB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0#131#131#131#255#131#131#131#255'BBB`BBBXB' + +'BBJBBB'#25'BBB'#3'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'BBB'#0'B' + +'BB'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#202#225#202#255 + +#197#247#213#255#156#244#185#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#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'#255'1:1'#255'!>+'#255'[r['#255#0#0#0#191#0#0#0 + +#0#0#0#0#0#224#225#247#255'!6'#211#255#130#132#185#255#0#0#0#0#0#0#0#0'a'#177 + +'a'#255'7'#198'^'#255'$'#153'J'#255'0I0'#255#0#0#0#191#0#0#0#191#9'@'#9#255#0 + +#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0#151#157#232#255#0#25#192#255#21#25'g'#255 + +#0#0#0#0#0#0#0#0#27#142#27#255#22#139'.'#255';^;'#255#0#0#0#191#0#0#0#191#0#0 + +#0#0#0#0#0#0'x'#135#241#255#0#0#0#0#0#0#0#0#185#191#246#255#0','#241#255#0#20 + +'}'#255#17#20'4'#255#0#0#0#0#0#0#0#0'd'#140'd'#255#21'W"'#255'?D?'#255#0#0#0 + +#191#0#0#0#0#0#0#0#0#194#201#249#255#161#189#254#255#235#237#253#255#233#235 + +#253#255'3d'#254#255#2' '#147#255#0#11'<'#255'99?'#255#0#0#0#0#0#0#0#0#0#0#0 + +#0#2'.'#3#255'$5$'#255#0#0#0#191#0#0#0#0#0#0#0#0#133#151#250#255#142#182#255 + +#255'hz'#238#255'p'#155#251#255#17'5'#156#255#3#18'A'#255#6#10'3'#255#0#0#0 + +#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#2''''#2#255'DLD'#255#0#0#0#0#0#0#0#0#16 + +'2'#251#255'r'#178#255#255'c'#161#245#255'6\'#154#255#19'"A'#255#5#11'7'#255 + +#0#0#0#191#0#0#0#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'=Q='#255#0#0#0 + +#191#0#0#0#0#9'2'#181#255'S~'#161#255'5Rq'#255#26'+A'#255#23#28';'#255#0#0#0 + +#191#0#0#0#191#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#191#0#0#0#0#23'$e'#255#30'/A'#255'(6A'#255#30'/A'#255#20'$A'#255#1#9'7'#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#191'::@'#255'%(='#255#6#13'8'#255'%(='#255#0#0#0#191#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#255#255#255#0 + +#255#255#255#0#255#255#255#0'Y'#170#131'HY'#170#131#171'Y'#170#131#210'Y'#170 + +#131#255'Y'#170#131#213'Y'#170#131#174'Y'#170#131'Q'#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 + +'V'#167#128#24'V'#167#128#195'l'#179#146#255#168#213#195#255#197#230#219#255 + +'q'#183#151#255#198#230#220#255#169#214#196#255'o'#181#148#255'V'#167#128#198 + +'V'#167#128#30#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'R'#162 + +'}'#27'S'#163'~'#228#143#198#174#255#200#232#223#255#223#242#236#255#249#253 + +#251#255'w'#184#153#255#248#252#251#255#220#241#235#255#199#231#222#255#147 + +#200#178#255'U'#164#128#232'R'#162'}'#30#255#255#255#0#255#255#255#0#255#255 + +#255#0'M'#157'x'#192#140#195#171#255#195#230#220#255#245#251#249#255#197#230 + +#220#255#157#213#197#255'\'#170#135#255#159#214#197#255#201#232#223#255#244 + +#250#249#255#192#228#217#255#147#199#178#255'M'#157'x'#204#255#255#255#0#255 + +#255#255#0'H'#152'sQ`'#167#135#255#173#218#203#255#239#248#245#255#155#210 + +#193#255#130#199#178#255#130#199#178#255'V'#164#130#255#130#199#178#255#130 + +#199#178#255#156#211#194#255#240#248#246#255#169#216#202#255'e'#170#139#255 + +'H'#152'sT'#255#255#255#0'B'#145'n'#174#144#197#176#255#205#232#223#255#182 + +#221#208#255'x'#193#169#255#141#202#182#255#228#243#238#255'i'#169#141#255 + +#226#242#237#255#139#202#181#255'x'#193#169#255#185#223#210#255#200#229#220 + +#255#149#200#181#255'B'#145'n'#180#255#255#255#0'<'#139'h'#219#129#194#170 + +#255#241#249#246#255'|'#193#169#255'n'#187#160#255#229#243#238#255#171#216 + +#200#255'u'#190#164#255#177#218#204#255#221#239#233#255'n'#187#160#255#129 + +#196#172#255#240#248#245#255#129#194#172#255'<'#139'h'#231#255#255#255#0'6' + +#132'b'#240'A'#143'o'#255'^'#156#130#255'?'#142'm'#255'@'#142'n'#255'^'#156 + +#130#255'd'#180#151#255'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#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#214#199#255#183#218#204#255'F'#153'x'#255')vW'#180 + +#255#255#255#0'#pQQ5'#129'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'!pQ'#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'#255#236#245#241#255#173#212#196#255'M'#161'~'#255 + +'*'#132'_'#255#27'gI'#235#24'dG'#27#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#19'_B'#21#19'_B'#174#26'lL'#255'%'#128'['#255'+'#141'd'#255#22 + +'eG'#255','#141'e'#255'%'#129'['#255#27'nM'#255#19'_B'#183#19'_B'#27#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#15'Z?W'#15'Z?'#183#15'Z?'#246#15'Z?'#255#15'Z?'#246#15'Z?'#186 + +#15'Z?]'#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#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#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#255#255#0#255#255#255#0#255#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 + +#172#131'Ku'#222#201#175#255#149'd'#29#31#255#255#255#0#146'`'#23'&'#195#164 + +'|'#235#181#144'c'#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#175 + +#135'P|'#231#213#193#255#149'e'#31'+'#143'\'#18#27#197#167#131#231#213#188 + +#157#225#181#147'db'#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#177 + +#137'S'#132#238#223#206#255#151'f e'#194#163'|'#218#233#216#197#253#169#130 + +'N{'#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#179 + +#140'W'#137#241#226#212#255#206#178#142#244#245#235#224#255#166#127'J'#157 + +#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#11#136#2#255#255#255#0 + +#180#142'Z'#144#246#234#221#255#225#205#180#255#177#141']'#191#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#3#13#140#31#27'&'#167#153'*4'#186#204#17#28#157#137 + +#187#152'i'#204#240#224#208#255#183#145'_'#197#143']'#20#11#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#3#13#140#31',5'#185#215'<F'#207#255'3>'#202#242'?L'#215#255#216#188 + +#154#255#246#234#225#255#187#146'Z'#191#148'b'#24';'#145'a'#26#1#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 + +'('#169#156';F'#204#255#8#18#144':'#7#17#144'S;H'#212#255#219#189#156#255#238 + +#204#166#255'@L'#222#255':C'#209#255#15#25#152'i'#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<'#195#236'#.'#173 + +#175#255#255#255#0#26'%'#168#153'BP'#210#255#203#163'u'#254'AO'#214#255#22'!' + +#163#157'/9'#192#212'.8'#190#223#2#13#139#10#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0'/:'#189#222'5?'#201#229'%0'#179#194'?' + +'J'#221#255#31'*'#172#194'$0'#178#203'2<'#198#242#0#10#134#3#17#27#157'w7A' + +#200#255#8#18#142' '#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#15#25#151'c2='#199#248'7A'#207#255#31')'#171#176#0#10#134#24 + +'#-'#180#175'5@'#204#253#0#9#133#24#28''''#168#149'4>'#197#248#4#14#140#20 + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#5#15#141#31#6#16#142'&'#1#11#138#3#255#255#255#0#18#28#155'p@K' + +#217#255',5'#191#221'=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#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#176#0'%'#2#178#0'%'#2#179'8%'#2#179'|'#201#184#253#255 + +#202#185#254#255'%'#2#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%'#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#176#159#233#255#178#161#233#255#179#162#234#255#181#164 + +#235#255#182#165#236#255#152#135#220#255#170#153#238#255'#'#2#165#138'lll'#0 + +'sss'#0'yyy'#0#128#128#128#0#133#133#133'/'#131#131#131'f'#248#248#248#255 + +#245#245#245#255#174#157#232#255#176#159#233#255#178#161#233#255#179#162#234 + +#255#149#132#217#255#151#134#219#255#169#152#237#255'"'#2#161#141'lll'#0'sss' + +#0'yyy'#0#127#127#127'/}}}f'#246#246#246#255#242#242#242#255#242#242#242#255 + +#242#242#242#255#174#157#232#255#176#159#233#255#146#129#214#255#148#131#216 + +#255#166#149#234#255'"'#2#159#144'"'#2#159'Alll'#0'sss'#0'xxx/vvvf'#244#244 + +#244#255#239#239#239#255#239#239#239#255#239#239#239#255#239#239#239#255#239 + +#239#239#255#142'}'#210#255#144#127#212#255#163#146#231#255'!'#2#157#146'!'#2 + +#156'B!'#2#158#0'lll'#0'rrr/pppf'#243#243#243#255#236#236#236#255#236#236#236 + +#255#236#236#236#255#236#236#236#255#236#236#236#255#206#206#206#255#208#208 + +#208#255#159#142#227#255'!'#2#155#149'!'#2#154'C!'#2#156#0'!'#2#158#0'kkk/ii' + +'if'#241#241#241#255#233#233#233#255#233#233#233#255#233#233#233#255#233#233 + +#233#255#233#233#233#255#202#202#202#255#204#204#204#255#220#220#220#255'666' + +'f '#3#152'E!'#2#153#0'!'#2#156#0'!'#2#158#0'cccf'#240#240#240#255#230#230 + +#230#255#230#230#230#255#230#230#230#255#230#230#230#255#230#230#230#255#198 + +#198#198#255#200#200#200#255#216#216#216#255'''''''f###/ '#3#151#0'!'#2#153#0 + +#25#2'u'#0#17#1'O'#0'XXXf'#240#240#240#255#227#227#227#255#227#227#227#255 + +#227#227#227#255#227#227#227#255#194#194#194#255#196#196#196#255#212#212#212 + +#255#26#26#26'f'#22#22#22'/ '#0#24#3'q'#0#8#1'&'#0#0#0#0#0#0#0#0#0'HHH/===' + +'f'#240#240#240#255#225#225#225#255#225#225#225#255#191#191#191#255#192#192 + +#192#255#209#209#209#255#15#15#15'f'#12#12#12'/'#15#15#15#0#8#8#8#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#16#16#16#0#30#30#30'/ f'#223#223#223#255#206#206#206 + +#255#206#206#206#255#206#206#206#255#5#5#5'f'#2#2#2'/'#2#2#2#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#17#0#0#0'&'#9#9#9'H'#10#10#10'f'#5#5 + +#5'f'#2#2#2'f'#1#1#1'f'#0#0#0'@'#0#0#0#30#0#0#0#25#0#0#0#19#0#0#0#14#0#0#0#9 + +#0#0#0#5#0#0#0#2#0#0#0#0#0#0#0#9#0#0#0#19#0#0#0#26#0#0#0#25#0#0#0#24#0#0#0#22 + +#0#0#0#20#0#0#0#18#0#0#0#15#0#0#0#13#0#0#0#10#0#0#0#7#0#0#0#5#0#0#0#3#0#0#0#1 + +#0#0#0#0#238#238#238#0#238#238#238#0#238#238#238#0#153'nL'#255#171'qC'#255 + +#172'rD'#255#153'nL'#255#251#227#188#0#251#227#188#0#153'nL'#255#171'qC'#255 + +#172'rD'#255#153'nL'#255#0#0#0#0#0#0#0#0#0#0#0#0#153'nL'#0#153'nL'#0#153'nL' + +#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#255#153'nL'#0#153'nL' + +#0#162'f7'#255#220#191#164#255#223#198#175#255#162'f7'#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#221#188#157#255#231#209#188 + +#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#221#188#157#255#231#209#188 + +#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#219#182#148#255#231#209#187#255#164'e4'#255#164'e4'#0#164'e4'#0#164 + +'e4'#255#219#182#148#255#231#209#187#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#218#181#147#255#230#207#185#255 + +#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255#218#181#147#255#230#207#185#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#218#179#145#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4' + +#255#218#179#145#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#217#178#143#255#230#206#183#255#164'e' + +'4'#255#164'e4'#0#164'e4'#0#164'e4'#255#217#178#143#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 + +#217#176#141#255#230#206#183#255#164'e4'#255#164'e4'#0#164'e4'#0#164'e4'#255 + +#217#176#141#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#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#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#0#0#0#0#0#0#0#164'e4'#0#164'e4'#0#164'e4'#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'e' + +'4'#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#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>'#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#238#238#238#0#238#238#238#0#238#238#238#0#152'pP'#255#164'e4' + +#255#164'e4'#255#152'pP'#255#251#227#188#0#251#227#188#0#152'pP'#255#164'e4' + +#255#164'e4'#255#152'pP'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:' + +#255'-'#136'Y'#255#133#156#144#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#4's:'#255#164 + +#217#190#255'='#147'f'#255'_'#136's'#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#4's:'#255#169 + +#220#193#255#155#213#183#255'L'#159's'#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#0#0#0#0#0#0#0#4's:'#255#165 + +#218#191#255'W'#187#135#255#144#210#176#255'['#171#130#255'#wL'#255#212#213 + +#212#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#4's:'#255#169#220#193#255'E'#180'{'#255'G'#180'|'#255#130#204#166#255'g' + +#182#140#255#23'wE'#255#193#197#195#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#4's:'#255#169#220#193#255'>'#177'v'#255':'#175's' + +#255'6'#174'p'#255'o'#197#152#255'q'#191#151#255#24'{I'#255#166#176#171#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#4's:'#255#169#220#193 + +#255'6'#173'p'#255'2'#172'm'#255'-'#170'j'#255'('#168'f'#255'X'#188#137#255 + +'x'#197#157#255#31#128'N'#255#131#154#142#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#4's:'#255#169#220#193#255'.'#173'k'#255'+'#173'j'#255'''' + +#171'h'#255'"'#169'd'#255#28#165'_'#255'A'#178'x'#255'x'#198#159#255')'#136 + +'X'#255'g'#140'y'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255#169 + +#220#193#255#12#170'X'#255#18#174'^'#255#21#175'`'#255#22#173'a'#255#19#170 + +']'#255':'#182'w'#255'u'#199#157#255'('#137'W'#255'N'#131'g'#255#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4's:'#255#169#220#193#255#13#179'^'#255#14#182 + +'`'#255#14#182'`'#255#13#180'_'#255'G'#196#132#255'p'#202#156#255#29#130'M' + +#255'g'#140'y'#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#4's:'#255 + +#169#220#193#255#16#189'e'#255#17#193'g'#255#19#194'i'#255'Y'#211#149#255'g' + +#201#152#255#22'|G'#255#136#156#146#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#4's:'#255#131#220#175#255#17#195'i'#255#26#204's'#255'i' + +#223#163#255'Z'#194#141#255#19'vC'#255#158#167#163#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#9'w?'#255#131#219#174#255#31#198 + +'q'#255'r'#222#167#255'K'#178#127#255#23'tE'#255#168#173#170#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#4's:'#255#130 + +#216#172#255'v'#214#166#255'<'#157'j'#255'''tL'#255#172#174#173#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#4's:' + +#255'z'#207#164#255','#140'Z'#255'=vY'#255#174#174#174#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#4's:' + +#255'!'#130'O'#255'c'#130'r'#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#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#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'EP' + +#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191 + +#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#230'EP'#191#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#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#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#241#255#191#197#243#255#183#190#243#255#174#183#244#255#166#175 + +#244#255#155#167#245#255#146#159#246#255#135#150#246#255'|'#141#247#255'r' + +#132#247#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#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#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#174#183#243#255#165#175#245#255#156#167#245 + +#255#145#159#245#255#135#150#247#255'|'#141#247#255'r'#132#248#255'h{'#249 + +#255']s'#249#255'Sk'#250#255'99'#134#230#255#255#255#0#255#255#255#0#255#255 + +#255#0#255#255#255#0'EP'#191#230#166#175#244#255#156#167#245#255#145#159#245 + +#255#135#150#246#255'}'#141#247#255'q'#132#247#255'h|'#248#255']s'#249#255'T' + +'j'#250#255'Jc'#251#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0'EP'#191#230#155#167#245#255#146#159#245#255#135#150#247#255'|' + +#141#247#255'r'#132#248#255'g|'#248#255'^s'#249#255'Tk'#250#255'Jc'#251#255 + +'A\'#251#255'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0'EP'#191#230#146#158#245#255#135#150#246#255'|'#141#247#255'r'#133#248 + +#255'h|'#249#255'^s'#249#255'Tk'#250#255'Kc'#251#255'B\'#251#255'9U'#252#255 + +'99'#134#230#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191 + +#230#135#150#246#255'|'#141#247#255'r'#132#248#255'h|'#248#255'^s'#250#255'S' + +'j'#250#255'Jc'#250#255'B\'#251#255':U'#252#255'3O'#252#255'99'#134#230#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'EP'#191#230'99'#134#230 + +'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99'#134#230'99' + +#134#230'99'#134#230'99'#134#230'99'#134#230#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#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'zXA'#7 + +'zU='#6'|V='#4'{W='#6'zX@%{Y@''yXB'#10#0#0#0#0'@C_'#4#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'{W='#0'wU>'#13#171 + +'i'#27#26'KF[m'#6'6'#171#223#2'5'#173#255#2'6'#176#251#6'+'#141#164#0#0#0#0 + +'"0c'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'<@h'#29#25'8' + +#142#207#9'.'#142#253#1'5'#177#255#4'('#148#255#2'/'#159#254#1'2'#171#255#6 + +'$|'#135#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#15 + +'6'#157#188#1')'#154#255#3'0'#166#255#4'%'#145#254#5'('#137#255#1#23'u'#255#1 + +'1'#171#254#1''''#145#255#7#30'j'#171#0#0#0#0#3#27'm'#0#0#0#0#0#0#0#0#0#127 + +'rf'#0#0#0#0#0#0#9#154#1#3'2'#172#226#15':'#133#241#11'v'#234#255#11'~'#240 + +#255#18'\'#171#255#9'q'#229#255#3'('#148#255#0','#162#254#0#25'm'#255#5#27'k' + +#221#19'&f"'#0#0#0#0#0#0#0#0'sf['#6'uli'#29'gkz!'#8'A'#183#239#19'~'#236#255 + +#12#137#255#254#23'p'#207#255'*x'#200#255#10'{'#243#255#5'K'#186#255#0'+'#160 + +#255#4'*'#131#255#0#25'm'#254#2#23'f'#255#17#29'_$tz'#137#6'pjd*xdW(Td'#130 + +'c!'#128#229#255#22'\'#179#255#25'a'#187#255'3'#149#249#255#9'y'#243#255#5'y' + +#248#255#3'y'#252#255#4'3'#158#255#5')'#146#255#2'!v'#255#0#20'b'#255#3#20'_' + +#200'|'#136#177#11#129#138#170')y'#140#159'''B'#143#222#189#18'M'#161#255#14 + +'/h'#255'4'#136#229#255'7'#154#255#255#20'z'#235#255#3'w'#246#255#3's'#238 + +#255#2']'#209#255#2#21't'#255#3'!'#138#255#2#20'h'#255#1#15'['#237'z'#134#165 + +'$p'#139#169#24'n'#144#186#31'H'#152#231#198'5'#145#238#255':'#155#255#255'4' + +#149#251#255'2'#134#231#255' '#130#242#255#0'u'#244#255#0's'#238#255#0'o'#232 + +#255#2#22'w'#255#1'!'#139#255#1#26'}'#255#1#11'V'#255#0#0#0#0#129#144#164#5#0 + +#0#0#0'L'#150#224#165'7'#148#248#255'4'#147#250#255'/'#142#249#255'/'#141#249 + +#255#30#135#248#255#2'v'#241#255#0'q'#235#255#1'a'#211#255#1#28#132#255#1#30 + +#133#255#0#27#127#255#1#12'['#255#0#0#0#0#0#0#0#0#0#0#0#0'?'#147#236#172'2' + +#148#255#255'0'#145#254#255'/'#143#252#255'+'#134#239#255#5'&'#136#255#2#21 + +'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 + +#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 + +#129#255#2#23'w'#255#1#28#127#255#0#27'~'#255#0#24'z'#255#1#17'l'#255#1#14'i' + +#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`' + +#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 + +#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 + +#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#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#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'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#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#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#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#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#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#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#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#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#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#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#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#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#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#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#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 + +#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'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 + +'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'#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'#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'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'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'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'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'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','#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#255#255#255#0#255#255#255#0' c'#152'* c'#152 + +#255' c'#152#255' c'#152#255' c'#152#255' c'#152#255' c'#152#240#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' c'#152'2 c'#152#178' c'#152#255'7u'#164#255#182#239#254#255#128 + +#219#243#255#128#219#243#255#182#239#254#255'.n'#161#255' c'#152#255' c'#152 + +#165' c'#152'S'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c' + +#152#224'q'#179#219#254'~'#191#228#255'N'#157#223#255#181#238#253#255'u'#212 + +#240#255'u'#212#240#255#181#238#253#255'K'#155#222#255'n'#180#224#255'm'#179 + +#223#249' c'#152#243#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +' c'#152#255#127#191#228#255'i'#178#222#255'J'#155#218#255'D'#151#220#255'C' + +#150#220#255'B'#150#220#255'B'#149#220#255'A'#149#219#255'Q'#158#214#255'l' + +#178#222#255' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255 + +#255#0' c'#152#255'|'#189#228#255'e'#174#221#255'b'#171#220#255'^'#168#218 + +#255'\'#167#217#255'\'#167#217#255'\'#167#217#255'\'#167#217#255'R'#159#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'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 + +#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' + +#152#255's'#183#225#255'W'#163#215#255'S'#160#215#255'P'#157#213#255'R'#153 + +#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 + +#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 + +#255#233#233#233#255#232#232#232#255#232#232#232#255#232#232#232#255#231#231 + +#231#255#237#237#237#250'VVV'#132' c'#152#255'k'#177#222#255'M'#151#211#255 + +'K'#147#210#255'H'#143#208#255'J'#140#201#255'o'#139#165#255#241#241#241#255 + +#182#182#182#255#181#181#181#255#181#181#181#255#180#180#180#255#180#180#180 + +#255#180#180#180#255#237#237#237#250'SSS'#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'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 + +#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 + +#231#255#231#231#231#255#230#230#230#255#230#230#230#255#236#236#236#250'III' + +#132' 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#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'^^^'#2'[[[wXX' + +'X'#138'UUU'#138'RRR'#138'OOO'#138'LLL'#138'JJJ'#138'HHH'#138'FFF'#138'DDDf' + +#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#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#0#0#0#0#0#0#0#0#0#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#157#191#20#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196 + +#255#173#243#251#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#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#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#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#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#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#27#163#191#244'o'#220#235#255#7#194#216#255#10#200 + +#223#255#5#221#247#255'i'#234#249#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#26#164#192#248'i'#228#242#255#15#201#223#255'n'#225#238 + +#255#1#169#196#255#0#160#196#255#0#160#196#255#0#160#196#255#0#160#196#255'v' + +#237#251#255'v'#237#251#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#255#255 + +#255#0#25#163#193#255'v'#226#239#255'm'#230#245#255#0#160#196#201#0#153#185 + +'P'#0#160#196'0'#0#0#0#0#0#0#0#0#0#160#196#255'v'#237#251#255#0#160#196#255#5 + +'y}'#17#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#17#162#194#255#136#231#242#254 + +#2#172#200#255#0#158#193#26#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#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 + +#0#0#0#0#0#0#0#0#0#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 + +#255#0#0#0#0#0#0#160#196#24#26#167#196'i'#24#166#195'i'#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#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 + +#192#192#198#246#196#196#202#255#175#175#180#217'CCG'#255#0#0#0'_'#255#255 + +#255#0#0#0#0#0#0#0#0#0#0#0#0#0'@@'#255#255'::'#255#255'::'#255#255'=='#255 + +#255#0#0#0'#'#0#0#0#11'MMP'#255#191#191#197#246#194#194#200#255#182#182#188 + +#206'AAD'#255#0#0#0'k'#255#255#255#0#0#0#0#0#0#0#0#0''''''#255#255#17#17#255 + +#255#11#11#255#255#24#24#255#255'++'#255#255'00'#255#255#0#0#0';FFJ'#255#189 + +#189#195#246#192#192#198#255#190#190#196#195'BBF'#255#0#0#0'_'#255#255#255#0 + +#0#0#0#0'%%'#255#255#0#0#251#255#0#0#0'w'#0#0#0#143#0#0#0#143#26#26#255#255 + +'!!'#255#255#13#13#255#255'CCG'#255#187#187#193#246#187#187#193#255#184#184 + +#189#195'EEI'#255#0#0#0'_'#255#255#255#0'11'#255#255#10#10#255#255#0#0#0'w'#0 + +#0#0'w'#0#0#0'G'#0#0#0'/'#24#24#255#255#21#21#255#255#0#0#252#255'@@D'#255 + +#181#181#187#248#182#182#188#255#178#178#183#195'EEI'#255#0#0#0'_'#255#255 + +#255#0'##'#255#255#0#0#251#255#0#0#0#143#0#0#0'G'#0#0#0#11#0#0#0#0'""'#255 + +#255#15#15#255#255#0#0#239#255'==@'#255#153#153#158#227#169#169#174#213#173 + +#173#179#156'AAE'#255#0#0#0'_'#255#255#255#0#26#26#255#255#0#0#249#255#0#0#0 + +#143#0#0#0'/'#0#0#0#0#0#0#0#0'00'#255#255#16#16#255#255#0#0#234#255'<<?'#255 + +'==A'#255'@@D'#255'??B'#255'::>'#255#0#0#0'k'#255#255#255#0#23#23#255#255#0#0 + +#253#255#0#0#0#143#0#0#0'/'#0#0#0#0#0#0#0#0'99'#255#255#22#22#255#255#0#0#241 + +#255#0#0#0#179#0#0#0#143#0#0#0'k'#0#0#0'_'#0#0#0'k'#0#0#0'_'#255#255#255#0#19 + +#19#255#255#0#0#250#255#0#0#0#143#24#24#255#255'::'#255#255#0#0#0'#77'#255 + +#255#25#25#255#255#0#0#248#255#0#0#0#155#0#0#209#255#0#0#197#255#0#0#0'S'#0#0 + +#0';'#0#0#0'#'#255#255#255#0#4#4#255#255#0#0#233#255#0#0#0#143#0#0#0'G'#31#31 + +#255#255',,'#255#255'""'#255#255#10#10#255#255#0#0#237#255#0#0#209#255#0#0 + +#189#255#0#0#0'k'#0#0#0'S'#0#0#0#23#0#0#0#0#255#255#255#0#0#0#237#255#0#0#208 + +#255#0#0#0#143#0#0#0';'#0#0#249#255#3#3#255#255#0#0#252#255#0#0#230#255#0#0 + +#200#255#0#0#173#255#0#0#162#255#0#0#0#143#0#0#0'G'#0#0#0#11#0#0#0#0#255#255 + +#255#0#0#0#216#255#0#0#191#255#0#0#0#143#0#0#0'/'#0#0#0'#'#0#0#222#255#0#0 + +#209#255#0#0#185#255#0#0#158#255#0#0#140#255#0#0#0#179#0#0#0'w'#0#0#0'#'#0#0 + +#0#0#0#0#0#0#255#255#255#0#0#0#0'#'#0#0#0'k'#0#0#0'k'#0#0#0'#'#0#0#0#11#0#0#0 + +';'#0#0#184#255#0#0#156#255#0#0#135#255#0#0#0#179#0#0#0#131#0#0#0';'#0#0#0#11 + +#0#0#0#0#0#0#0#0#255#255#255#0#0#0#0#11#0#0#0'#'#0#0#0'#'#0#0#0#11#0#0#0#0#0 + +#0#0#11#0#0#0';'#0#0#159#255#0#0#0#167#0#0#0#131#0#0#0';'#0#0#0#11#0#0#0#0#0 + +#0#0#0#0#0#0#0#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#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'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'#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'#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#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#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'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'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#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#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'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#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#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#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'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#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'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"RRR[' + +#198#198#198#212#220#220#220#255#216#217#217#255#213#213#213#255#208#209#209 + +#255#204#204#204#255#200#200#200#255#198#198#198#255#198#197#197#255#201#197 + +#197#255#205#198#198#255#209#199#199#255#215#203#203#255#196#184#184#212'RRR' + +'[PPPi'#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#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'fUUUg'#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#255#255#255#255#255#255 + +#255#255#255'UUUgQQQh'#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#252#252 + +#255#253#253#253#255'QQQhMMMj'#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#255#250#250#250#255'MMMjIIIl'#247#247#247#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#244#244#244#255#247#247#247#255'IIIlDDDn'#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 + +#239#239#255#239#239#239#255#243#243#243#255'DDDn>>>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'k'#196'_' + +#255'@'#182'/'#255'k'#196'_'#255#240#240#240#255'>>>q888s'#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 + +'.'#255'u'#238'd'#255'>'#177'.'#255#237#237#237#255'888s222v'#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'''''''{'#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#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'~'#2#231#14'~'#2#231'='#226',' + +#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 + +'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 + +#255#255#0#255#255#255#0'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUU' + +'fUUUfUUUYUUU"RRR['#198#198#198#212#220#220#220#255#216#217#217#255#213#213 + +#213#255#208#209#209#255#204#204#204#255#200#200#200#255#198#198#198#255#198 + +#197#197#255#201#197#197#255#205#198#198#255#209#199#199#255#215#203#203#255 + +#196#184#184#212'RRR[PPPi'#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#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'fUUUg'#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#255 + +#255#255#255#255#255#255#255#255'UUUgQQQh'#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#252#252#255#253#253#253#255'QQQhMMMj'#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#255#250#250#250#255'MMMjIIIl'#247#247#247#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#244#244#244#255#247#247#247#255'IIIlDDDn'#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#239#239#255#239#239#239#255#243#243#243#255'DDDn>>>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#255#235#235#235#255#240#240#240#255'>>>' + +'q888s'#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#230#230#230#255#230#230#230#255#230#230#230#255#237#237#237 + +#255'888s222v'#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'[['#190 + +#255'--'#179#255'--'#179#255'--'#179#255'--'#179#255'//'#181#255#17#17#129 + +#200'''''''{'#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'//'#167#255 + +'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#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#133#16#16#16#133#16#16#16#133#4#4'['#207#2#2's'#231#2#2's'#231#2#2's' + +#231#2#2's'#231#2#2's'#231#2#2'X'#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#0#0#0#26#0#0#0#26 + +#0#0#0#26#0#0#0#22#0#0#0#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#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#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#11#0#0#0'#'#0#0#0'/'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#11#0#0#0'#'#0#0#0 + +'G'#138#211#255#255'_'#195#255#255'('#174#255#255#0#159#255#255#0#136#218#255 + +#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 + +#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 + +#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'\'#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 + +#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 + +#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#138#221#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 + +'#'#27#169#255#255#0'o'#178#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#11#0#0#0'#'#0#0#0'/'#0#0#0'/' + +#0#0#0'S'#0#134#215#255#0'Ky'#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#23'%'#173#255#255#10#163 + +#255#255#0#138#222#255#0'l'#173#255#0'Eo'#255#0#0#0';'#0#0#0#11#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#11#0#0#0 + +'#'#0#0#0'/'#0#0#0'/'#0#0#0'/'#0#0#0'#'#0#0#0#11#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#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#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#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#157#191#20#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255#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#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255'%'#228#251#255#0 + +#160#196#255#0#160#196#255#19#161#190#231#21#159#187#207#27#161#187#164#6'z|' + +#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243 + +#251#255'1'#225#246#255' '#227#250#255's'#236#250#255'o'#235#250#255'n'#232 + +#247#255'l'#232#247#248#20#161#188#212#20#163#193#213#5'y}'#28#0#0#0#0#0#0#0 + +#0#0#0#0#0#5'y}'#10#0#160#196#255#173#243#251#255'/'#224#246#255'2'#226#247 + +#255')'#219#241#255'/'#224#245#255')'#219#241#255#22#205#227#255'6'#217#236 + +#255'i'#231#246#255'A'#206#227#254#19#163#193#228#5'y}2'#0#0#0#0#0#0#0#0#0 + +#160#196#255#173#243#251#255'/'#224#246#255'2'#226#248#255'2'#226#247#255'2' + +#226#247#255'/'#224#245#255')'#219#241#255#29#210#232#255#29#210#232#255#29 + +#210#232#255'6'#217#236#255'@'#205#225#255#22#161#189#202#5'y}'#10#0#0#0#0#5 + +'y~'#17#0#160#196#255'y'#237#251#255'2'#226#248#255','#223#244#255#4#192#214 + +#255#4#192#214#255#4#192#214#255#29#210#232#255#29#210#232#255#29#210#232#255 + +#11#200#223#255'j'#229#243#255#27#171#197#248#21#160#188#203#0#0#0#0#0#0#0#0 + +#5'y}'#17#0#160#196#255'v'#237#251#255#4#195#218#255'v'#237#251#255'i'#234 + +#249#255'i'#234#249#255'i'#234#249#255'i'#234#249#255#5#221#247#255#10#200 + +#223#255#7#194#216#255'o'#220#235#255#27#163#191#244#0#0#0#0#0#0#0#0#0#0#0#0 + +#5'y}'#17#0#160#196#255'v'#237#251#255'v'#237#251#255#0#160#196#255#0#160#196 + +#255#0#160#196#255#0#160#196#255#1#169#196#255'n'#225#238#255#15#201#223#255 + +'i'#228#242#255#26#164#192#248#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160 + +#196#255'v'#237#251#255#0#160#196#255#0#0#0#0#0#0#0#0#0#160#196'0'#0#153#185 + +'P'#0#160#196#201'm'#230#245#255'v'#226#239#255#25#163#193#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#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#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#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#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#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#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 + +#0#0#162#0#255#255#255#0#255#255#255#0#0#0#162#0#0#0#165#0#0#0#168'M'#9#9#174 + +#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' + +#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 + +#255#255#0#0#0#158'l22'#198#227'II'#209#255#255#255#255#255#255#255#255#255 + +#255#255#255#255'BB'#202#255'BB'#202#255#255#255#255#255#255#255#255#255#255 + +#255#255#255'GG'#207#255'**'#189#227#0#0#158'l'#255#255#255#0#255#255#255#0#0 + +#0#154#167'GG'#211#245'77'#191#255'##'#171#255#255#255#255#255#247#247#247 + +#255#232#232#232#255#222#222#222#255#219#219#219#255#221#221#221#255#17#17 + +#155#255#22#22#160#255''''''#180#245#0#0#154#167#255#255#255#0#255#255#255#0 + +#0#0#150#196'II'#209#253'33'#187#255'..'#184#255#19#19#159#255#206#206#206 + +#255#209#209#209#255#214#214#214#255#220#220#220#255#17#17#158#255#17#17#161 + +#255#17#17#161#255#29#29#172#253#0#0#150#196#255#255#255#0#255#255#255#0#0#0 + +#146#196'DD'#205#253'&&'#181#255#20#20#171#255#17#17#170#255#209#209#209#255 + +#214#214#214#255#220#220#220#255#226#226#226#255#17#17#170#255#17#17#170#255 + +#17#17#170#255#24#24#175#253#0#0#146#196#255#255#255#0#255#255#255#0#0#0#141 + +#167'..'#192#245#18#18#180#255#17#17#180#255#209#209#209#255#214#214#214#255 + +#220#220#220#255#226#226#226#255#230#230#230#255#234#234#234#255#17#17#180 + +#255#17#17#180#255#18#18#175#245#0#0#141#167#255#255#255#0#255#255#255#0#0#0 + +#137'l'#22#22#170#226#22#22#193#255#209#209#209#255#214#214#214#255#220#220 + +#220#255#17#17#173#255#17#17#173#255#234#234#234#255#238#238#238#255#238#238 + +#238#255#17#17#190#255#9#9#161#227#0#0#137'l'#255#255#255#0#255#255#255#0#0#0 + +#133#26#3#3#138#191#24#24#193#246#18#18#178#255#220#220#220#255#17#17#178#255 + +#17#17#200#255#17#17#200#255#17#17#178#255#238#238#238#255#17#17#178#255#15 + +#15#188#246#2#2#137#191#0#0#133#26#255#255#255#0#255#255#255#0#0#0#131#0#0#0 + +#127'M'#4#4#136#205#18#18#196#246#18#18#182#255#17#17#209#255#17#17#209#255 + +#17#17#209#255#17#17#209#255#17#17#182#255#15#15#194#246#3#3#136#205#0#0#127 + +'M'#0#0#131#0#255#255#255#0#255#255#255#0#0#0#0#0#0#0#31#0#0#0'SM'#2#2't'#191 + +#8#8#157#227#14#14#196#245#17#17#212#253#17#17#212#253#14#14#196#245#8#8#157 + +#227#2#2't'#191#0#0'SM'#0#0#31#0#0#0#0#0#255#255#255#0#255#255#255#0#0#0#0#4 + +#0#0#0#23#0#0#0'+'#0#0#26'C'#0#0'D'#128#0#0'Z'#171#0#0']'#196#0#0']'#196#0#0 + +'Z'#171#0#0'D'#128#0#0#26'C'#0#0#0'-'#0#0#0#24#0#0#0#4#255#255#255#0#255#255 + +#255#0#0#0#0#2#0#0#0#12#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#23#0#0#0#12#0#0#0#2#255#255#255#0'TTT'#0'T' + +'TT'#0'TTT'#0'UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"TTT'#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[UUU'#0'TTT'#0'PPP'#0'PPPi'#187 + +#187#187#255#185#185#185#255#182#182#182#255#180#180#180#255#176#176#176#255 + +#173#173#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'fUUU'#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"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'PPPiRRR['#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#208 + +#197#197#255#188#188#188#255#246#246#246#255#248#248#248#255'KKKkPPPi'#187 + +#187#187#255#185#185#185#255#182#182#182#255#180#180#180#255#176#176#176#255 + +#173#173#173#255#169#169#169#255#166#166#166#255#162#162#162#255#160#160#160 + +#255#157#157#157#255#145#145#145#255#240#240#240#255#244#244#244#255'EEEnTTT' + +'g'#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#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 + +#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 + +#246#246#255#246#246#246#255#248#248#248#255#166#166#166#255#232#232#232#255 + +#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 + +#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 + +#255#228#228#228#255#228#228#228#255#228#228#228#255#228#228#228#255'..'#167 + +#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#0#0#152#204 + +'---x'#236#236#236#255#232#232#232#255#232#232#232#255#232#232#232#255#232 + +#232#232#255#232#232#232#255#232#232#232#255#232#232#232#255'__'#173#255'//' + +#149#255'00'#150#255#5#5'w'#228#0#0#128#204#0#0#128#204#0#0#132#153#17#17#17 + +'e'#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20 + +#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#20#20#20#131#17#17 + +#17'e'#0#0'Z'#0#0#0'w'#0#0#0#128#0#0#0#0#10#0#0#0#24#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#0#0#0#25#0#0#0#11#0 + +#0#0#0#0#0'w'#0#0#0#128#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#212#151'n'#201#212#158'{'#201#208#152 + +'q'#201#214#164#130#201#205#142'h'#201#205#144'i'#201#208#154'u'#201#209#153 + +'s'#201#200#139'b'#201#173'Z +'#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#204#141'e'#201#243#205#176#201#255#255 + +#255#201#227#199#179#201#255#255#255#201#255#255#255#201#255#255#255#201#255 + +#255#255#201#234#191#161#201#201#137'`'#201#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#134'['#201#239#192 + +#158#201#217#162'}'#248#211#157'z'#248#213#163#128#248#218#174#143#248#210 + +#154'w'#248#210#155'w'#248#210#156'w'#248#208#151'q'#248#200#139'b'#222#173 + +'Z /'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#200#136']'#201 + +#239#191#161#201#209#153'u'#248#244#210#184#248#255#255#255#248#230#205#187 + +#248#255#255#254#248#255#255#255#248#251#246#242#248#248#241#237#248#234#191 + +#161#222#201#137'`'#222#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255 + +#0#202#141'e'#201#234#184#153#201#201#137'_'#248#237#189#155#248#212#151'n' + +#255#212#158'{'#255#208#152'q'#255#214#164#130#255#205#142'h'#255#205#144'i' + +#255#208#154'u'#255#209#153's'#255#200#139'b'#255#173'Z 6'#255#255#255#0#255 + +#255#255#0#201#139'a'#201#230#181#146#201#203#139'a'#248#238#188#158#248#204 + +#141'e'#255#243#205#176#255#255#255#255#255#227#199#179#255#255#255#255#255 + +#255#255#255#255#255#255#255#255#255#255#255#255#234#191#161#255#201#137'`' + +#255#255#255#255#0#255#255#255#0#196#129'T'#201#234#182#151#201#206#152's' + +#248#234#190#161#248#199#134'['#255#239#192#158#255#255#255#255#255#204#147 + +'n'#255#255#255#255#255#255#255#255#255#255#251#247#255#255#248#241#255#228 + +#175#140#255#199#138'a'#255#255#255#255#0#255#255#255#0#195#127'Q'#201#239 + +#182#154#201#204#150'o'#248#214#182#145#248#200#136']'#255#239#191#161#255 + +#253#252#250#255#254#252#251#255#254#253#253#255#254#253#252#255#253#251#250 + +#255#253#252#251#255#221#168#133#255#193#127'S'#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#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#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#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 + +#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#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 + +'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#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' + +#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 + +#136#222#207#133'U'#156#180'i='#10#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#203#134'V'#218#254#245#237#222#252 + +#222#197#222#251#224#199#222#249#220#194#222#245#211#180#222#254#249#243#222 + +#250#226#196#222#236#193#147#222#195'}H'#128#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#203#134'U'#219#254#246 + +#240#222#252#226#205#222#252#227#205#222#250#223#200#222#247#217#188#222#245 + +#233#221#222#250#243#235#222#251#248#243#222#205#149'e'#220#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#203#134'U' + +#219#254#247#241#222#252#229#210#222#252#228#209#222#251#226#204#222#249#221 + +#196#222#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 + +#203#134'T'#219#255#247#242#222#254#231#213#222#254#231#213#222#253#229#209 + +#222#250#224#202#222#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#203#133'S'#219#255#247#240#222#255#231#213#222#253#231 + +#214#222#253#230#212#222#252#228#208#222#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#202#132'R'#219#255#247#241#222 + +#255#233#217#222#255#234#219#222#255#233#217#222#255#231#215#222#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#204 + +#131'R'#219#251#245#238#222#255#233#217#222#255#234#219#222#255#233#217#222 + +#255#231#215#222#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#207#130'S'#222#239#241#231#222#255#233#217#222#255 + +#234#219#222#255#233#217#222#255#231#215#222#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#200'|N'#211#252#243#236 + +#222#250#241#232#222#250#240#231#222#251#241#233#222#251#242#234#222#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 + +#199'yJ'#185#200'yK'#206#200'uE'#221#199'uE'#212#200'uE'#212#199'uE'#212#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#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#204#131'R'#251#251#245#238#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#251#246#239 + +#255#204#131'U'#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#207#130'S'#255#239#241#231#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#239#242#232#255#206#129'V'#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#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 + +#251#242#235#255#253#244#238#255#202#128'T'#249#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#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#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 + +#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 + +#0#255#255#255#0#255#255#255#0#0#0#149'x'#0#0#148#255#0#0#148#255#0#0#148#255 + +#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 + +#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 + +#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#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#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#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#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#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#0#0#193'x'#0#0#195#255#0#0 + +#195#255#0#0#195#255#0#0#196'x'#255#255#255#0#255#255#255#0#0#0#196'x'#0#0 + +#195#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#0#0#200'F'#0#0#200#255#0#0#200#255#0#0#201#255#0#0#202'x'#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0#202'x'#0#0#201#255#0#0 + +#201#255#0#0#201#255#0#0#200'F'#255#255#255#0#255#255#255#0#0#0#255#1#0#0#206 + +#150#0#0#206#255#0#0#206'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#206'x'#0#0#207#255#0#0#207#150#0#0#255 + +#1#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0#211'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#211'F'#0#0#255#1#255#255#255#0#255#255#255#0#255 + +#255#255#0#255#255#255#0#0#0#0#6#0#0#0#14#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*' + +#0#0#0'+'#0#0#0')'#0#0#0'$'#0#0#0#29#0#0#0#21#0#0#0#13#0#0#0#4#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 + +'ZZP<ZZP'#199'ff]'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ttk'#255 + +'ttk'#255'ttk'#255'ttk'#255'ttk'#255'ff]'#255'ZZP'#199'ZZP<ZZP'#204#191#191 + +#184#255#244#244#241#255#246#246#244#255#246#246#244#255#246#246#244#255#246 + +#246#244#255#246#246#244#255#246#246#244#255#246#246#244#255#246#246#244#255 + +#246#246#244#255#246#246#244#255#244#244#241#255#191#191#185#255'ZZP'#204'bb' + +'X'#255#230#230#224#255#227#227#218#255#225#225#216#255#225#225#216#255#221 + +#221#212#255#221#221#212#255#225#225#216#255#225#225#216#255#221#221#212#255 + +#221#221#212#255#225#225#216#255#225#225#216#255#227#227#218#255#231#231#225 + +#255'ddZ'#255'hh^'#255#218#218#208#255#217#217#207#255#217#217#207#255#213 + +#213#203#255'}}u'#255#132#132'|'#255#213#213#205#255#213#213#205#255#132#132 + +'|'#255'}}u'#255#213#213#203#255#217#217#207#255#217#217#207#255#218#218#208 + +#255'llb'#255'ee['#255#214#214#204#255#214#214#204#255#210#210#200#255'zzs' + +#255'MMC'#255'MMC'#255#127#127'x'#255#127#127'x'#255'MMC'#255'MMC'#255'zzs' + +#255#210#210#200#255#214#214#204#255#214#214#204#255'ii_'#255'ee['#255#210 + +#210#200#255#210#210#200#255#206#206#198#255'vvn'#255'HH>'#255'HH>'#255'HH>' + +#255'HH>'#255'HH>'#255'HH>'#255'vvn'#255#206#206#198#255#210#210#200#255#210 + +#210#200#255'ii_'#255'ddZ'#255#206#206#196#255#206#206#196#255#206#206#196 + +#255#206#206#198#255'zzs'#255'BB8'#255'BB8'#255'BB8'#255'BB8'#255'zzs'#255 + +#206#206#198#255#206#206#196#255#206#206#196#255#206#206#196#255'hh^'#255'dd' + +'Z'#255#203#203#193#255#203#203#193#255#203#203#193#255#201#201#191#255'wwo' + +#255'==3'#255'==3'#255'==3'#255'==3'#255'wwo'#255#201#201#191#255#203#203#193 + +#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'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 + +#255#150#150#144#255#197#197#188#255#197#197#188#255#150#150#144#255#141#141 + +#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 + +#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 + +#149#139#255#149#149#139#255#139#139#132#214#186#186#182'\'#183#183#179#216 + +#166#166#160#249#161#161#153#250#161#161#153#250#161#161#153#250#161#161#154 + +#250#161#161#154#250#161#161#154#250#161#161#155#250#161#161#155#250#162#162 + +#155#250#162#162#155#250#167#167#161#249#186#186#182#217#188#188#184']'#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#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'm'#156#212#137'j'#154#210#251'f'#151#207#238#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 + +'p'#158#214#219'm'#156#212#255#133#177#218#255'Z'#145#185#255'`'#147#203#234 + +#255#255#255#0#255#255#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255'www' + +#255'uuu'#255'rrr'#255'q'#158#212#255'o'#158#214#255#135#178#220#255#171#211 + +#232#255#169#208#230#255'X'#144#184#255'Y'#142#198#234#255#255#255#0#255#255 + +#255#0'}}}'#255#153#153#153#255#153#153#153#255#154#154#154#255#154#154#154 + +#255#155#155#155#255#155#155#155#255'o'#157#211#255#170#209#231#255#171#209 + +#231#255#152#199#225#255#145#194#222#255'V'#143#183#255'R'#137#193#234#255 + +#255#255#0#255#255#255#0'zzz'#255#153#153#153#255'R'#145'Y'#255#153#154#153 + +#255#155#155#155#255#156#156#156#255#156#156#156#255'l'#154#208#255#167#206 + +#229#255#143#193#223#255#137#189#220#255#139#189#220#255'S'#141#182#255'K' + +#132#188#234#255#255#255#0#255#255#255#0'www'#255#154#154#154#255'='#138'E' + +#255'I'#138'O'#255#156#156#156#255#157#157#157#255#157#157#157#255'f'#150#204 + +#255#162#203#227#255#137#189#220#255#131#185#218#255#132#185#218#255'Q'#139 + +#181#255'C~'#182#234'D'#148'M'#255'B'#145'K'#255'?'#141'H'#255'='#137'E'#255 + +']'#164'e'#255'Z'#160'a'#255'E'#131'K'#255#158#158#158#255#158#158#158#255'`' + +#146#201#255#158#199#226#255#131#184#218#255'}'#180#215#255'~'#179#215#255'O' + +#137#180#255';y'#177#234'A'#144'J'#255#148#210#159#255#145#208#154#255#141 + +#205#150#255#137#203#146#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159 + +#159#255'Z'#142#196#255#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196 + +#237#255'K'#136#179#255'4s'#171#234'>'#139'F'#255#143#206#153#255'}'#198#135 + +#255'x'#195#129#255's'#192'|'#255't'#192'|'#255'y'#194#129#255'I'#144'O'#255 + +'T'#127'W'#255'T'#137#191#255#148#191#221#255'u'#173#212#255'c'#184#225#255 + +'K'#212#255#255'B'#139#184#255',n'#166#234';'#135'B'#255#137#203#146#255#132 + +#200#141#255#128#198#136#255'{'#195#131#255'w'#193#127#255'G'#143'M'#255';t?' + +#255#161#161#161#255'L'#132#186#255#141#187#219#255'n'#168#209#255'f'#166#209 + +#255'_'#180#223#255'G'#133#177#255'%i'#161#234'7'#130'>'#255'4~;'#255'1y7' + +#255'.u4'#255'I'#145'P'#255'F'#143'L'#255'9s='#255#161#161#161#255#162#162 + +#162#255'E~'#180#255#136#183#217#255'g'#163#207#255'a'#158#204#255'c'#159#204 + +#255'E'#131#177#255#31'd'#156#234#255#255#255#0#255#255#255#0'```'#255#160 + +#160#160#255'=vA'#255'6q9'#255#162#162#162#255#162#162#162#255#163#163#163 + +#255'=y'#176#255#130#179#215#255'b'#159#204#255'Z'#154#201#255'^'#155#202#255 + +'C'#129#175#255#25'`'#152#234#255#255#255#0#255#255#255#0'\\\'#255#161#161 + +#161#255'<s@'#255#160#161#161#255#163#163#163#255#163#163#163#255#164#164#164 + +#255'6t'#170#255'}'#175#212#255'['#154#201#255'T'#149#199#255'X'#150#200#255 + +'A'#128#174#255#19'\'#148#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#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 + +#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 + +#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#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 + +#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 + +#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 + +#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#255 + +#226#224#221#255#255#251#244#255#255#249#240#255#255#247#235#255#255#245#230 + +#255#255#243#226#255#255#242#221#255#255#240#217#255#255#238#212#255#198#188 + +#174#255#140#140#140#239#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#255#226 + +#223#218#255#255#249#240#255#255#247#235#255#255#245#231#255#255#244#226#255 + +#255#242#221#255#255#240#217#255#255#238#212#255#255#236#208#255#198#187#172 + +#255#140#140#140#207#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#239#190#188 + +#183#255#255#247#236#255#255#245#231#255#255#244#226#255#255#242#222#255#255 + +#240#217#255#255#238#213#255#255#236#208#255#255#235#203#255#162#158#151#255 + +#140#140#140#175#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#128#147#147#146 + +#255#241#232#220#255#255#244#227#255#255#242#222#255#255#240#217#255#255#238 + +#213#255#255#236#208#255#255#235#204#255#219#204#181#255#140#140#140#255#140 + +#140#140'P'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#16#140#140#140#207 + +#162#159#156#255#233#223#207#255#255#240#218#255#255#238#213#255#255#236#208 + +#255#255#235#204#255#219#204#181#255#147#146#144#255'|||'#255#129#129#129#207 + +#140#140#140#16#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#140#140#16#140#140#140 + +#191#140#140#140#255#162#159#154#255#190#182#171#255#183#176#165#255#154#152 + +#148#255#140#140#140#255'```'#255'<<<'#255'aaa'#255#129#129#129#207#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'P'#140#140#140 + +#159#140#140#140#191#140#140#140#191#140#140#140#143'TTTP'#2#2#2#239#22#22#22 + +#255';;;'#255'aaa'#255#129#129#129#207#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2#2#2#239 + +#21#21#21#255';;;'#255'aaa'#255#129#129#129#207#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2 + +#2#2#239#21#21#21#255';;;'#255'```'#255#128#128#128#207#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1'0'#2 + +#2#2#239#21#21#21#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#0#0#0#0#0#0#0#0#0#0#0#1#1#1' '#2#2#2#207 + +#20#20#20#255'999'#207#0#0#9'TTrayIcon'#9'MTrayIcon'#9'PopUpMenu'#7#9'TrayPo' + +'pup'#9'Icon.Data'#10#242#19#0#0#238#19#0#0#0#0#1#0#1#0'('#30#0#0#1#0' '#0 + +#216#19#0#0#22#0#0#0'('#0#0#0'('#0#0#0'<'#0#0#0#1#0' '#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#12#17'E'#1#0#0#0#0'F['#136#0#0#0#0#0#26'9o3'#9 + +#30'o'#255#8#25'r'#255#9#25'r'#255#7#24'r'#255#8#24'q'#255#12'7'#144#255#21 + +'w'#218#255#21'z'#220#255#22'z'#223#255#23'x'#225#255#23'v'#220#255#18'W'#179 + +#255#12')x'#255#10#23'a'#255#10#20'_'#255#10#21'`'#255#9#21'a'#255#9#21'`' + +#255#9#21'e'#255#9#23'n'#255#9#22'o'#255#9#22'o'#255#8#22'o'#255#9#22'p'#255 + +#9#23'm'#255#8#22'i'#255#11#22'b'#255#12#19'F'#255#13#17'E'#255#12#17'C'#255 + +#12#16'C'#255#12#16'C'#255#12#15'B'#255#12#15'C'#255#12#16'D'#255#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#16'+q'#175#7#26't'#255#8#26't'#255#9#25't'#255#8#25't' + +#255#8#25's'#255#17'Y'#185#255#24'{'#226#255#25'|'#227#255#23'{'#230#255#24 + +'{'#230#255#24'|'#230#255#25'}'#232#255#24'x'#225#255#19'['#188#255#11'"o' + +#255#10#19'_'#255#11#20'b'#255#10#21'c'#255#10#20'c'#255#9#20'd'#255#9#23'o' + +#255#8#23'r'#255#8#23's'#255#9#22's'#255#8#23'r'#255#9#22'n'#255#10#23'n'#255 + +#11#19'Q'#255#13#17'D'#255#12#17'D'#255#12#16'E'#255#12#16'E'#255#13#16'E' + +#255#13#16'D'#255#12#16'E'#255#0#0#0#0#0#0#0#0#0#0#0#0'2Hl5'#8#27'h'#249#9#25 + +'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 + +'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 + +#24'x'#255#8#24'v'#255#7#28'v'#255#24'{'#224#255#26'~'#228#255#24#127#231#255 + +#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 + +'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 + +#26'}'#233#255#26'}'#232#255#25'}'#231#255#24'{'#232#255#25'|'#231#255#31#129 + +#241#255#11#30'q'#255#10#21'b'#255#11#21'd'#255#9#21'b'#255#9#20'e'#255#9#20 + +'b'#255#9#21'k'#255#8#23's'#255#7#22'w'#255#8#24'v'#255#8#22'u'#255#8#23'v' + +#255#11#21'['#255#13#16'I'#255#12#15'I'#255#11#16'I'#255#12#15'I'#255#13#15 + +'E'#255#12#14'E'#255#0#0#0#0#0#0#0#0'frw'#17#19'(q'#188#8#26'x'#255#8#25'y' + +#255#9#25'w'#255#8#23's'#255#8#24'w'#255#7#24'v'#255#24']'#185#255'%Pu'#255 + +'!>\'#255'0c'#147#255#27'c'#173#255#29'~'#230#255#29'~'#235#255#29'}'#233#255 + +#26'|'#236#255#26'|'#235#255#27#130#240#255#17'2'#140#255#10#20'b'#255#10#22 + +'d'#255#11#20'f'#255#10#20'e'#255#10#20'a'#255#8#20'f'#255#7#23'v'#255#8#22 + +'w'#255#9#22'w'#255#8#22't'#255#8#22'x'#255#11#21'f'#255#12#17'N'#255#13#17 + +'O'#255#12#16'K'#255#13#16'I'#255#12#16'F'#255#12#15'G'#255#0#0#0#0'hb'#127#0 + +#6'(k'#5#13'$x'#218#9#26'y'#255#10#26'x'#255#10#23'o'#255#8#23'w'#255#9#24'w' + +#255#7#27'x'#255#23'c'#199#255#29'b'#168#255#31';['#255'x'#142#158#255'k'#128 + +#186#255#29'2d'#255' t'#211#255#30'}'#235#255#30'{'#234#255#28'|'#234#255#25 + +'~'#238#255#20'U'#188#255#9#18'b'#255#11#21'd'#255#11#21'e'#255#11#20'b'#255 + +#10#20'c'#255#9#19'f'#255#8#23'u'#255#9#23'w'#255#8#22'v'#255#9#21'r'#255#8 + +#22'w'#255#9#22'n'#255#10#17'Y'#255#13#20'^'#255#13#16'J'#255#13#15'H'#255#12 + +#15'C'#255#13#14'I'#255'}}'#131'1'#0#0#0#0'nx'#138':'#7' s'#232#9#28'x'#255 + +#10#27'u'#255#8#25'q'#255#7#25'x'#255#8'%'#131#255#23'v'#222#255#27#130#228 + +#255#31'x'#215#255#24'h'#192#255#21#128#231#255#19'j'#199#255'5x'#191#255'#J' + +'k'#255#25'j'#187#255#24#128#228#255#25'~'#231#255#22#129#234#255#8'i'#213 + +#255#10'7'#144#255#9#26'g'#255#8#20'_'#255#9#19'a'#255#8#20'b'#255#8' w'#255 + +#8#27'z'#255#8#23'y'#255#8#24'w'#255#7#23'r'#255#8#23'y'#255#9#24'r'#255#9#18 + +'a'#255#11#23'h'#255#11#17'L'#255#13#16'H'#255#11#15'H'#255#10#15'I'#255'~|' + +#134#26#127'z'#131'%Yh{T'#9#31'k'#255#9#29'z'#255#9#27'r'#255#9#24's'#255#8 + +#29'{'#255#20'h'#205#255'('#128#218#255#19'B'#145#255#12'2'#130#255#12'2'#129 + +#255#23'L'#156#255#31#136#242#255#28#128#233#255#28'~'#228#255#27'c'#177#255 + +#26'u'#213#255#26#127#230#255#24#128#235#255#8'h'#214#255#8'`'#210#255#7'T' + +#192#255#7'F'#171#255#8'='#158#255#7'@'#164#255#12'T'#193#255#9'$'#133#255#8 + +#24'w'#255#9#25'v'#255#9#22'q'#255#9#23'x'#255#10#23'q'#255#9#19'h'#255#12#22 + +'n'#255#13#17'L'#255#12#15'I'#255#11#15'K'#255#11#15'K'#255#0#0#0#0'gyy+?a' + +#147's'#11#28'd'#255#10#19'T'#255#12#28'e'#255#9#24'l'#255#12'<'#158#255'$|' + +#214#255#10'&f'#255#13':'#141#255#9'5'#135#255#13'3'#127#255#14#22'.'#255#18 + +'9q'#255#31'~'#229#255#29'|'#230#255#30#127#234#255#25'h'#196#255#27'~'#231 + +#255#25#127#238#255#8'h'#215#255#7'b'#211#255#8'['#201#255#6'`'#211#255#6'b' + +#212#255#8'c'#212#255#9'`'#209#255#12';'#162#255#8#23'x'#255#11#26'r'#255#8 + +#20'`'#255#7#23'z'#255#10#22'q'#255#8#20'm'#255#11#22'o'#255#13#17'L'#255#12 + +#16'J'#255#11#16'K'#254#12#15'I'#255#0#0#0#0#0#0#0#0'!P'#139'-'#11'$n'#255#12 + +#25'P'#255#11#21'J'#255#7#22'd'#255#19'U'#184#255#18'e'#208#255#15'r'#235#255 + +#15'y'#244#255#13'j'#215#255#14'K'#164#255#15'(Y'#255#9#19'3'#255#22'N'#163 + +#255#28#128#231#255#29#127#232#255#29#130#236#255#25'n'#209#255#26#128#235 + +#255#9'`'#205#255#7'_'#206#255#7'b'#214#255#6'c'#216#255#7'c'#213#255#8']' + +#205#255#6']'#207#255#13'L'#188#255#7#23'y'#255#13#26'h'#255#8#17'X'#255#8#23 + +'x'#255#10#22'n'#255#8#21's'#255#11#22'm'#255#12#17'K'#255#10#16'J'#255#11#15 + +'L'#255#14#17'B'#225'ov'#143'W'#0#0#0#0#14'1t'#2#12'$m'#173#11#19'J'#255#12 + +#20'I'#255#9#22']'#255#12'R'#186#255#17's'#236#255#13'u'#240#255#12's'#240 + +#255#12's'#243#255#14'w'#238#255#15'd'#205#255#10'?'#156#255#14'Q'#184#255#27 + +'|'#233#255#27#127#236#255#26#127#239#255#27's'#216#255#22't'#222#255#7'g' + +#218#255#6'd'#216#255#6'c'#214#255#8'Z'#202#255#7'Y'#207#255#7'd'#214#255#6 + +'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 + +#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 + +#255#10#23'd'#255#10#16'H'#255#7#20'l'#255#7#23'{'#255#7#22'z'#255#8#22'|' + +#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 + +#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' + +#255#12#17'N'#255#11#15'L'#255#28#23'='#146#0#0#0#0#0#0#0#0'I|'#170#20'?|' + +#167'2%V'#142'<'#9'$~'#246#10#31'|'#255#11#23'W'#255#7'9'#146#255#7'g'#217 + +#255#10'b'#212#255#6'e'#214#255#6'f'#216#255#7'd'#216#255#6'c'#219#255#7'c' + +#220#255#8'e'#219#255#18'n'#221#255#17'o'#228#255#6']'#212#255#7'c'#219#255#7 + +'_'#213#255#6'^'#213#255#6'c'#219#255#6'b'#219#255#7'c'#221#255#7'c'#219#255 + +#6'd'#218#255#13'i'#219#255#11#27'Z'#255#10#16'G'#255#8#21'o'#255#7#23'z'#255 + +#7#23'|'#255#8#23'|'#255#12#21'c'#255#11#17'P'#255#10#16'O'#255#13#17'H'#255 + +''''#24'*-'#255#255#255#1'\VQ'#4'V'#130#165'-?{'#166':<b'#137'Y'#9' s'#249#7 + +#27#127#255#10#26'h'#255#8#23'X'#255#19'k'#199#255' q'#182#255#12'a'#200#255 + +#7'f'#219#255#6'e'#220#255#6'f'#219#255#6'd'#222#255#8'Y'#199#255#22'h'#210 + +#255#21'z'#236#255#6'g'#225#255#6'a'#217#255#6'b'#221#255#6'd'#224#255#6'c' + +#219#255#7'c'#220#255#6'c'#219#255#7'c'#216#255#6'i'#222#255#16'N'#170#255#9 + +#17'F'#255#7#18'_'#255#7#22'x'#255#7#23'|'#255#7#23#127#255#10#22'p'#255#10 + +#17'R'#255#11#17'P'#254#10#16'P'#255#20#17'?'#198#0#0#0#0#255#255#255#5#127 + +'xu'#8#0#0#0#0#0#0#0#0'"0e1'#10#29'w'#248#9#26#127#255#11#26'k'#255#11#19'L' + +#255#16'4'#131#255#23'G'#145#255#10'N'#177#255#6'd'#216#255#8'e'#221#255#8'e' + +#225#255#6'd'#224#255#11'Z'#208#255#30'P'#134#255#23'Bp'#255' '#128#217#255#8 + +'l'#225#255#8']'#215#255#7'\'#213#255#6'b'#221#255#6'c'#220#255#7'd'#222#255 + +#7'f'#224#255#15'`'#202#255#14'!d'#255#8#18'Z'#255#8#21'w'#255#7#22'~'#255#9 + +#23'~'#255#12#22'n'#255#12#19'U'#255#12#17'Q'#255#12#14'N'#255#14#16'K'#255 + +#25#19'61'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#22'+kq'#7#28'z'#254#8#26 + +'|'#255#12#25'd'#255#12#19'B'#255#9'4'#128#255#14'K'#169#255#6'U'#193#255#6 + +'f'#218#255#6'g'#219#255#6'g'#222#255#6'g'#223#255#7'_'#210#255#14'I'#160#255 + +#23'b'#168#255#22'S'#159#255#12'f'#210#255#6'f'#221#255#7'd'#220#255#7'`'#217 + +#255#7'b'#217#255#11'f'#213#255#14'C'#153#255#11#29'f'#255#7#20'k'#255#7#23 + +'{'#255#7#22'~'#255#8#23#127#255#10#22'f'#255#10#18'P'#255#9#16'P'#255#9#16 + +'O'#255#10#16'O'#255#14#17'H'#191'?6R'#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':El' + +#3#24')q'#185#8#27'{'#255#9#26'|'#255#12#21'W'#255#16#19'6'#255#19#30'('#255 + +#10#29'J'#255#7'\'#204#255#7'e'#219#255#7'f'#221#255#7'h'#221#255#7'g'#223 + +#255#13'N'#167#255#12'L'#180#255#10'C'#168#255#11'L'#178#255#17'E'#153#255#7 + +'X'#203#255#7'b'#220#255#6'c'#224#255#14'f'#218#255#16'-y'#255#7#20'h'#255#8 + +#24'|'#255#7#24'~'#255#7#22'~'#255#8#23'x'#255#12#21'Z'#255#10#16'O'#255#10 + +#16'P'#255#11#15'O'#255#11#16'O'#255#11#15'N'#254#23#19'@v'#255#255#0#0#189 + +#176#174#0#0#0#0#0#0#0#0#0#0#0#0#0#129#133#149#13#26'*q'#221#10#26'}'#255#10 + +#25#127#255#12#22']'#255#12#18'G'#255#9#27'Z'#255#8'e'#220#255#7'f'#221#255#8 + +'g'#222#255#10'd'#220#255#6'e'#225#255#8'd'#224#255#13'S'#158#255#13'!?'#255 + +#20')O'#255#17'1^'#255#7'K'#172#255#7'c'#224#255#7'd'#223#255#13'd'#212#255 + +#15'&u'#255#7#19'p'#255#8#24#127#255#8#23'}'#255#8#23'~'#255#7#24'{'#255#12 + +#28'b'#255#10#15'H'#255#11#17'Q'#255#11#17'N'#255#10#16'O'#254#10#15'P'#255 + +#14#15'H'#241'$'#21'+#'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'o'#128#136#14 + +#15'$k'#197#9#27#127#255#7#25#128#255#9#26'y'#255#10#20'Q'#255#11#17'E'#255#7 + +'-'#132#255#6'l'#229#255#17'c'#206#255#7' '#130#255#8'V'#200#255#6'd'#222#255 + +#7'e'#220#255#8'a'#210#255#7'^'#203#255#6'b'#215#255#7'g'#224#255#7'g'#223 + +#255#7'g'#224#255#13':'#146#255#8#25'x'#255#7#25'~'#255#8#24#127#255#7#24#127 + +#255#7#23'}'#255#7' ~'#255#12'?'#158#255#11#19'S'#255#11#16'P'#255#10#16'P' + +#255#10#17'O'#254#10#16'N'#255#24#18';'#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'Vb{'#2#30',j'#164#7#26'z'#255#8#26#129#255#8#25#129#255#8#25 + +'x'#255#9#22']'#255#9#17'W'#255#16'='#161#255#10#30#129#255#7#23'}'#255#8'(' + +#136#255#8'b'#223#255#7'g'#231#255#6'f'#229#255#6'f'#230#255#6'g'#229#255#6 + +'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 + +#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 + +#7#24#131#255#7#24#129#255#8#23#127#255#8#23'~'#255#6#28#129#255#8'U'#201#255 + +#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#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 + +#0#0'- 6'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#31')<'#0#0#0#0#0 + +'(*N9'#16#25'['#175#10#24'j'#255#9#23's'#255#10#22'_'#255#9#17'T'#254#7#22'v' + +#255#7#23#127#255#7#24#129#255#7#24#127#255#9#23'e'#255#10#17'K'#255#10#19'W' + +#255#8#16'N'#255#8#16'S'#255#7#20'i'#255#7#24'|'#255#6#24#129#255#7#24#130 + +#255#7#24'x'#255#8#23'{'#255#8#23#129#255#9#24'x'#255#10#19'W'#255#10#16'O' + +#255#10#17'R'#254#10#16'R'#255#14#17'J'#180#20#18'?T'#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'nI8'#0'nK<'#0#0#0#0#0#0#0#0 + +#0#29#24'.$'#14#21'>'#150#11#20'I'#239#6#16'Y'#255#6#23'~'#255#6#24#128#255#6 + +#24#128#255#7#24#129#255#8#24'y'#255#10#19'U'#255#9#17'X'#255#9#24'}'#255#7 + +#24#129#255#7#23#131#255#7#24#131#255#8#24#128#255#7#23'{'#255#8#22#129#255#6 + +#24#129#255#7#23#128#254#11#23'k'#255#11#17'R'#255#10#18'Q'#253#11#17'K'#255 + +#23#21':'#174'`GA'#15#0#0#0#0#31#17'#'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0'nI8'#0'pM;'#2'g@4'#0'O4,'#0#0#0#0#0#0#0#0#0'(%-' + +''''#10#21'c'#255#7#24#131#255#6#24#130#255#7#23#131#255#7#23#133#255#8#23 + +#127#255#9#22't'#255#10#19'a'#255#9#20'a'#255#8#21'l'#255#9#21'p'#255#8#21'v' + +#255#8#22'|'#255#7#22#130#255#8#22#131#255#8#23#132#255#10#24'|'#255#13#19'[' + +#255#15#18'L'#206#19#19'Ai'#23#22'/7"'#28'56*'#28'*)=$('#1#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'#^'#239#7#24#130#255#6#24#131#255#8#23 + +#130#255#8#24#132#255#7#22#130#255#7#23'~'#255#8#23#132#255#6#23#130#255#7#23 + +#129#255#8#23#132#255#7#23#131#255#8#22#131#255#7#23#133#255#8#24#132#254#8 + +#24#128#255#12#23'`'#253#24#22'@u"'#24'4'#7#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'A6I'#0#0#0#0#0'/,RA'#14#27'p'#255 + +#7#24#135#255#8#23#133#255#7#23#134#255#7#23#135#255#7#23#132#255#7#23#128 + +#255#8#22#131#255#8#23#132#255#8#22#133#255#8#22#134#255#8#22#134#255#9#22 + +#135#255#10#22#128#255#16#24'h'#188'!'#28'4$'#0#0#0#0#0#0#0#0#0#0#0#0'OC9'#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#14'\' + +#0#0#0#0#0' ''Rk'#13#30'o'#227#10#29'w'#229#11#28't'#229#10#29'u'#229#10#29 + +'w'#229#11#29'v'#229#10#29'y'#229#10#29'v'#229#11#29't'#229#11#28'v'#229#10 + +#28'w'#229#12#28'o'#232#28'#U'#143#23#25#31#4#0#0#0#0'E99'#0'SC;'#0'OC9'#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#248#0#0#0#0#0#0#0#240#0#0#0#0#0#0#0#240#0#0#0#0#0#0#0#224#0#0#0#0 + +#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0 + +#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#0#0#0#0#224#0#0#0#1#0#0#0 + +#240#0#0#0#1#0#0#0#240#0#0#0#1#0#0#0#240#0#0#0#3#0#0#0#240#0#0#0#3#0#0#0#240 + +#0#0#0#7#0#0#0#240#0#0#0#7#0#0#0#224#0#0#0#15#0#0#0#224#0#0#0#15#0#0#0#224#0 + +#0#0#15#0#0#0#224#0#0#0#31#0#0#0#240#0#0#0'?'#0#0#0#240#0#0#0'?'#0#0#0#248#0 + +#0#0#255#0#0#0#254#0#0#1#255#0#0#0#255#128#0#15#255#0#0#0#255#128#0'?'#255#0 + +#0#0#255#192#0#127#255#0#0#0#255#224#0#255#255#0#0#0#7'Visible'#9#7'OnClick' + +#7#6'NoTray'#4'left'#3#192#1#0#0#10'TPopupMenu'#9'TrayPopup'#6'Images'#7#17 + +'Mufasa_Image_List'#4'left'#3'8'#2#0#9'TMenuItem'#8'TrayStop'#6'Action'#7#16 + +'ActionStopScript'#7'Enabled'#8#7'OnClick'#7#17'ActionStopExecute'#0#0#9'TMe' + +'nuItem'#9'TrayPause'#6'Action'#7#17'ActionPauseScript'#7'Enabled'#8#7'OnCli' + +'ck'#7#18'ActionPauseExecute'#0#0#9'TMenuItem'#8'TrayPlay'#6'Action'#7#15'Ac' + +'tionRunScript'#7'OnClick'#7#16'ActionRunExecute'#0#0#9'TMenuItem'#11'TrayDi' + +'vider'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#12'MenuItemShow'#7'Caption'#6#4'S' + +'how'#7'OnClick'#7#17'MenuItemShowClick'#0#0#9'TMenuItem'#12'MenuItemHide'#7 + +'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 + +#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 + +'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'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 + +#255#255#0#255#255#255#0'\\\'#255#161#161#161#255'<s@'#255#160#161#161#255 + +#163#163#163#255#163#163#163#255#164#164#164#255'6t'#170#255'}'#175#212#255 + +'['#154#201#255'T'#149#199#255'X'#150#200#255'A'#128#174#255#19'\'#148#234 + +#255#255#255#0#255#255#255#0'```'#255#160#160#160#255'=vA'#255'6q9'#255#162 + +#162#162#255#162#162#162#255#163#163#163#255'=y'#176#255#130#179#215#255'b' + +#159#204#255'Z'#154#201#255'^'#155#202#255'C'#129#175#255#25'`'#152#234'7' + +#130'>'#255'4~;'#255'1y7'#255'.u4'#255'I'#145'P'#255'F'#143'L'#255'9s='#255 + +#161#161#161#255#162#162#162#255'E~'#180#255#136#183#217#255'g'#163#207#255 + +'a'#158#204#255'c'#159#204#255'E'#131#177#255#31'd'#156#234';'#135'B'#255#137 + +#203#146#255#132#200#141#255#128#198#136#255'{'#195#131#255'w'#193#127#255'G' + +#143'M'#255';t?'#255#161#161#161#255'L'#132#186#255#141#187#219#255'n'#168 + +#209#255'f'#166#209#255'_'#180#223#255'G'#133#177#255'%i'#161#234'>'#139'F' + +#255#143#206#153#255'}'#198#135#255'x'#195#129#255's'#192'|'#255't'#192'|' + +#255'y'#194#129#255'I'#144'O'#255'T'#127'W'#255'T'#137#191#255#148#191#221 + +#255'u'#173#212#255'c'#184#225#255'K'#212#255#255'B'#139#184#255',n'#166#234 + +'A'#144'J'#255#148#210#159#255#145#208#154#255#141#205#150#255#137#203#146 + +#255#132#200#141#255'Q'#152'X'#255'A|F'#255#159#159#159#255'Z'#142#196#255 + +#152#195#224#255'|'#179#215#255't'#175#214#255'^'#196#237#255'K'#136#179#255 + +'4s'#171#234'D'#148'M'#255'B'#145'K'#255'?'#141'H'#255'='#137'E'#255']'#164 + +'e'#255'Z'#160'a'#255'E'#131'K'#255#158#158#158#255#158#158#158#255'`'#146 + +#201#255#158#199#226#255#131#184#218#255'}'#180#215#255'~'#179#215#255'O'#137 + +#180#255';y'#177#234#255#255#255#0#255#255#255#0'www'#255#154#154#154#255'=' + +#138'E'#255'I'#138'O'#255#156#156#156#255#157#157#157#255#157#157#157#255'f' + +#150#204#255#162#203#227#255#137#189#220#255#131#185#218#255#132#185#218#255 + +'Q'#139#181#255'C~'#182#234#255#255#255#0#255#255#255#0'zzz'#255#153#153#153 + +#255'R'#145'Y'#255#153#154#153#255#155#155#155#255#156#156#156#255#156#156 + +#156#255'l'#154#208#255#167#206#229#255#143#193#223#255#137#189#220#255#139 + +#189#220#255'S'#141#182#255'K'#132#188#234#255#255#255#0#255#255#255#0'}}}' + +#255#153#153#153#255#153#153#153#255#154#154#154#255#154#154#154#255#155#155 + +#155#255#155#155#155#255'o'#157#211#255#170#209#231#255#171#209#231#255#152 + +#199#225#255#145#194#222#255'V'#143#183#255'R'#137#193#234#255#255#255#0#255 + +#255#255#0#128#128#128#255'~~~'#255'|||'#255'zzz'#255'www'#255'uuu'#255'rrr' + +#255'q'#158#212#255'o'#158#214#255#135#178#220#255#171#211#232#255#169#208 + +#230#255'X'#144#184#255'Y'#142#198#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#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0'p'#158#214#219'm'#156#212#255#133 + +#177#218#255'Z'#145#185#255'`'#147#203#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#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 + +'m'#156#212#137'j'#154#210#251'f'#151#207#238#7'OnClick'#7#17'ActionExitExec' + +'ute'#0#0#0#10'TPopupMenu'#8'TabPopup'#6'Images'#7#17'Mufasa_Image_List'#4'l' + +'eft'#3#152#1#0#9'TMenuItem'#14'MenuItemTabAdd'#6'Action'#7#12'ActionNewTab' + +#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#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#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'~'#2#231#14'~'#2#231'='#226',' + +#255#14'~'#2#231#14'~'#2#231#11'_'#2#176'''''''{'#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#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#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'.' + +#255'u'#238'd'#255'>'#177'.'#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'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 + +#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 + +#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#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'MMM' + +'jQQQh'#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#252#252#255#253#253#253 + +#255'QQQhUUUg'#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#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#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#200#200#200#255#198#198 + +#198#255#198#197#197#255#201#197#197#255#205#198#198#255#209#199#199#255#215 + +#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUU' + +'fUUUfUUUfUUUfUUUYUUU"'#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#7'OnClick'#7#19'ActionNewTabExecute'#0#0#9'TMenuItem'#16 + +'MenuItemTabClose'#7'Caption'#6#9'Close tab'#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#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#0#0#0#26#0#0 + +#0#26#0#0#0#26#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#4#4 + +'['#207#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2's'#231#2#2'X'#176'''' + +'''''{'#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'//'#167#255'^^' + +#247#255'^^'#247#255'^^'#247#255'^^'#247#255'^^'#247#255#5#5#139#229'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'[['#190#255'--'#179#255 + +'--'#179#255'--'#179#255'--'#179#255'//'#181#255#17#17#129#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 + +#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#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#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#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#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#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#253#253#253#255'QQQhUUUg'#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 + +#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 + +#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 + +#200#200#200#255#198#198#198#255#198#197#197#255#201#197#197#255#205#198#198 + +#255#209#199#199#255#215#203#203#255#196#184#184#212'RRR[UUU"UUUYUUUfUUUfUUU' + +'fUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUfUUUYUUU"'#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#10'ImageIndex'#2#16#7'OnCli' + +'ck'#7#21'MenuItemTabCloseClick'#0#0#9'TMenuItem'#22'MenuItemTabCloseOthers' + +#7'Caption'#6#16'Close Other Tabs'#7'OnClick'#7#27'MenuItemTabCloseOthersCli' + +'ck'#0#0#0#11'TActionList'#10'ActionList'#6'Images'#7#17'Mufasa_Image_List'#4 + +'left'#3'p'#1#0#7'TAction'#13'ActionTabNext'#7'Caption'#6#8'Next tab'#9'OnEx' + +'ecute'#7#20'ActionTabNextExecute'#8'ShortCut'#3#9'@'#0#0#7'TAction'#13'Acti' + +'onTabLast'#7'Caption'#6#8'Last tab'#9'OnExecute'#7#20'ActionTabLastExecute' + +#8'ShortCut'#3#9'`'#0#0#7'TAction'#14'ActionCloseTab'#7'Caption'#6#10'&Close' + +' Tab'#10'ImageIndex'#2#16#9'OnExecute'#7#21'ActionCloseTabExecute'#26'Secon' + +'daryShortCuts.Strings'#1#6#7'Ctrl+F4'#0#8'ShortCut'#3'W@'#0#0#7'TAction'#12 + +'ActionNewTab'#7'Caption'#6#8'New &Tab'#10'ImageIndex'#2#15#9'OnExecute'#7#19 + +'ActionNewTabExecute'#8'ShortCut'#3'T@'#0#0#7'TAction'#15'ActionNewScript'#7 + +'Caption'#6#4'&New'#10'ImageIndex'#2#9#9'OnExecute'#7#16'ActionNewExecute'#8 + +'ShortCut'#3'N@'#0#0#7'TAction'#16'ActionOpenScript'#7'Caption'#6#5'&Open'#10 + +'ImageIndex'#2#10#9'OnExecute'#7#17'ActionOpenExecute'#8'ShortCut'#3'O@'#0#0 + +#7'TAction'#16'ActionSaveScript'#7'Caption'#6#5'&Save'#10'ImageIndex'#2#14#9 + +'OnExecute'#7#17'ActionSaveExecute'#8'ShortCut'#3'S@'#0#0#7'TAction'#18'Acti' + +'onSaveScriptAs'#7'Caption'#6#9'Save as..'#9'OnExecute'#7#19'ActionSaveAsExe' + +'cute'#0#0#7'TAction'#15'ActionRunScript'#7'Caption'#6#4'&Run'#9'OnExecute'#7 + +#16'ActionRunExecute'#8'ShortCut'#2'x'#0#0#7'TAction'#17'ActionPauseScript'#7 + +'Caption'#6#6'&Pause'#9'OnExecute'#7#18'ActionPauseExecute'#0#0#7'TAction'#16 + +'ActionStopScript'#7'Caption'#6#5'&Stop'#9'OnExecute'#7#17'ActionStopExecute' + +#0#0#7'TAction'#13'ActionSaveAll'#7'Caption'#6#8'Save All'#10'ImageIndex'#2 + +#21#9'OnExecute'#7#20'ActionSaveAllExecute'#8'ShortCut'#3'S`'#0#0#7'TAction' + +#16'ActionClearDebug'#7'Caption'#6#5'Clear'#10'ImageIndex'#2#4#9'OnExecute'#7 + +#23'ActionClearDebugExecute'#0#0#7'TAction'#15'ActionFindStart'#7'Caption'#6 + +#9'&Find ...'#10'ImageIndex'#2#26#9'OnExecute'#7#22'ActionFindstartExecute'#8 + +'ShortCut'#3'F@'#0#0#7'TAction'#9'ActionCut'#7'Caption'#6#4'Cu&t'#10'ImageIn' + +'dex'#2#3#9'OnExecute'#7#16'ActionCutExecute'#8'ShortCut'#3'X@'#0#0#7'TActio' + +'n'#10'ActionCopy'#7'Caption'#6#5'&Copy'#10'ImageIndex'#2#22#9'OnExecute'#7 + +#17'ActionCopyExecute'#8'ShortCut'#3'C@'#0#0#7'TAction'#11'ActionPaste'#7'Ca' + +'ption'#6#6'&Paste'#10'ImageIndex'#2#11#9'OnExecute'#7#18'ActionPasteExecute' + +#8'ShortCut'#3'V@'#0#0#7'TAction'#12'ActionDelete'#7'Caption'#6#7'&Delete'#10 + +'ImageIndex'#2#23#9'OnExecute'#7#19'ActionDeleteExecute'#8'ShortCut'#2'.'#0#0 + +#7'TAction'#15'ActionSelectAll'#7'Caption'#6#11'&Select All'#9'OnExecute'#7 + +#22'ActionSelectAllExecute'#8'ShortCut'#3'A@'#0#0#7'TAction'#10'ActionUndo'#7 + +'Caption'#6#5'&Undo'#10'ImageIndex'#2#18#9'OnExecute'#7#17'ActionUndoExecute' + +#8'ShortCut'#3'Z@'#0#0#7'TAction'#10'ActionRedo'#7'Caption'#6#5'&Redo'#10'Im' + +'ageIndex'#2#12#9'OnExecute'#7#17'ActionRedoExecute'#8'ShortCut'#3'Y@'#0#0#7 + +'TAction'#14'ActionFindNext'#7'Caption'#6#10'Find &next'#9'OnExecute'#7#21'A' + +'ctionFindNextExecute'#8'ShortCut'#2'r'#0#0#7'TAction'#13'ActionReplace'#7'C' + +'aption'#6#11'R&eplace...'#9'OnExecute'#7#20'ActionReplaceExecute'#8'ShortCu' + +'t'#3'R@'#0#0#7'TAction'#10'ActionExit'#7'Caption'#6#5'&Exit'#10'ImageIndex' + +#2#25#9'OnExecute'#7#17'ActionExitExecute'#0#0#0#6'TTimer'#10'DebugTimer'#7 + +'OnTimer'#7#18'ProcessDebugStream'#4'left'#3'`'#2#0#0#10'TPopupMenu'#11'Scri' + +'ptPopup'#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' '#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#0#0#0#0#0#0#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#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#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#0#0#5'y}'#17#0#160#196#255'v'#237#251#255#0#160#196#255#0 + +#0#0#0#0#0#0#0#0#160#196'0'#0#153#185'P'#0#160#196#201'm'#230#245#255'v'#226 + +#239#255#25#163#193#255#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237 + +#251#255'v'#237#251#255#0#160#196#255#0#160#196#255#0#160#196#255#0#160#196 + +#255#1#169#196#255'n'#225#238#255#15#201#223#255'i'#228#242#255#26#164#192 + +#248#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255'v'#237#251#255#4#195#218#255'v' + +#237#251#255'i'#234#249#255'i'#234#249#255'i'#234#249#255'i'#234#249#255#5 + +#221#247#255#10#200#223#255#7#194#216#255'o'#220#235#255#27#163#191#244#0#0#0 + +#0#5'y~'#17#0#160#196#255'y'#237#251#255'2'#226#248#255','#223#244#255#4#192 + +#214#255#4#192#214#255#4#192#214#255#29#210#232#255#29#210#232#255#29#210#232 + +#255#11#200#223#255'j'#229#243#255#27#171#197#248#21#160#188#203#0#0#0#0#0 + +#160#196#255#173#243#251#255'/'#224#246#255'2'#226#248#255'2'#226#247#255'2' + +#226#247#255'/'#224#245#255')'#219#241#255#29#210#232#255#29#210#232#255#29 + +#210#232#255'6'#217#236#255'@'#205#225#255#22#161#189#202#5'y}'#10#0#0#0#0#5 + +'y}'#10#0#160#196#255#173#243#251#255'/'#224#246#255'2'#226#247#255')'#219 + +#241#255'/'#224#245#255')'#219#241#255#22#205#227#255'6'#217#236#255'i'#231 + +#246#255'A'#206#227#254#19#163#193#228#5'y}2'#0#0#0#0#0#0#0#0#0#0#0#0#5'y}' + +#17#0#160#196#255#173#243#251#255'1'#225#246#255' '#227#250#255's'#236#250 + +#255'o'#235#250#255'n'#232#247#255'l'#232#247#248#20#161#188#212#20#163#193 + +#213#5'y}'#28#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255 + +#173#243#251#255'%'#228#251#255#0#160#196#255#0#160#196#255#19#161#190#231#21 + +#159#187#207#27#161#187#164#6'z|'#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#5'y}'#17#0#160#196#255#173#243#251#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#0#0#0#0#0#0#0#0#0#157#191#20#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#7'OnClick'#7#17'ActionUndoExecute'#0#0 + +#9'TMenuItem'#13'PopupItemRedo'#6'Action'#7#10'ActionRedo'#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#0#0#0#0 + +#0#160#196#24#26#167#196'i'#24#166#195'i'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 + +#0#0#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#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#0#0#0#0 + +#0#0#0#0#0#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#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#17#162#194#255#136#231#242#254#2#172#200#255#0#158#193#26#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#0#0#0#255#255#255#0#25#163#193#255'v'#226#239#255'm'#230#245#255#0#160 + +#196#201#0#153#185'P'#0#160#196'0'#0#0#0#0#0#0#0#0#0#160#196#255'v'#237#251 + +#255#0#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#26#164#192 + +#248'i'#228#242#255#15#201#223#255'n'#225#238#255#1#169#196#255#0#160#196#255 + +#0#160#196#255#0#160#196#255#0#160#196#255'v'#237#251#255'v'#237#251#255#0 + +#160#196#255#5'y}'#17#0#0#0#0#0#0#0#0#255#255#255#0#27#163#191#244'o'#220#235 + +#255#7#194#216#255#10#200#223#255#5#221#247#255'i'#234#249#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'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'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'#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'#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'%'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#196#255#173#243#251 + +#255#0#160#196#255#5'y}'#17#0#0#0#0#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#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#157#191#20#0#0#0#0#0#0#0#0#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#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#7'OnClick'#7#17'ActionRedoExecute'#0#0#9 + +'TMenuItem'#17'PopupItemDivider1'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#12'Popu' + +'pItemCut'#6'Action'#7#9'ActionCut'#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#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#255#255#255#0#255#255#255#0#255#255#255#0#5#15#141 + +#31#6#16#142'&'#1#11#138#3#255#255#255#0#18#28#155'p@K'#217#255',5'#191#221 + +'=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#15#25#151'c2='#199#248'7A'#207#255#31')' + +#171#176#0#10#134#24'#-'#180#175'5@'#204#253#0#9#133#24#28''''#168#149'4>' + +#197#248#4#14#140#20#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0'/:'#189#222'5?'#201#229'%0'#179#194'?J'#221#255#31'*'#172#194 + +'$0'#178#203'2<'#198#242#0#10#134#3#17#27#157'w7A'#200#255#8#18#142' '#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'2<'#195 + +#236'#.'#173#175#255#255#255#0#26'%'#168#153'BP'#210#255#203#163'u'#254'AO' + +#214#255#22'!'#163#157'/9'#192#212'.8'#190#223#2#13#139#10#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#29'('#169#156';F'#204 + +#255#8#18#144':'#7#17#144'S;H'#212#255#219#189#156#255#238#204#166#255'@L' + +#222#255':C'#209#255#15#25#152'i'#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#3#13#140#31',5'#185#215'<F'#207 + +#255'3>'#202#242'?L'#215#255#216#188#154#255#246#234#225#255#187#146'Z'#191 + +#148'b'#24';'#145'a'#26#1#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#3#13#140#31#27'&'#167#153'*' + +'4'#186#204#17#28#157#137#187#152'i'#204#240#224#208#255#183#145'_'#197#143 + +']'#20#11#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#11 + +#136#2#255#255#255#0#180#142'Z'#144#246#234#221#255#225#205#180#255#177#141 + +']'#191#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#179#140'W'#137#241#226#212#255#206#178#142#244#245 + +#235#224#255#166#127'J'#157#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#177#137'S'#132#238#223#206#255#151'f e'#194#163 + +'|'#218#233#216#197#253#169#130'N{'#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#175#135'P|'#231#213#193#255#149'e'#31'+'#143'\'#18 + +#27#197#167#131#231#213#188#157#225#181#147'db'#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#172#131'Ku'#222#201#175#255#149'd'#29#31#255#255#255 + +#0#146'`'#23'&'#195#164'|'#235#181#144'c'#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#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#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#255#0#255#255 + +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#7'OnClick'#7#16'ActionCutEx' + +'ecute'#0#0#9'TMenuItem'#13'PopupItemCopy'#6'Action'#7#10'ActionCopy'#11'Bit' + +'map.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 + +#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'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#251#242#235#255#253#244#238#255#202#128'T'#249#255#255#255#0#255 + +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#207#130'S' + +#255#239#241#231#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#239#242#232#255#206#129'V'#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#204#131'R'#251#251#245#238#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#251#246#239#255#204 + +#131'U'#254#199'yJ'#185#200'yK'#206#200'uE'#221#199'uE'#212#200'uE'#212#199 + +'uE'#212#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#200'|N'#211#252#243#236#222#250#241#232#222#250#240#231#222 + +#251#241#233#222#251#242#234#222#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#207#130'S'#222#239#241#231#222#255 + +#233#217#222#255#234#219#222#255#233#217#222#255#231#215#222#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#204#131 + +'R'#219#251#245#238#222#255#233#217#222#255#234#219#222#255#233#217#222#255 + +#231#215#222#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#202#132'R'#219#255#247#241#222#255#233#217#222#255#234 + +#219#222#255#233#217#222#255#231#215#222#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#203#133'S'#219#255#247#240 + +#222#255#231#213#222#253#231#214#222#253#230#212#222#252#228#208#222#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#203 + +#134'T'#219#255#247#242#222#254#231#213#222#254#231#213#222#253#229#209#222 + +#250#224#202#222#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#203#134'U'#219#254#247#241#222#252#229#210#222#252#228#209 + +#222#251#226#204#222#249#221#196#222#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#203#134'U'#219#254#246#240#222#252#226#205#222 + +#252#227#205#222#250#223#200#222#247#217#188#222#245#233#221#222#250#243#235 + +#222#251#248#243#222#205#149'e'#220#255#255#255#0#255#255#255#0#255#255#255#0 + +#255#255#255#0#255#255#255#0#255#255#255#0#203#134'V'#218#254#245#237#222#252 + +#222#197#222#251#224#199#222#249#220#194#222#245#211#180#222#254#249#243#222 + +#250#226#196#222#236#193#147#222#195'}H'#128#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#136#222#207#133'U'#156#180'i='#10#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'#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#7'OnClick'#7#17'Act' + +'ionCopyExecute'#0#0#9'TMenuItem'#14'PopupItemPaste'#6'Action'#7#11'ActionPa' + +'ste'#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'^^^' + +#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#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#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#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#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'#147#210#255'H'#143#208#255'J'#140#201#255'o'#139#165#255#241#241#241#255 + +#182#182#182#255#181#181#181#255#181#181#181#255#180#180#180#255#180#180#180 + +#255#180#180#180#255#237#237#237#250'SSS'#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#255#233#233#233#255#232#232#232#255#232#232#232#255 + +#232#232#232#255#231#231#231#255#237#237#237#250'VVV'#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#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's'#183#225#255'W'#163#215#255'S'#160#215#255'P'#157#213#255'R'#153#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'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'#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#255#255#255#0' c'#152#255'|' + +#189#228#255'e'#174#221#255'b'#171#220#255'^'#168#218#255'\'#167#217#255'\' + +#167#217#255'\'#167#217#255'\'#167#217#255'R'#159#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 + +#127#191#228#255'i'#178#222#255'J'#155#218#255'D'#151#220#255'C'#150#220#255 + +'B'#150#220#255'B'#149#220#255'A'#149#219#255'Q'#158#214#255'l'#178#222#255 + +' c'#152#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c'#152 + +#224'q'#179#219#254'~'#191#228#255'N'#157#223#255#181#238#253#255'u'#212#240 + +#255'u'#212#240#255#181#238#253#255'K'#155#222#255'n'#180#224#255'm'#179#223 + +#249' c'#152#243#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0' c' + +#152'2 c'#152#178' c'#152#255'7u'#164#255#182#239#254#255#128#219#243#255#128 + +#219#243#255#182#239#254#255'.n'#161#255' c'#152#255' c'#152#165' c'#152'S' + +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 + +#255#255#0' c'#152'* c'#152#255' c'#152#255' c'#152#255' c'#152#255' c'#152 + +#255' c'#152#240#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#7'OnClick'#7#18'ActionPasteExecute'#0 + +#0#9'TMenuItem'#15'PopupItemDelete'#6'Action'#7#12'ActionDelete'#11'Bitmap.D' + +'ata'#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#0#0#0#6#0#0#0#14#0#0#0#22#0#0#0#30#0#0#0'%'#0#0#0'*'#0#0#0'+' + +#0#0#0')'#0#0#0'$'#0#0#0#29#0#0#0#21#0#0#0#13#0#0#0#4#255#255#255#0#255#255 + +#255#0#255#255#255#0#0#0#255#1#0#0#211'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#211'F'#0#0#255#1#255#255#255#0#255#255#255#0#255#255#255#0#0#0#255#1#0#0 + +#206#150#0#0#206#255#0#0#206'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#206'x'#0#0#207#255#0#0#207#150#0#0 + +#255#1#255#255#255#0#255#255#255#0#0#0#200'F'#0#0#200#255#0#0#200#255#0#0#201 + +#255#0#0#202'x'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#0#0 + +#202'x'#0#0#201#255#0#0#201#255#0#0#201#255#0#0#200'F'#255#255#255#0#255#255 + +#255#0#255#255#255#0#0#0#193'x'#0#0#195#255#0#0#195#255#0#0#195#255#0#0#196 + +'x'#255#255#255#0#255#255#255#0#0#0#196'x'#0#0#195#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#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#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 + +#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#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#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#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#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#0#255#255 + +#255#0#255#255#255#0#0#0#149'x'#0#0#148#255#0#0#148#255#0#0#148#255#0#0#149 + +'F'#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#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#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#7'OnClick'#7#19'ActionDelet' + +'eExecute'#0#0#9'TMenuItem'#17'PopupItemDivider2'#7'Caption'#6#1'-'#0#0#9'TM' + +'enuItem'#18'PopupItemSelectAll'#6'Action'#7#15'ActionSelectAll'#7'OnClick'#7 + +#22'ActionSelectAllExecute'#0#0#9'TMenuItem'#17'PopupItemDivider3'#7'Caption' + +#6#1'-'#0#0#9'TMenuItem'#13'PopupItemFind'#6'Action'#7#14'ActionFindNext'#7 + +'OnClick'#7#21'ActionFindNextExecute'#0#0#9'TMenuItem'#16'PopupItemReplace'#6 + +'Action'#7#13'ActionReplace'#7'Caption'#6#7'Replace'#7'OnClick'#7#20'ActionR' + +'eplaceExecute'#0#0#0#14'TReplaceDialog'#10'dlgReplace'#7'Options'#11#6'frDo' + +'wn'#10'frFindNext'#12'frHideUpDown'#0#6'OnFind'#7#14'dlgReplaceFind'#9'OnRe' + +'place'#7#17'dlgReplaceReplace'#4'left'#3#176#2#0#0#0 +]); diff --git a/Units/MMLAddon/PSInc/psexportedmethods.inc b/Units/MMLAddon/PSInc/psexportedmethods.inc index 2c1500b..a34ddff 100644 --- a/Units/MMLAddon/PSInc/psexportedmethods.inc +++ b/Units/MMLAddon/PSInc/psexportedmethods.inc @@ -1,195 +1,198 @@ -{ - This file is part of the Mufasa Macro Library (MML) - Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer - - MML is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - MML is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with MML. If not, see <http://www.gnu.org/licenses/>. - - See the file COPYING, included in this distribution, - for details about the copyright. - - psexportedmethods.inc for the Mufasa Macro Library -} - -AddFunction(@ThreadSafeCall,'function ThreadSafeCall(ProcName: string; var V: TVariantArray): Variant;'); -AddFunction(@psWriteln,'procedure writeln(s : string);'); - -{ DTM } -SetCurrSection('DTM'); -AddFunction(@PrintpDTM, 'Procedure PrintpDTM(tDTM : pDTM);'); -AddFunction(@ps_GetDTM ,'function GetDTM(index: Integer; out dtm: pDTM): Boolean;'); -AddFunction(@pDTMToTDTM, 'Function pDTMToTDTM(Const DTM: pDTM): TDTM;'); -AddFunction(@tDTMTopDTM, 'Function tDTMTopDTM(Const DTM: TDTM): pDTM;'); -AddFunction(@ps_DTMFromString, 'function DTMFromString(DTMString: String): Integer;'); -AddFunction(@ps_FreeDTM, 'procedure FreeDTM(DTM: Integer);'); -AddFunction(@ps_FindDTM, 'function FindDTM(DTM: Integer; out x, y: Integer; x1, y1, x2, y2: Integer): Boolean;'); -AddFunction(@ps_FindDTMs, 'function FindDTMs(DTM: Integer; out p: TPointArray; x1, y1, x2, y2: Integer): Boolean;'); -AddFunction(@ps_FindDTMRotated, 'function FindDTMRotated(DTM: Integer; out x, y: Integer; x1, y1, x2, y2: Integer; sAngle, eAngle, aStep: Extended; out aFound: Extended): Boolean;'); -AddFunction(@ps_FindDTMsRotated, 'function FindDTMsRotated(DTM: Integer; out Points: TPointArray; x1, y1, x2, y2: Integer; sAngle, eAngle, aStep: Extended; out aFound: T2DExtendedArray) : Boolean;'); -AddFunction(@ps_addDTM, 'function AddDTM(d: TDTM): Integer;'); -AddFunction(@ps_addpDTM, 'function AddpDTM(d: pDTM): Integer;'); - -{maths} -SetCurrSection('Math'); -AddFunction(@ceil,'function ceil(e : extended) : integer'); -AddFunction(@power,'function pow(base,exponent : extended) : extended'); -AddFunction(@max,'function Max(a, b: Integer): Integer;'); -AddFunction(@min,'function Min(a, b: Integer): Integer;'); -AddFunction(@minE,'function MinE(a, b: extended): Extended;'); -AddFunction(@IntToBox,'function IntToBox(x1,y1,x2,y2 : integer) : TBox;'); -AddFunction(@pssqr,'function Sqr(e : extended) : extended;'); -AddFunction(@classes.point,'function Point(x,y:integer) : TPoint;'); -AddFunction(@Distance,'function Distance(x1,y1,x2,y2 : integer) : integer;'); -AddFunction(@hypot,'function Hypot(X, Y: Extended): Extended;'); -AddFunction(@ps_RandomRange,'function RandomRange(aFrom,aTo: Integer): Integer;'); - -{window} -SetCurrSection('Window'); -AddFunction(@Freeze, 'function freeze:boolean;'); -AddFunction(@Unfreeze, 'function unfreeze: boolean;'); -AddFunction(@GetClientDimensions, 'procedure GetClientDimensions(out w, h:integer);'); -AddFunction(@SetTargetBitmap,'procedure SetTargetBitmap(Bitmap : integer);'); -AddFunction(@SetDesktopAsClient,'procedure SetDesktopAsClient'); -AddFunction(@SetTargetArray, 'procedure SetTargetArray(P: Integer; Size: TPoint);'); -AddFunction(@ActivateClient, 'procedure activateclient;'); - -{files} -SetCurrSection('Files'); -AddFunction(@ps_CreateFile, 'function CreateFile(Path: string): Integer;'); -AddFunction(@ps_OpenFile, 'function OpenFile(Path: string; Shared: Boolean): Integer;'); -AddFunction(@ps_RewriteFile, 'function RewriteFile(Path: string; Shared: Boolean): Integer;'); -AddFunction(@ps_CloseFile, 'procedure CloseFile(FileNum: Integer);'); -AddFunction(@ps_EndOfFile, 'function EndOfFile(FileNum: Integer): Boolean;'); -AddFunction(@ps_FileSize, 'function FileSize(FileNum: Integer): LongInt;'); -AddFunction(@ps_ReadFileString, 'function ReadFileString(FileNum: Integer; out s: string; x: Integer): Boolean;'); -AddFunction(@ps_WriteFileString, 'function WriteFileString(FileNum: Integer; s: string): Boolean;'); -AddFunction(@ps_SetFileCharPointer, 'Function SetFileCharPointer(FileNum, cChars, Origin: Integer): Integer;'); -AddFunction(@ps_FilePointerPos, 'function FilePointerPos(FileNum: Integer): Integer;'); - -{other} -SetCurrSection('Other'); -AddFunction(@SaveScreenshot,'procedure SaveScreenshot(FileName: string);'); -AddFunction(@psWait, 'procedure wait(t: integer);'); -AddFunction(@psWait, 'procedure Sleep(t: integer);'); -AddFunction(@GetTickCount, 'function GetSystemTime: LongWord;'); -AddFunction(@GetTickCount, 'function GetTickCount: LongWord;'); -AddFunction(@GetTimeRunning,'function GetTimeRunning: LongWord;'); -AddFunction(@CreateForm,'function CreateForm : TForm;'); -AddFunction(@CreateButton,'function CreateButton(Owner : TComponent) : TButton'); -AddFunction(@ConvertTime,'procedure ConvertTime(Time : integer; var h,m,s : integer);'); -AddFunction(@HakunaMatata,'procedure HakunaMatata;'); -AddFunction(@TerminateScript,'procedure TerminateScript;'); -AddFunction(@DisplayDebugImgWindow,'procedure DisplayDebugImgWindow(w,h : integer);'); -AddFunction(@DrawBitmapDebugImg,'procedure DrawBitmapDebugImg(bmp : integer);'); -AddFunction(@GetDebugBitmap,'function GetDebugBitmap : integer;'); -AddFunction(@Random,'function Random(Int : integer): integer;'); - - - -{string} -AddFunction(@Capitalize,'function Capitalize(str : string) : string;'); -{web} -AddFunction(@OpenWebPage,'procedure OpenWebPage(url : string);'); - -{Color + Color Finders} -SetCurrSection('Color'); -AddFunction(@GetColor,'function GetColor(x, y: Integer): Integer;'); -AddFunction(@FindColor, 'function findcolor(out x, y: integer; color, x1, y1, x2, y2: integer): boolean;'); -AddFunction(@findcolortoleranceOptimised, 'function findcolortoleranceOptimised(out x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;'); -AddFunction(@FindColorTolerance, 'function findcolortolerance(out x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;'); -AddFunction(@FindColors, 'function findcolors(out TPA: TPointArray; color, x1, y1, x2, y2: integer): boolean;'); -AddFunction(@SimilarColors,'function SimilarColors(Col1,Col2,Tolerance : integer) : boolean'); -AddFunction(@CountColor,'function CountColor(Color, xs, ys, xe, ye: Integer): Integer;'); -AddFunction(@CountColorTolerance,'function CountColorTolerance(Color, xs, ys, xe, ye, Tolerance: Integer): Integer;'); -AddFunction(@FindColorsToleranceOptimised,'function FindColorsToleranceOptimised(out Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean;'); -AddFunction(@FindColorsTolerance,'function FindColorsTolerance(out Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean;'); -AddFunction(@FindColorSpiral,'function FindColorSpiral(var x, y: Integer; color, xs, ys, xe, ye: Integer): Boolean;'); -AddFunction(@FindColorsSpiralTolerance,'function FindColorsSpiralTolerance(x, y: Integer; out Points: TPointArray; color, xs, ys, xe, ye: Integer; Tolerance: Integer) : boolean;'); -AddFunction(@SetColorToleranceSpeed, 'procedure SetColorToleranceSpeed(cts: integer);'); -AddFunction(@FindColoredArea, 'function FindColoredArea(var x, y : Integer; color, xs, ys, xe, ye, MinArea : Integer): Boolean'); -AddFunction(@FindColoredAreaTolerance, 'function FindColoredAreaTolerance(var x, y : Integer; color, xs, ys, xe, ye, MinArea, Tolerance : Integer): Boolean'); -AddFunction(@ColorToHSL, 'procedure ColorToHSL(c: integer; out r,g,b: extended);'); - -{Mouse etc.} -SetCurrSection('Mouse'); -AddFunction(@MoveMouse, 'procedure MoveMouse(x, y: integer);'); -AddFunction(@GetMousePos, 'procedure GetMousePos(out x, y: integer);'); -AddFunction(@HoldMouse, 'procedure HoldMouse(x, y: integer; clickType: integer);'); -AddFunction(@ReleaseMouse, 'procedure ReleaseMouse(x, y: integer; clickType: integer);'); -AddFunction(@ClickMouse, 'procedure ClickMouse(x, y: integer; clickType: integer);'); - - -{Keyboard} -SetCurrSection('Keyboard'); -AddFunction(@KeyDown, 'procedure KeyDown(key: Word);'); -AddFunction(@KeyUp, 'procedure KeyUp(key: Word);'); -AddFunction(@PressKey, 'procedure PressKey(key: Word);'); -AddFunction(@SendKeys, 'procedure SendKeys(s: string);'); -AddFunction(@isKeyDown, 'function isKeyDown(key: Word): Boolean;'); -AddFunction(@GetKeyCode, 'function GetKeyCode(Key : char) : byte'); - -{ OCR} -SetCurrSection('OCR'); -AddFunction(@rs_GetUpText, 'function rs_GetUpText: string;'); - - -{Bitmaps} -SetCurrSection('Bitmaps'); -AddFunction(@GetMufasaBitmap,'function GetMufasaBitmap(bmp : integer) : TMufasaBitmap;'); -AddFunction(@CreateBitmap,'function CreateBitmap(w,h :integer) : integer;'); -AddFunction(@FreeBitmap,'procedure FreeBitmap(Bmp : integer);'); -AddFunction(@SaveBitmap,'procedure SaveBitmap(Bmp : integer; path : string);'); -AddFunction(@BitmapFromString,'function BitmapFromString(Width,Height : integer; Data : string): integer;'); -AddFunction(@LoadBitmap,'function LoadBitmap(Path : string) : integer;'); -AddFunction(@SetBitmapSize,'procedure SetBitmapSize(Bmp,NewW,NewH : integer);'); -AddFunction(@GetBitmapSize,'procedure GetBitmapSize(Bmp : integer; out BmpW,BmpH : integer);'); -AddFunction(@StretchBitmapResize,'procedure StretchBitmapResize(Bmp,NewW,NewH : integer);'); -AddFunction(@CreateMirroredBitmap,'function CreateMirroredBitmap(Bmp : integer) : integer;'); -AddFunction(@CreateMirroredBitmapEx,'function CreateMirroredBitmapEx(Bmp : integer; MirrorStyle : TBmpMirrorStyle) : integer;'); -AddFunction(@FastSetPixel,'procedure FastSetPixel(bmp,x,y : integer; Color : TColor);'); -AddFunction(@FastSetPixels,'procedure FastSetPixels(bmp : integer; TPA : TPointArray; Colors : TIntegerArray);'); -AddFunction(@FastGetPixel,'function FastGetPixel(bmp, x,y : integer) : TColor;'); -AddFunction(@FastGetPixels,'function FastGetPixels(Bmp : integer; TPA : TPointArray) : TIntegerArray;'); -AddFunction(@FastDrawClear,'procedure FastDrawClear(bmp : integer; Color : TColor)'); -AddFunction(@FastDrawTransparent,'procedure FastDrawTransparent(x, y: Integer; SourceBitmap, TargetBitmap: Integer);'); -AddFunction(@SetTransparentColor,'procedure SetTransparentColor(bmp : integer; Color : TColor);'); -AddFunction(@GetTransparentColor,'function GetTransparentColor(bmp: integer) : TColor;'); -AddFunction(@FastReplaceColor,'procedure FastReplaceColor(Bmp : integer; OldColor,NewColor : TColor);'); -AddFunction(@ps_CopyClientToBitmap, 'procedure CopyClientToBitmap(bmp, xs, ys, xe, ye: Integer);'); -AddFunction(@BitmapFromClient,'function BitmapFromClient(const xs, ys, xe, ye: Integer): Integer;'); -AddFunction(@SetBitmapName, 'procedure SetBitmapName(Bmp : integer; name : string);'); -AddFunction(@FindBitmap,'function FindBitmap(bitmap: integer; out x, y: Integer): Boolean;'); -AddFunction(@FindBitmapIn,'function FindBitmapIn(bitmap: integer; out x, y: Integer; xs, ys, xe, ye: Integer): Boolean;'); -AddFunction(@FindBitmapToleranceIn,'function FindBitmapToleranceIn(bitmap: integer; out x, y: Integer; xs, ys, xe, ye: Integer; tolerance: Integer): Boolean;'); -AddFunction(@FindBitmapSpiral,'function FindBitmapSpiral(bitmap: Integer; var x, y: Integer; xs, ys, xe, ye: Integer): Boolean;'); -AddFunction(@FindBitmapsSpiralTolerance,'function FindBitmapsSpiralTolerance(bitmap: integer; x, y: Integer; out Points : TPointArray; xs, ys, xe, ye,tolerance: Integer): Boolean;'); -AddFunction(@FindBitmapSpiralTolerance,'function FindBitmapSpiralTolerance(bitmap: integer; var x, y: Integer; xs, ys, xe, ye,tolerance : integer): Boolean;'); -AddFunction(@RotateBitmap,'function RotateBitmap(bitmap: Integer; angle: Extended): Integer;'); -AddFunction(@Desaturate,'function DesaturateBitmap(Bitmap : integer) : integer;'); -AddFunction(@InvertBitmap,'procedure InvertBitmap(Bitmap : integer);'); -AddFunction(@CopyBitmap,'function CopyBitmap(Bitmap: integer) : integer)'); -AddFunction(@GreyScaleBitmap,'function GreyScaleBitmap(bitmap : integer) : integer'); -AddFunction(@BrightnessBitmap,'function BrightnessBitmap(Bitmap,br : integer) : integer;'); -AddFunction(@ContrastBitmap,'function ContrastBitmap(bitmap : integer; co : extended) : integer;'); -AddFunction(@PosterizeBitmap,'function PosterizeBitmap(Bitmap : integer; po : integer) : integer;'); -AddFunction(@CreateBitmapMask,'function CreateBitmapMask(Bitmap : integer) : TMask;'); -AddFunction(@FindMaskTolerance,'function FindMaskTolerance(mask: TMask; out x, y: Integer; xs,ys, xe, ye: Integer; Tolerance, ContourTolerance: Integer): Boolean;'); -AddFunction(@FindBitmapMaskTolerance,'function FindBitmapMaskTolerance(mask: Integer; out x, y: Integer; xs, ys, xe, ye: Integer; Tolerance, ContourTolerance: Integer): Boolean;'); -AddFunction(@FindDeformedBitmapToleranceIn,'function FindDeformedBitmapToleranceIn(bitmap: integer; out x,y: Integer; xs, ys, xe, ye: Integer; tolerance: Integer; Range: Integer; AllowPartialAccuracy: Boolean; out accuracy: Extended): Boolean;'); -AddFunction(@DrawTPABitmap,'procedure DrawTPABitmap(bitmap : integer; TPA : TPointArray; Color : integer);'); -AddFunction(@DrawATPABitmap,'procedure DrawATPABitmap(bitmap : integer; ATPA : T2DPointArray);'); -AddFunction(@DrawATPABitmapEx,'procedure DrawATPABitmapEx(bitmap : integer; ATPA : T2DPointArray; Colors : TIntegerArray);'); - -{tpa} -SetCurrSection('TPA'); -AddFunction(@SplitTPAEx,'function SplitTPAEx(arr: TPointArray; w, h: Integer): T2DPointArray;'); +{ + This file is part of the Mufasa Macro Library (MML) + Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer + + MML is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + MML is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with MML. If not, see <http://www.gnu.org/licenses/>. + + See the file COPYING, included in this distribution, + for details about the copyright. + + psexportedmethods.inc for the Mufasa Macro Library +} + +AddFunction(@ThreadSafeCall,'function ThreadSafeCall(ProcName: string; var V: TVariantArray): Variant;'); +AddFunction(@psWriteln,'procedure writeln(s : string);'); + +{ DTM } +SetCurrSection('DTM'); +AddFunction(@PrintpDTM, 'Procedure PrintpDTM(tDTM : pDTM);'); +AddFunction(@ps_GetDTM ,'function GetDTM(index: Integer; out dtm: pDTM): Boolean;'); +AddFunction(@pDTMToTDTM, 'Function pDTMToTDTM(Const DTM: pDTM): TDTM;'); +AddFunction(@tDTMTopDTM, 'Function tDTMTopDTM(Const DTM: TDTM): pDTM;'); +AddFunction(@ps_DTMFromString, 'function DTMFromString(DTMString: String): Integer;'); +AddFunction(@ps_FreeDTM, 'procedure FreeDTM(DTM: Integer);'); +AddFunction(@ps_FindDTM, 'function FindDTM(DTM: Integer; out x, y: Integer; x1, y1, x2, y2: Integer): Boolean;'); +AddFunction(@ps_FindDTMs, 'function FindDTMs(DTM: Integer; out p: TPointArray; x1, y1, x2, y2: Integer): Boolean;'); +AddFunction(@ps_FindDTMRotated, 'function FindDTMRotated(DTM: Integer; out x, y: Integer; x1, y1, x2, y2: Integer; sAngle, eAngle, aStep: Extended; out aFound: Extended): Boolean;'); +AddFunction(@ps_FindDTMsRotated, 'function FindDTMsRotated(DTM: Integer; out Points: TPointArray; x1, y1, x2, y2: Integer; sAngle, eAngle, aStep: Extended; out aFound: T2DExtendedArray) : Boolean;'); +AddFunction(@ps_addDTM, 'function AddDTM(d: TDTM): Integer;'); +AddFunction(@ps_addpDTM, 'function AddpDTM(d: pDTM): Integer;'); + +{maths} +SetCurrSection('Math'); +AddFunction(@ceil,'function ceil(e : extended) : integer'); +AddFunction(@power,'function pow(base,exponent : extended) : extended'); +AddFunction(@max,'function Max(a, b: Integer): Integer;'); +AddFunction(@min,'function Min(a, b: Integer): Integer;'); +AddFunction(@minE,'function MinE(a, b: extended): Extended;'); +AddFunction(@IntToBox,'function IntToBox(x1,y1,x2,y2 : integer) : TBox;'); +AddFunction(@pssqr,'function Sqr(e : extended) : extended;'); +AddFunction(@classes.point,'function Point(x,y:integer) : TPoint;'); +AddFunction(@Distance,'function Distance(x1,y1,x2,y2 : integer) : integer;'); +AddFunction(@hypot,'function Hypot(X, Y: Extended): Extended;'); +AddFunction(@ps_RandomRange,'function RandomRange(aFrom,aTo: Integer): Integer;'); + +{window} +SetCurrSection('Window'); +AddFunction(@Freeze, 'function freeze:boolean;'); +AddFunction(@Unfreeze, 'function unfreeze: boolean;'); +AddFunction(@GetClientDimensions, 'procedure GetClientDimensions(out w, h:integer);'); +AddFunction(@SetTargetBitmap,'procedure SetTargetBitmap(Bitmap : integer);'); +AddFunction(@SetDesktopAsClient,'procedure SetDesktopAsClient'); +AddFunction(@SetTargetArray, 'procedure SetTargetArray(P: Integer; Size: TPoint);'); +AddFunction(@ActivateClient, 'procedure activateclient;'); + +{files} +SetCurrSection('Files'); +AddFunction(@ps_CreateFile, 'function CreateFile(Path: string): Integer;'); +AddFunction(@ps_OpenFile, 'function OpenFile(Path: string; Shared: Boolean): Integer;'); +AddFunction(@ps_RewriteFile, 'function RewriteFile(Path: string; Shared: Boolean): Integer;'); +AddFunction(@ps_CloseFile, 'procedure CloseFile(FileNum: Integer);'); +AddFunction(@ps_EndOfFile, 'function EndOfFile(FileNum: Integer): Boolean;'); +AddFunction(@ps_FileSize, 'function FileSize(FileNum: Integer): LongInt;'); +AddFunction(@ps_ReadFileString, 'function ReadFileString(FileNum: Integer; out s: string; x: Integer): Boolean;'); +AddFunction(@ps_WriteFileString, 'function WriteFileString(FileNum: Integer; s: string): Boolean;'); +AddFunction(@ps_SetFileCharPointer, 'Function SetFileCharPointer(FileNum, cChars, Origin: Integer): Integer;'); +AddFunction(@ps_FilePointerPos, 'function FilePointerPos(FileNum: Integer): Integer;'); + +{other} +SetCurrSection('Other'); +AddFunction(@SaveScreenshot,'procedure SaveScreenshot(FileName: string);'); +AddFunction(@psWait, 'procedure wait(t: integer);'); +AddFunction(@psWait, 'procedure Sleep(t: integer);'); +AddFunction(@GetTickCount, 'function GetSystemTime: LongWord;'); +AddFunction(@GetTickCount, 'function GetTickCount: LongWord;'); +AddFunction(@GetTimeRunning,'function GetTimeRunning: LongWord;'); +AddFunction(@CreateForm,'function CreateForm : TForm;'); +AddFunction(@CreateButton,'function CreateButton(Owner : TComponent) : TButton'); +AddFunction(@ConvertTime,'procedure ConvertTime(Time : integer; var h,m,s : integer);'); +AddFunction(@HakunaMatata,'procedure HakunaMatata;'); +AddFunction(@TerminateScript,'procedure TerminateScript;'); +AddFunction(@DisplayDebugImgWindow,'procedure DisplayDebugImgWindow(w,h : integer);'); +AddFunction(@DrawBitmapDebugImg,'procedure DrawBitmapDebugImg(bmp : integer);'); +AddFunction(@GetDebugBitmap,'function GetDebugBitmap : integer;'); +AddFunction(@Random,'function Random(Int : integer): integer;'); + + + +{string} +AddFunction(@Capitalize,'function Capitalize(str : string) : string;'); + +{web} +AddFunction(@OpenWebPage,'procedure OpenWebPage(url : string);'); +AddFunction(@ps_GetPage,'function GetPage(url : string): string;'); + + +{Color + Color Finders} +SetCurrSection('Color'); +AddFunction(@GetColor,'function GetColor(x, y: Integer): Integer;'); +AddFunction(@FindColor, 'function findcolor(out x, y: integer; color, x1, y1, x2, y2: integer): boolean;'); +AddFunction(@findcolortoleranceOptimised, 'function findcolortoleranceOptimised(out x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;'); +AddFunction(@FindColorTolerance, 'function findcolortolerance(out x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean;'); +AddFunction(@FindColors, 'function findcolors(out TPA: TPointArray; color, x1, y1, x2, y2: integer): boolean;'); +AddFunction(@SimilarColors,'function SimilarColors(Col1,Col2,Tolerance : integer) : boolean'); +AddFunction(@CountColor,'function CountColor(Color, xs, ys, xe, ye: Integer): Integer;'); +AddFunction(@CountColorTolerance,'function CountColorTolerance(Color, xs, ys, xe, ye, Tolerance: Integer): Integer;'); +AddFunction(@FindColorsToleranceOptimised,'function FindColorsToleranceOptimised(out Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean;'); +AddFunction(@FindColorsTolerance,'function FindColorsTolerance(out Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean;'); +AddFunction(@FindColorSpiral,'function FindColorSpiral(var x, y: Integer; color, xs, ys, xe, ye: Integer): Boolean;'); +AddFunction(@FindColorsSpiralTolerance,'function FindColorsSpiralTolerance(x, y: Integer; out Points: TPointArray; color, xs, ys, xe, ye: Integer; Tolerance: Integer) : boolean;'); +AddFunction(@SetColorToleranceSpeed, 'procedure SetColorToleranceSpeed(cts: integer);'); +AddFunction(@FindColoredArea, 'function FindColoredArea(var x, y : Integer; color, xs, ys, xe, ye, MinArea : Integer): Boolean'); +AddFunction(@FindColoredAreaTolerance, 'function FindColoredAreaTolerance(var x, y : Integer; color, xs, ys, xe, ye, MinArea, Tolerance : Integer): Boolean'); +AddFunction(@ColorToHSL, 'procedure ColorToHSL(c: integer; out r,g,b: extended);'); + +{Mouse etc.} +SetCurrSection('Mouse'); +AddFunction(@MoveMouse, 'procedure MoveMouse(x, y: integer);'); +AddFunction(@GetMousePos, 'procedure GetMousePos(out x, y: integer);'); +AddFunction(@HoldMouse, 'procedure HoldMouse(x, y: integer; clickType: integer);'); +AddFunction(@ReleaseMouse, 'procedure ReleaseMouse(x, y: integer; clickType: integer);'); +AddFunction(@ClickMouse, 'procedure ClickMouse(x, y: integer; clickType: integer);'); + + +{Keyboard} +SetCurrSection('Keyboard'); +AddFunction(@KeyDown, 'procedure KeyDown(key: Word);'); +AddFunction(@KeyUp, 'procedure KeyUp(key: Word);'); +AddFunction(@PressKey, 'procedure PressKey(key: Word);'); +AddFunction(@SendKeys, 'procedure SendKeys(s: string);'); +AddFunction(@isKeyDown, 'function isKeyDown(key: Word): Boolean;'); +AddFunction(@GetKeyCode, 'function GetKeyCode(Key : char) : byte'); + +{ OCR} +SetCurrSection('OCR'); +AddFunction(@rs_GetUpText, 'function rs_GetUpText: string;'); + + +{Bitmaps} +SetCurrSection('Bitmaps'); +AddFunction(@GetMufasaBitmap,'function GetMufasaBitmap(bmp : integer) : TMufasaBitmap;'); +AddFunction(@CreateBitmap,'function CreateBitmap(w,h :integer) : integer;'); +AddFunction(@FreeBitmap,'procedure FreeBitmap(Bmp : integer);'); +AddFunction(@SaveBitmap,'procedure SaveBitmap(Bmp : integer; path : string);'); +AddFunction(@BitmapFromString,'function BitmapFromString(Width,Height : integer; Data : string): integer;'); +AddFunction(@LoadBitmap,'function LoadBitmap(Path : string) : integer;'); +AddFunction(@SetBitmapSize,'procedure SetBitmapSize(Bmp,NewW,NewH : integer);'); +AddFunction(@GetBitmapSize,'procedure GetBitmapSize(Bmp : integer; out BmpW,BmpH : integer);'); +AddFunction(@StretchBitmapResize,'procedure StretchBitmapResize(Bmp,NewW,NewH : integer);'); +AddFunction(@CreateMirroredBitmap,'function CreateMirroredBitmap(Bmp : integer) : integer;'); +AddFunction(@CreateMirroredBitmapEx,'function CreateMirroredBitmapEx(Bmp : integer; MirrorStyle : TBmpMirrorStyle) : integer;'); +AddFunction(@FastSetPixel,'procedure FastSetPixel(bmp,x,y : integer; Color : TColor);'); +AddFunction(@FastSetPixels,'procedure FastSetPixels(bmp : integer; TPA : TPointArray; Colors : TIntegerArray);'); +AddFunction(@FastGetPixel,'function FastGetPixel(bmp, x,y : integer) : TColor;'); +AddFunction(@FastGetPixels,'function FastGetPixels(Bmp : integer; TPA : TPointArray) : TIntegerArray;'); +AddFunction(@FastDrawClear,'procedure FastDrawClear(bmp : integer; Color : TColor)'); +AddFunction(@FastDrawTransparent,'procedure FastDrawTransparent(x, y: Integer; SourceBitmap, TargetBitmap: Integer);'); +AddFunction(@SetTransparentColor,'procedure SetTransparentColor(bmp : integer; Color : TColor);'); +AddFunction(@GetTransparentColor,'function GetTransparentColor(bmp: integer) : TColor;'); +AddFunction(@FastReplaceColor,'procedure FastReplaceColor(Bmp : integer; OldColor,NewColor : TColor);'); +AddFunction(@ps_CopyClientToBitmap, 'procedure CopyClientToBitmap(bmp, xs, ys, xe, ye: Integer);'); +AddFunction(@BitmapFromClient,'function BitmapFromClient(const xs, ys, xe, ye: Integer): Integer;'); +AddFunction(@SetBitmapName, 'procedure SetBitmapName(Bmp : integer; name : string);'); +AddFunction(@FindBitmap,'function FindBitmap(bitmap: integer; out x, y: Integer): Boolean;'); +AddFunction(@FindBitmapIn,'function FindBitmapIn(bitmap: integer; out x, y: Integer; xs, ys, xe, ye: Integer): Boolean;'); +AddFunction(@FindBitmapToleranceIn,'function FindBitmapToleranceIn(bitmap: integer; out x, y: Integer; xs, ys, xe, ye: Integer; tolerance: Integer): Boolean;'); +AddFunction(@FindBitmapSpiral,'function FindBitmapSpiral(bitmap: Integer; var x, y: Integer; xs, ys, xe, ye: Integer): Boolean;'); +AddFunction(@FindBitmapsSpiralTolerance,'function FindBitmapsSpiralTolerance(bitmap: integer; x, y: Integer; out Points : TPointArray; xs, ys, xe, ye,tolerance: Integer): Boolean;'); +AddFunction(@FindBitmapSpiralTolerance,'function FindBitmapSpiralTolerance(bitmap: integer; var x, y: Integer; xs, ys, xe, ye,tolerance : integer): Boolean;'); +AddFunction(@RotateBitmap,'function RotateBitmap(bitmap: Integer; angle: Extended): Integer;'); +AddFunction(@Desaturate,'function DesaturateBitmap(Bitmap : integer) : integer;'); +AddFunction(@InvertBitmap,'procedure InvertBitmap(Bitmap : integer);'); +AddFunction(@CopyBitmap,'function CopyBitmap(Bitmap: integer) : integer)'); +AddFunction(@GreyScaleBitmap,'function GreyScaleBitmap(bitmap : integer) : integer'); +AddFunction(@BrightnessBitmap,'function BrightnessBitmap(Bitmap,br : integer) : integer;'); +AddFunction(@ContrastBitmap,'function ContrastBitmap(bitmap : integer; co : extended) : integer;'); +AddFunction(@PosterizeBitmap,'function PosterizeBitmap(Bitmap : integer; po : integer) : integer;'); +AddFunction(@CreateBitmapMask,'function CreateBitmapMask(Bitmap : integer) : TMask;'); +AddFunction(@FindMaskTolerance,'function FindMaskTolerance(mask: TMask; out x, y: Integer; xs,ys, xe, ye: Integer; Tolerance, ContourTolerance: Integer): Boolean;'); +AddFunction(@FindBitmapMaskTolerance,'function FindBitmapMaskTolerance(mask: Integer; out x, y: Integer; xs, ys, xe, ye: Integer; Tolerance, ContourTolerance: Integer): Boolean;'); +AddFunction(@FindDeformedBitmapToleranceIn,'function FindDeformedBitmapToleranceIn(bitmap: integer; out x,y: Integer; xs, ys, xe, ye: Integer; tolerance: Integer; Range: Integer; AllowPartialAccuracy: Boolean; out accuracy: Extended): Boolean;'); +AddFunction(@DrawTPABitmap,'procedure DrawTPABitmap(bitmap : integer; TPA : TPointArray; Color : integer);'); +AddFunction(@DrawATPABitmap,'procedure DrawATPABitmap(bitmap : integer; ATPA : T2DPointArray);'); +AddFunction(@DrawATPABitmapEx,'procedure DrawATPABitmapEx(bitmap : integer; ATPA : T2DPointArray; Colors : TIntegerArray);'); + +{tpa} +SetCurrSection('TPA'); +AddFunction(@SplitTPAEx,'function SplitTPAEx(arr: TPointArray; w, h: Integer): T2DPointArray;'); diff --git a/Units/MMLAddon/internets.pas b/Units/MMLAddon/internets.pas index 0fa1829..0c3e77a 100644 --- a/Units/MMLAddon/internets.pas +++ b/Units/MMLAddon/internets.pas @@ -1,13 +1,27 @@ -unit internets; - -{$mode objfpc}{$H+} - -interface - -uses - Classes, SysUtils; - -implementation - -end. - +unit internets; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils; + +function GetPage(URL: String): String; + +implementation +uses + httpsend; + +function GetPage(URL: String): String; +var + s: TStringList; +begin + s:=TStringList.Create; + HttpGetText(URL, s); + result := String(s.GetText); + s.Free; +end; + +end. + diff --git a/Units/MMLAddon/mmlpsthread.pas b/Units/MMLAddon/mmlpsthread.pas index 751b375..428fb1c 100644 --- a/Units/MMLAddon/mmlpsthread.pas +++ b/Units/MMLAddon/mmlpsthread.pas @@ -112,6 +112,7 @@ uses uPSR_extctrls, //Runtime-libs Graphics, //For Graphics types math, //Maths! + internets, // internets strutils, input, tpa, //Tpa stuff @@ -225,6 +226,7 @@ end; {$I PSInc/Wrappers/keyboard.inc} {$I PSInc/Wrappers/dtm.inc} {$I PSInc/Wrappers/ocr.inc} +{$I PSInc/Wrappers/internets.inc} procedure TMMLPSThread.OnProcessDirective(Sender: TPSPreProcessor; Parser: TPSPascalPreProcessorParser; const Active: Boolean; diff --git a/Units/MMLAddon/updater.pas b/Units/MMLAddon/updater.pas new file mode 100644 index 0000000..6a9dda9 --- /dev/null +++ b/Units/MMLAddon/updater.pas @@ -0,0 +1,182 @@ +unit updater; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, httpsend,blcksock; + +type + { TMMLUpdateThread = class(TThread) + procedure Execute; override; + constructor Create(CreateSuspended: Boolean); + destructor Destroy; override; + end; } + TMemory = pointer; + + TMMLFileDownloader = class(TObject) + private + FFileURL: String; + FReplacementFile: String; + FTotal: Integer; + HTTPSend: THTTPSend; + FFileSize: Integer; + FDownloaded: Boolean; + FOnChange: TProcedure; + + public + constructor Create; + destructor Destroy; override; + + function DownloadAndSave: Boolean; + function Replace: Boolean; + + property FileURL: String read FFileURL write FFileURL; + property ReplacementFile: String read FReplacementFile write FReplacementFile; + property Downloaded: Boolean read FDownloaded; + property OnChange: TProcedure read FOnChange write FOnChange; + + + function GetPercentage: Integer; + + private + procedure TryToGetFileSize; + + procedure OnMonitor(Sender: TObject; Writing: Boolean; + const Buffer: TMemory; Len: Integer); + procedure OnStatus(Sender: TObject; Reason: THookSocketReason; + const Value: String); + + + + + + end; + + + + + + +implementation + + +procedure TMMLFileDownloader.TryToGetFileSize; +var + i,p:integer; +begin + if assigned(HTTPSend.Headers) then + for i := 0 to HTTPSend.headers.count - 1 do + begin + p := Pos('Content-Length: ', HTTPSend.headers.strings[i]); + if p <> 0 then + FFileSize := StrToInt(Copy(HTTPSend.headers.strings[i], + p+length('Content-Length: '),length( HTTPSend.headers.strings[i]) - p) ); + end; +end; + +procedure TMMLFileDownloader.OnStatus(Sender: TObject; Reason: THookSocketReason; + const Value: String); +begin + if FFileSize = 0 then + TryToGetFileSize; + if Assigned(FOnChange) then + FOnChange(); +end; + +procedure TMMLFileDownloader.OnMonitor(Sender: TObject; Writing: Boolean; + const Buffer: TMemory; Len: Integer); + +var + i,p:integer; +begin + if writing then exit; + Inc(FTotal, len); + + if FFileSize = 0 then + TryToGetFileSize; + if Assigned(FOnChange) then + FOnChange(); + // writeln('Percent done: ' + IntToStr(GetPercentage)); +end; + +function TMMLFileDownloader.GetPercentage: Integer; +begin + if FFileSize <> 0 then + Exit( Round( (FTotal / FFileSize) * 100.0) ) + else + Exit(-1); +end; + +function TMMLFileDownloader.DownloadAndSave: Boolean; + +var + response: TStream; + i:integer; + f: TFileStream; + +begin + HTTPSend := THTTPSend.Create; + HTTPSend.Sock.OnMonitor:=@Self.OnMonitor; + HTTPSend.Sock.OnStatus:=@Self.OnStatus; + if FReplacementFile = '' then + raise Exception.Create('ReplacementFile not set'); + if FileURL = '' then + raise Exception.Create('FileURL not set'); + + Response := TFileStream.Create(FReplacementFile + '_', fmCreate); + try + Result := HTTPSend.HTTPMethod('GET', FileURL); + + if Result then + begin + Response.Seek(0, soFromBeginning); + Response.CopyFrom(HTTPSend.Document, 0); + end; + FDownloaded := True; + finally + HTTPSend.Free; + Response.Free; + end; +end; + +function TMMLFileDownloader.Replace: Boolean; +begin + if not Downloaded then + raise Exception.Create('Nothing downloaded'); + if FReplacementFile = '' then + raise Exception.Create('ReplacementFile not set'); + if not FileExists(FReplacementFile) then + raise Exception.Create('ReplacementFile not found'); + if not FileExists(FReplacementFile+ '_') then + raise Exception.Create('ReplacementFile + _ not found'); + + RenameFile(FReplacementFile, FReplacementFile+'_old_'); + RenameFile(FReplacementFile+'_', FReplacementFile); + DeleteFile(FReplacementFile+'_old_'); +end; + +constructor TMMLFileDownloader.Create; +begin + inherited Create; + FTotal := 0; + FFileSize := 0; + FDownloaded := False; + FReplacementFile:=''; + FFileURL := ''; + + +end; + + +destructor TMMLFileDownloader.Destroy; +begin + + + + inherited; +end; + +end. + diff --git a/Units/MMLCore/finder.pas b/Units/MMLCore/finder.pas index 6c34c8d..d505930 100644 --- a/Units/MMLCore/finder.pas +++ b/Units/MMLCore/finder.pas @@ -1797,7 +1797,7 @@ var // Bitwise // TODO: Change to record. One that indicates if there is a match at bit i - // and one that indicates it has already been matched at bit i... + // and one that indicates it has already been tested at bit i... b: Array of Array of Integer; // bounds diff --git a/Units/MMLCore/window.pas b/Units/MMLCore/window.pas index 0cb63e8..8d931f0 100644 --- a/Units/MMLCore/window.pas +++ b/Units/MMLCore/window.pas @@ -330,7 +330,7 @@ begin Old_Handler := XSetErrorHandler(@MufasaXErrorHandler); Self.XWindowImage := XGetImage(Self.XDisplay, Self.curWindow, xs, ys, width, height, AllPlanes, ZPixmap); - if QWord(Self.XWindowImage) = 0 then + if Self.XWindowImage = nil then begin Writeln('ReturnData: XGetImage Error. Dumping data now:'); Writeln('xs, ys, width, height: ' + inttostr(xs) + ', ' + inttostr(ys) + @@ -377,7 +377,7 @@ begin if not Self.XImageFreed then begin Self.XImageFreed:=True; - if(QWord(Self.XWindowImage) <> 0) then // 0, nil? + if(Self.XWindowImage <> nil) then begin XDestroyImage(Self.XWindowImage); end;