diff --git a/applications/cactusjukebox/source/cleanlibrary.pas b/applications/cactusjukebox/source/cleanlibrary.pas index 17c94e8e4..cc305d0fb 100644 --- a/applications/cactusjukebox/source/cleanlibrary.pas +++ b/applications/cactusjukebox/source/cleanlibrary.pas @@ -296,7 +296,7 @@ Begin End; Until FindNext(mp3search)<>0; Findclose(mp3search); - BubbleSort(files); + BubbleSort(TStrings(files)); for i := 1 to files.Count do lstRemove.Items.Add(files[i-1]); @@ -315,7 +315,7 @@ Begin end; Until FindNext(dirsearch)<>0; Findclose(dirsearch); - BubbleSort(folders); + BubbleSort(TStrings(folders)); for i := 1 to folders.Count do lstRemove.Items.Add(folders[i-1]); End; diff --git a/applications/cactusjukebox/source/config.pas b/applications/cactusjukebox/source/config.pas index 685aba529..077852ec9 100644 --- a/applications/cactusjukebox/source/config.pas +++ b/applications/cactusjukebox/source/config.pas @@ -22,7 +22,7 @@ Unit config; Interface Uses -Classes, SysUtils, xmlcfg, gettext, playerclass; +Classes, SysUtils, xmlcfg, gettext, debug, playerclass; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ { TConfigObject } @@ -67,6 +67,9 @@ Type Function ReadConfig: boolean; Function FlushConfig: boolean; + function CheckCoverPath: boolean; + function GetCoverPath(AFileName: string): string; + function GetCoverDir: string; Procedure Clear; Private FConfigPath: string; @@ -244,6 +247,31 @@ Begin End; End; +function TConfigObject.CheckCoverPath: boolean; +var + aPath: string; +begin + aPath := GetCoverDir; + result := DirectoryExists(aPath); + if not result then begin + result := ForceDirectories(aPath); + if not result then + DebugOutLn('WARNING: unable to force covercache directory', 1); + end; +end; + +function TConfigObject.GetCoverPath(AFileName: string): string; +begin + result := GetCoverDir; + if AFilename<>'' then + result := result + DirectorySeparator + AFilename; +end; + +function TConfigObject.GetCoverDir: string; +begin + result := IncludeTrailingPathDelimiter(CactusConfig.ConfigPrefix) + 'covercache'; +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TConfigObject.Clear; diff --git a/applications/cactusjukebox/source/directories.lfm b/applications/cactusjukebox/source/directories.lfm index cce1961b0..5ec368d8e 100755 --- a/applications/cactusjukebox/source/directories.lfm +++ b/applications/cactusjukebox/source/directories.lfm @@ -12,7 +12,7 @@ object dirwin: Tdirwin OnCreate = FormCreate Position = poMainFormCenter ShowInTaskBar = stNever - LCLVersion = '0.9.29' + LCLVersion = '0.9.31' object add: TButton Left = 383 Height = 25 @@ -75,11 +75,9 @@ object dirwin: Tdirwin Width = 364 Anchors = [akTop, akLeft, akRight, akBottom] ItemHeight = 0 - OnClick = dirlistviewClick TabOrder = 5 end object SelectDirectoryDialog1: TSelectDirectoryDialog - Title = 'Select Directory' FilterIndex = 0 end end diff --git a/applications/cactusjukebox/source/directories.lrs b/applications/cactusjukebox/source/directories.lrs index 85758f0f3..4a87ddca4 100755 --- a/applications/cactusjukebox/source/directories.lrs +++ b/applications/cactusjukebox/source/directories.lrs @@ -1,4 +1,4 @@ -{ Das ist eine automatisch erzeugte Lazarus-Ressourcendatei } +{ This is an automatically generated lazarus resource file } LazarusResources.Add('Tdirwin','FORMDATA',[ 'TPF0'#7'Tdirwin'#6'dirwin'#4'Left'#3'^'#1#6'Height'#3#19#1#3'Top'#3'#'#1#5'W' @@ -6,7 +6,7 @@ LazarusResources.Add('Tdirwin','FORMDATA',[ +#10'biMinimize'#0#7'Caption'#6#11'Directories'#12'ClientHeight'#3#19#1#11'Cl' +'ientWidth'#3#215#1#9'FormStyle'#7#11'fsStayOnTop'#8'OnCreate'#7#10'FormCrea' +'te'#8'Position'#7#16'poMainFormCenter'#13'ShowInTaskBar'#7#7'stNever'#10'LC' - +'LVersion'#6#6'0.9.29'#0#7'TButton'#3'add'#4'Left'#3#127#1#6'Height'#2#25#3 + +'LVersion'#6#6'0.9.31'#0#7'TButton'#3'add'#4'Left'#3#127#1#6'Height'#2#25#3 +'Top'#2#16#5'Width'#2'L'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacin' +'g.InnerBorder'#2#4#7'Caption'#6#3'Add'#7'OnClick'#7#8'addClick'#8'TabOrder' +#2#0#0#0#7'TButton'#9'removebut'#4'Left'#3#128#1#6'Height'#2#25#3'Top'#2'0'#5 @@ -23,7 +23,6 @@ LazarusResources.Add('Tdirwin','FORMDATA',[ +#4#7'Caption'#6#4'Back'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#4#0#0#8 +'TListBox'#11'dirlistview'#4'Left'#2#8#6'Height'#3#0#1#3'Top'#2#8#5'Width'#3 +'l'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#10'ItemHeigh' - +'t'#2#0#7'OnClick'#7#16'dirlistviewClick'#8'TabOrder'#2#5#0#0#22'TSelectDire' - +'ctoryDialog'#22'SelectDirectoryDialog1'#5'Title'#6#16'Select Directory'#11 - +'FilterIndex'#2#0#0#0#0 + +'t'#2#0#8'TabOrder'#2#5#0#0#22'TSelectDirectoryDialog'#22'SelectDirectoryDia' + +'log1'#11'FilterIndex'#2#0#0#0#0 ]); diff --git a/applications/cactusjukebox/source/directories.pas b/applications/cactusjukebox/source/directories.pas index 2230787cc..03622b031 100755 --- a/applications/cactusjukebox/source/directories.pas +++ b/applications/cactusjukebox/source/directories.pas @@ -39,8 +39,6 @@ Type rescanall: TButton; SelectDirectoryDialog1: TSelectDirectoryDialog; Procedure Button1Click(Sender: TObject); - Procedure Button3Click(Sender: TObject); - Procedure dirlistviewClick(Sender: TObject); Procedure FormCreate(Sender: TObject); Procedure addClick(Sender: TObject); Procedure removeClick(Sender: TObject); @@ -100,7 +98,7 @@ Begin MediaCollection.add_directory(SelectDirectoryDialog1.FileName); dirlistview.Items.Add(SelectDirectoryDialog1.FileName); - If MediaCollection.ItemCount>1 Then + If MediaCollection.ItemCount>0 Then Begin Main.ArtistTree.Selected := Nil; main.update_artist_view; @@ -149,14 +147,13 @@ Var rescandir: string; i, n: integer; Begin Main.clear_listClick(nil); + For n:= 0 To dirlistview.Items.Count-1 Do Begin If dirlistview.Selected[n] Then Begin - rescandir := dirlistview.Items[n]; + rescandir := ExcludeTrailingPathDelimiter(dirlistview.Items[n]); dirlistview.show; - If rescandir[length(rescandir)]=DirectorySeparator Then delete(rescandir,length(rescandir) - , 1); i := 0; Repeat Begin @@ -175,9 +172,10 @@ Begin update_title_view; Application.ProcessMessages; MediaCollection.add_directory(rescandir); + End; - If MediaCollection.ItemCount>1 Then + If MediaCollection.ItemCount>0 Then Begin Main.ArtistTree.Selected := Nil; main.update_artist_view; @@ -208,16 +206,6 @@ End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -Procedure Tdirwin.Button3Click(Sender: TObject); -Begin - -End; - -Procedure Tdirwin.dirlistviewClick(Sender: TObject); -Begin - -End; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ initialization diff --git a/applications/cactusjukebox/source/editid3.lfm b/applications/cactusjukebox/source/editid3.lfm index 9a27b811c..49df00e56 100755 --- a/applications/cactusjukebox/source/editid3.lfm +++ b/applications/cactusjukebox/source/editid3.lfm @@ -17,7 +17,7 @@ object EditID3: TEditID3 OnHide = FormHide Position = poMainFormCenter ShowInTaskBar = stNever - LCLVersion = '0.9.29' + LCLVersion = '0.9.31' object metacontrol: TPageControl Left = 8 Height = 402 @@ -27,16 +27,14 @@ object EditID3: TEditID3 Anchors = [akTop, akLeft, akRight, akBottom] TabIndex = 0 TabOrder = 0 - OnChange = metacontrolChange - OnPageChanged = metacontrolChange object metatab: TTabSheet Caption = 'Meta-Info' ClientHeight = 371 ClientWidth = 405 object lblYear: TLabel - Left = 118 + Left = 22 Height = 14 - Top = 214 + Top = 256 Width = 26 Caption = 'Year' ParentColor = False @@ -51,9 +49,9 @@ object EditID3: TEditID3 end object AlbumCoverImg: TImage Left = 232 - Height = 146 + Height = 151 Top = 214 - Width = 162 + Width = 160 Anchors = [akTop, akLeft, akRight, akBottom] AutoSize = True Proportional = True @@ -92,17 +90,17 @@ object EditID3: TEditID3 ParentColor = False end object lblGenre: TLabel - Left = 22 + Left = 20 Height = 14 - Top = 252 + Top = 296 Width = 36 Caption = 'Genre' ParentColor = False end object lblComment: TLabel - Left = 21 + Left = 22 Height = 14 - Top = 282 + Top = 328 Width = 56 Caption = 'Comment' ParentColor = False @@ -114,13 +112,13 @@ object EditID3: TEditID3 Width = 241 Caption = 'Tag to name' ClientHeight = 38 - ClientWidth = 237 + ClientWidth = 233 TabOrder = 10 object btnOptions: TButton Left = 125 Height = 23 Hint = '( %a/%a - %b - %n - %t )' - Top = 11 + Top = 8 Width = 105 Anchors = [akLeft, akBottom] BorderSpacing.Around = 4 @@ -133,7 +131,7 @@ object EditID3: TEditID3 object Button1: TButton Left = 15 Height = 23 - Top = 11 + Top = 8 Width = 105 Anchors = [akLeft, akBottom] BorderSpacing.Around = 4 @@ -146,70 +144,70 @@ object EditID3: TEditID3 end object artistedit1: TEdit Left = 66 - Height = 23 + Height = 21 Top = 114 - Width = 328 + Width = 326 Anchors = [akTop, akLeft, akRight] OnChange = activateEMode TabOrder = 1 end object titleedit1: TEdit - Left = 67 - Height = 23 + Left = 66 + Height = 21 Top = 146 - Width = 327 + Width = 326 Anchors = [akTop, akLeft, akRight] OnChange = activateEMode TabOrder = 2 end object albumedit1: TEdit - Left = 67 - Height = 23 + Left = 66 + Height = 21 Top = 178 - Width = 328 + Width = 326 Anchors = [akTop, akLeft, akRight] OnChange = activateEMode TabOrder = 3 end object yearEdit1: TEdit - Left = 153 - Height = 23 - Top = 210 + Left = 152 + Height = 21 + Top = 256 Width = 64 MaxLength = 4 TabOrder = 5 end object commentedit1: TEdit - Left = 22 - Height = 23 - Top = 298 + Left = 21 + Height = 21 + Top = 336 Width = 194 OnChange = activateEMode TabOrder = 6 end object pathedit1: TEdit Left = 15 - Height = 23 + Height = 21 Top = 82 - Width = 380 + Width = 378 Anchors = [akTop, akLeft, akRight] OnChange = activateEMode TabOrder = 0 end object trackedit1: TEdit Left = 66 - Height = 23 + Height = 21 Top = 210 - Width = 35 + Width = 60 MaxLength = 4 OnChange = activateEMode TabOrder = 4 end object guessname1: TButton Left = 278 - Height = 25 + Height = 27 Top = 31 - Width = 98 + Width = 100 AutoSize = True BorderSpacing.Around = 4 Caption = 'Tag from name' @@ -217,9 +215,9 @@ object EditID3: TEditID3 TabOrder = 7 end object cmbYear: TComboBox - Left = 151 - Height = 27 - Top = 210 + Left = 153 + Height = 29 + Top = 252 Width = 64 ItemHeight = 0 MaxLength = 4 @@ -230,9 +228,9 @@ object EditID3: TEditID3 Visible = False end object cmbComment: TComboBox - Left = 19 - Height = 27 - Top = 298 + Left = 20 + Height = 29 + Top = 332 Width = 196 ItemHeight = 0 OnChange = activateEMode @@ -243,8 +241,8 @@ object EditID3: TEditID3 end object GenreBox: TComboBox Left = 67 - Height = 27 - Top = 244 + Height = 29 + Top = 288 Width = 150 AutoComplete = True AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending] @@ -260,7 +258,7 @@ object EditID3: TEditID3 ClientWidth = 405 object mtype: TLabel Left = 40 - Height = 20 + Height = 14 Top = 34 Width = 62 Caption = 'Mediatype:' @@ -268,7 +266,7 @@ object EditID3: TEditID3 end object bitrate: TLabel Left = 40 - Height = 20 + Height = 14 Top = 114 Width = 81 Caption = 'Bitrate: 0kbps' @@ -276,7 +274,7 @@ object EditID3: TEditID3 end object fsize: TLabel Left = 40 - Height = 20 + Height = 14 Top = 94 Width = 77 Caption = 'Filesize: 0 MB' @@ -284,7 +282,7 @@ object EditID3: TEditID3 end object srate: TLabel Left = 40 - Height = 20 + Height = 14 Top = 134 Width = 71 Caption = 'Samplerate:' @@ -292,7 +290,7 @@ object EditID3: TEditID3 end object plength: TLabel Left = 40 - Height = 20 + Height = 14 Top = 58 Width = 43 Caption = 'Length:' @@ -300,7 +298,7 @@ object EditID3: TEditID3 end object idlabel: TLabel Left = 41 - Height = 20 + Height = 14 Top = 178 Width = 37 Caption = 'Fileid: ' @@ -308,7 +306,7 @@ object EditID3: TEditID3 end object indexlabel: TLabel Left = 40 - Height = 20 + Height = 14 Top = 194 Width = 53 Caption = 'FileIndex:' diff --git a/applications/cactusjukebox/source/editid3.lrs b/applications/cactusjukebox/source/editid3.lrs index 9cc0f97b8..e69de29bb 100755 --- a/applications/cactusjukebox/source/editid3.lrs +++ b/applications/cactusjukebox/source/editid3.lrs @@ -1,107 +0,0 @@ -{ This is an automatically generated lazarus resource file } - -LazarusResources.Add('TEditID3','FORMDATA',[ - 'TPF0'#8'TEditID3'#7'EditID3'#4'Left'#3#127#1#6'Height'#3#198#1#3'Top'#3#2#1#5 - +'Width'#3#176#1#18'HorzScrollBar.Page'#3#139#1#19'HorzScrollBar.Range'#3#127 - +#1#18'VertScrollBar.Page'#3#185#1#19'VertScrollBar.Range'#3#153#1#13'ActiveC' - +'ontrol'#7#11'metacontrol'#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#12'Edi' - +'t ID3 Tag'#12'ClientHeight'#3#198#1#11'ClientWidth'#3#176#1#7'OnClose'#7#12 - +'EditID3Close'#8'OnCreate'#7#10'FormCreate'#6'OnHide'#7#8'FormHide'#8'Positi' - +'on'#7#16'poMainFormCenter'#13'ShowInTaskBar'#7#7'stNever'#10'LCLVersion'#6#6 - +'0.9.29'#0#12'TPageControl'#11'metacontrol'#4'Left'#2#8#6'Height'#3#146#1#3 - +'Top'#2#8#5'Width'#3#155#1#10'ActivePage'#7#7'metatab'#7'Anchors'#11#5'akTop' - +#6'akLeft'#7'akRight'#8'akBottom'#0#8'TabIndex'#2#0#8'TabOrder'#2#0#8'OnChan' - +'ge'#7#17'metacontrolChange'#13'OnPageChanged'#7#17'metacontrolChange'#0#9'T' - +'TabSheet'#7'metatab'#7'Caption'#6#9'Meta-Info'#12'ClientHeight'#3's'#1#11'C' - +'lientWidth'#3#149#1#0#6'TLabel'#7'lblYear'#4'Left'#2'v'#6'Height'#2#14#3'To' - +'p'#3#214#0#5'Width'#2#26#7'Caption'#6#4'Year'#11'ParentColor'#8#0#0#6'TLabe' - +'l'#7'lblPath'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'B'#5'Width'#2'>'#7'Capti' - +'on'#6#12'Path to file'#11'ParentColor'#8#0#0#6'TImage'#13'AlbumCoverImg'#4 - +'Left'#3#232#0#6'Height'#3#146#0#3'Top'#3#214#0#5'Width'#3#162#0#7'Anchors' - +#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#8'AutoSize'#9#12'Proportiona' - +'l'#9#7'Stretch'#9#0#0#6'TLabel'#9'lblArtist'#4'Left'#2#22#6'Height'#2#14#3 - +'Top'#2'v'#5'Width'#2#31#7'Caption'#6#6'Artist'#11'ParentColor'#8#0#0#6'TLab' - +'el'#8'lblTitle'#4'Left'#2#22#6'Height'#2#14#3'Top'#3#150#0#5'Width'#2#25#7 - +'Caption'#6#5'Title'#11'ParentColor'#8#0#0#6'TLabel'#8'lblAlbum'#4'Left'#2#22 - +#6'Height'#2#14#3'Top'#3#182#0#5'Width'#2'$'#7'Caption'#6#5'Album'#11'Parent' - +'Color'#8#0#0#6'TLabel'#8'lblTrack'#4'Left'#2#22#6'Height'#2#14#3'Top'#3#214 - +#0#5'Width'#2#30#7'Caption'#6#5'Track'#11'ParentColor'#8#0#0#6'TLabel'#8'lbl' - +'Genre'#4'Left'#2#22#6'Height'#2#14#3'Top'#3#252#0#5'Width'#2'$'#7'Caption'#6 - +#5'Genre'#11'ParentColor'#8#0#0#6'TLabel'#10'lblComment'#4'Left'#2#21#6'Heig' - +'ht'#2#14#3'Top'#3#26#1#5'Width'#2'8'#7'Caption'#6#7'Comment'#11'ParentColor' - +#8#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#15#6'Height'#2'5'#3'Top'#2#7#5'Wi' - +'dth'#3#241#0#7'Caption'#6#11'Tag to name'#12'ClientHeight'#2'&'#11'ClientWi' - +'dth'#3#237#0#8'TabOrder'#2#10#0#7'TButton'#10'btnOptions'#4'Left'#2'}'#6'He' - +'ight'#2#23#4'Hint'#6#24'( %a/%a - %b - %n - %t )'#3'Top'#2#11#5'Width'#2'i' - +#7'Anchors'#11#6'akLeft'#8'akBottom'#0#20'BorderSpacing.Around'#2#4#7'Captio' - +'n'#6#7'Options'#7'OnClick'#7#15'btnOptionsClick'#14'ParentShowHint'#8#8'Sho' - +'wHint'#9#8'TabOrder'#2#0#0#0#7'TButton'#7'Button1'#4'Left'#2#15#6'Height'#2 - +#23#3'Top'#2#11#5'Width'#2'i'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#20'Borde' - +'rSpacing.Around'#2#4#7'Caption'#6#9'Apply now'#7'OnClick'#7#12'Button1Click' - +#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#1#0#0#0#5'TEdit'#11'artist' - +'edit1'#4'Left'#2'B'#6'Height'#2#23#3'Top'#2'r'#5'Width'#3'H'#1#7'Anchors'#11 - +#5'akTop'#6'akLeft'#7'akRight'#0#8'OnChange'#7#13'activateEMode'#8'TabOrder' - +#2#1#0#0#5'TEdit'#10'titleedit1'#4'Left'#2'C'#6'Height'#2#23#3'Top'#3#146#0#5 - +'Width'#3'G'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'OnChange'#7#13 - +'activateEMode'#8'TabOrder'#2#2#0#0#5'TEdit'#10'albumedit1'#4'Left'#2'C'#6'H' - +'eight'#2#23#3'Top'#3#178#0#5'Width'#3'H'#1#7'Anchors'#11#5'akTop'#6'akLeft' - +#7'akRight'#0#8'OnChange'#7#13'activateEMode'#8'TabOrder'#2#3#0#0#5'TEdit'#9 - +'yearEdit1'#4'Left'#3#153#0#6'Height'#2#23#3'Top'#3#210#0#5'Width'#2'@'#9'Ma' - +'xLength'#2#4#8'TabOrder'#2#5#0#0#5'TEdit'#12'commentedit1'#4'Left'#2#22#6'H' - +'eight'#2#23#3'Top'#3'*'#1#5'Width'#3#194#0#8'OnChange'#7#13'activateEMode'#8 - +'TabOrder'#2#6#0#0#5'TEdit'#9'pathedit1'#4'Left'#2#15#6'Height'#2#23#3'Top'#2 - +'R'#5'Width'#3'|'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'OnChange' - +#7#13'activateEMode'#8'TabOrder'#2#0#0#0#5'TEdit'#10'trackedit1'#4'Left'#2'B' - +#6'Height'#2#23#3'Top'#3#210#0#5'Width'#2'#'#9'MaxLength'#2#4#8'OnChange'#7 - +#13'activateEMode'#8'TabOrder'#2#4#0#0#7'TButton'#10'guessname1'#4'Left'#3#22 - +#1#6'Height'#2#25#3'Top'#2#31#5'Width'#2'b'#8'AutoSize'#9#20'BorderSpacing.A' - +'round'#2#4#7'Caption'#6#13'Tag from name'#7'OnClick'#7#14'guessnameClick'#8 - +'TabOrder'#2#7#0#0#9'TComboBox'#7'cmbYear'#4'Left'#3#151#0#6'Height'#2#27#3 - +'Top'#3#210#0#5'Width'#2'@'#10'ItemHeight'#2#0#9'MaxLength'#2#4#8'OnChange'#7 - +#13'cmbYearChange'#6'Sorted'#9#8'TabOrder'#2#8#4'Text'#6#4'cmbY'#7'Visible'#8 - +#0#0#9'TComboBox'#10'cmbComment'#4'Left'#2#19#6'Height'#2#27#3'Top'#3'*'#1#5 - +'Width'#3#196#0#10'ItemHeight'#2#0#8'OnChange'#7#13'activateEMode'#6'Sorted' - +#9#8'TabOrder'#2#9#4'Text'#6#10'cmbComment'#7'Visible'#8#0#0#9'TComboBox'#8 - +'GenreBox'#4'Left'#2'C'#6'Height'#2#27#3'Top'#3#244#0#5'Width'#3#150#0#12'Au' - +'toComplete'#9#16'AutoCompleteText'#11#12'cbactEnabled'#22'cbactEndOfLineCom' - +'plete'#20'cbactSearchAscending'#0#10'ItemHeight'#2#0#8'OnChange'#7#13'activ' - ,'ateEMode'#6'Sorted'#9#8'TabOrder'#2#11#0#0#0#9'TTabSheet'#8'fileinfo'#7'Cap' - +'tion'#6#9'File-Info'#12'ClientHeight'#3's'#1#11'ClientWidth'#3#149#1#0#6'TL' - +'abel'#5'mtype'#4'Left'#2'('#6'Height'#2#20#3'Top'#2'"'#5'Width'#2'>'#7'Capt' - +'ion'#6#10'Mediatype:'#11'ParentColor'#8#0#0#6'TLabel'#7'bitrate'#4'Left'#2 - +'('#6'Height'#2#20#3'Top'#2'r'#5'Width'#2'Q'#7'Caption'#6#14'Bitrate: 0kbps' - +#11'ParentColor'#8#0#0#6'TLabel'#5'fsize'#4'Left'#2'('#6'Height'#2#20#3'Top' - +#2'^'#5'Width'#2'M'#7'Caption'#6#14'Filesize: 0 MB'#11'ParentColor'#8#0#0#6 - +'TLabel'#5'srate'#4'Left'#2'('#6'Height'#2#20#3'Top'#3#134#0#5'Width'#2'G'#7 - +'Caption'#6#11'Samplerate:'#11'ParentColor'#8#0#0#6'TLabel'#7'plength'#4'Lef' - +'t'#2'('#6'Height'#2#20#3'Top'#2':'#5'Width'#2'+'#7'Caption'#6#7'Length:'#11 - +'ParentColor'#8#0#0#6'TLabel'#7'idlabel'#4'Left'#2')'#6'Height'#2#20#3'Top'#3 - +#178#0#5'Width'#2'%'#7'Caption'#6#8'Fileid: '#11'ParentColor'#8#0#0#6'TLabel' - +#10'indexlabel'#4'Left'#2'('#6'Height'#2#20#3'Top'#3#194#0#5'Width'#2'5'#7'C' - +'aption'#6#10'FileIndex:'#11'ParentColor'#8#0#0#6'TImage'#8'Filelogo'#4'Left' - +#3#230#0#6'Height'#2'd'#3'Top'#2'"'#5'Width'#2'd'#0#0#0#9'TTabSheet'#9'Strea' - +'mTab'#7'Caption'#6#11'Stream-Info'#12'ClientHeight'#3's'#1#11'ClientWidth'#3 - +#149#1#0#6'TLabel'#6'Label1'#4'Left'#2#26#6'Height'#2#14#3'Top'#2#15#5'Width' - +#2'"'#7'Caption'#6#4'Name'#5'Color'#7#12'clBackground'#11'ParentColor'#8#11 - +'Transparent'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#26#6'Height'#2#14#3'Top'#2 - +'O'#5'Width'#2'D'#7'Caption'#6#10'Stream URL'#5'Color'#7#12'clBackground'#11 - +'ParentColor'#8#11'Transparent'#8#0#0#6'TLabel'#6'Label3'#4'Left'#2#26#6'Hei' - +'ght'#2#14#3'Top'#3#143#0#5'Width'#2'A'#7'Caption'#6#11'Description'#5'Color' - +#7#12'clBackground'#11'ParentColor'#8#11'Transparent'#8#0#0#5'TEdit'#8'NameE' - +'dit'#4'Left'#2'.'#6'Height'#2#23#3'Top'#2'!'#5'Width'#3'('#1#8'TabOrder'#2#0 - +#0#0#5'TEdit'#7'URLEdit'#4'Left'#2'.'#6'Height'#2#23#3'Top'#2'a'#5'Width'#3 - +'('#1#8'TabOrder'#2#1#0#0#5'TMemo'#8'DescEdit'#4'Left'#2'.'#6'Height'#2'B'#3 - +'Top'#3#167#0#5'Width'#3'('#1#8'TabOrder'#2#2#0#0#0#0#7'TButton'#10'cancelbu' - +'t1'#4'Left'#3#24#1#6'Height'#2#25#3'Top'#3#162#1#5'Width'#2'K'#7'Anchors'#11 - +#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Cap' - +'tion'#6#7'&Cancel'#7'OnClick'#7#14'cancelbutClick'#8'TabOrder'#2#1#0#0#7'TB' - +'utton'#8'savebut1'#4'Left'#3#176#0#6'Height'#2#25#3'Top'#3#162#1#5'Width'#2 - +'K'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7 - +'Caption'#6#5'&Save'#7'Default'#9#7'OnClick'#7#12'savebutClick'#8'TabOrder'#2 - +#2#0#0#7'TButton'#8'btnReset'#4'Left'#2' '#6'Height'#2#25#3'Top'#3#162#1#5'W' - +'idth'#2'K'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBord' - +'er'#2#4#7'Caption'#6#6'&Reset'#7'OnClick'#7#13'btnResetClick'#8'TabOrder'#2 - +#3#0#0#6'TTimer'#16'PicDownloadTimer'#7'Enabled'#8#8'Interval'#2'd'#7'OnTime' - +'r'#7#21'PicDownloadTimerTimer'#12'OnStartTimer'#7#26'PicDownloadTimerStartT' - +'imer'#4'left'#3'X'#1#0#0#0 -]); diff --git a/applications/cactusjukebox/source/editid3.pas b/applications/cactusjukebox/source/editid3.pas index effd0f8e6..0d0404a33 100755 --- a/applications/cactusjukebox/source/editid3.pas +++ b/applications/cactusjukebox/source/editid3.pas @@ -21,7 +21,7 @@ This Software is published under the GPL Interface Uses -Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, +Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, FileUtil, {ExtCtrls,} Buttons, ComCtrls, lcltype, mediacol, ExtCtrls, skin, last_fm, streamcol, settings, debug, mp3file; @@ -110,14 +110,12 @@ Type titleedit1: TEdit; yearEdit2: TEdit; yearEdit3: TEdit; - procedure ac(Sender: TObject); procedure btnOptionsClick(Sender: TObject); Procedure Button1Click(Sender: TObject); Procedure btnResetClick(Sender: TObject); Procedure EditID3Close(Sender: TObject; Var CloseAction: TCloseAction); Procedure FormCreate(Sender: TObject); Procedure FormHide(Sender: TObject); - procedure metacontrolChange(Sender: TObject); Procedure PicDownloadTimerStartTimer(Sender: TObject); Procedure PicDownloadTimerTimer(Sender: TObject); Procedure cancelbutClick(Sender: TObject); @@ -145,6 +143,8 @@ Type ptrControls: array Of array Of ^TControl; // .. Procedure show_tags(); + function GetCoverPath: boolean; + function GetTrack: string; Public { public declarations } fileid: integer; @@ -157,6 +157,8 @@ Var Implementation + {$R *.lfm} + Uses mainform, config, functions; { TEditID3 } @@ -245,13 +247,13 @@ Begin MedFileObj.album := albumedit1.text; MedFileObj.year := yearedit1.text; MedFileObj.comment := commentedit1.text; - MedFileObj.track := trackedit1.text; + MedFileObj.track := GetTrack; if GenreBox.ItemIndex>=0 then MedFileObj.GenreID:= GenreIDtoCBIndex[0, GenreBox.ItemIndex]; MedFileObj.write_tag; - RenameFile(MedFileObj.path, editid3win.pathedit1.text); - MedFileObj.path := editid3win.pathedit1.text; + RenameFile(MedFileObj.path, UTF8ToSys(editid3win.pathedit1.text)); + MedFileObj.path := UTF8ToSys(editid3win.pathedit1.text); End; @@ -390,11 +392,6 @@ Begin End; -procedure TEditID3.metacontrolChange(Sender: TObject); -begin - -end; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TEditID3.PicDownloadTimerStartTimer(Sender: TObject); @@ -611,7 +608,7 @@ Begin // title(-mode) specific actions Else Begin - pathedit1.text := MedFileObj.path; + pathedit1.text := SysToUTF8(MedFileObj.path); //TODO: scroll TEdit to end of path titleedit1.text := MedFileObj.title; albumedit1.text := MedFileObj.album; @@ -625,6 +622,37 @@ Begin bEModeActive := false; End; +function TEditID3.GetCoverPath: boolean; +begin + MedFileObj.CoverPath := CactusConfig.GetCoverPath(MedFileObj.GetCoverFile); + result := FileExists(MedFileObj.CoverPath); +end; + +function TEditID3.GetTrack: string; +var + A,B: Integer; + AStr,BStr: string; +begin + // track must conform to n[/m] + AStr := Trim(trackedit1.text); + A := pos('/', AStr); + if A>0 then begin + BStr := Trim(Copy(AStr, A+1, Length(AStr))); + AStr := Trim(Copy(AStr, 1, A-1)); + B := StrToIntDef(BStr, -1); + end else + B := -1; + A := StrToIntDef(AStr, -1); + + if A<0 then + result := '' + else + if B<0 then + result := AStr + else + result := AStr + '/' + BStr; +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TEditID3.display_window(MedFile: TMediaFileClass; intMode: Integer); @@ -673,13 +701,10 @@ Begin Then Begin DebugOutLn('########AlbumCover', 5); - If MedFileObj.album<>'' + If (MedFileObj.album<>'') and CactusConfig.CheckCoverPath Then Begin - MedFileObj.CoverPath := CactusConfig.ConfigPrefix+DirectorySeparator+'covercache'+ - DirectorySeparator+MedFileObj.artist+'_'+MedFileObj.album+ - '.jpeg'; - If FileExists(MedFileObj.CoverPath) Then + if GetCoverPath then Begin Try AlbumCoverImg.Picture.LoadFromFile(MedFileObj.CoverPath); @@ -738,18 +763,16 @@ Begin writeln('########AlbumCover'); // DEBUG-INFO - If MedFileObj.album<>'' + If (MedFileObj.album<>'') and CactusConfig.CheckCoverPath Then Begin - MedFileObj.CoverPath := CactusConfig.ConfigPrefix+DirectorySeparator+'covercache'+ - DirectorySeparator+MedFileObj.artist+'_'+MedFileObj.album+'.jpeg'; - If FileExists(MedFileObj.CoverPath) + if GetCoverPath Then Begin Try AlbumCoverImg.Picture.LoadFromFile(MedFileObj.CoverPath); Except - writeln('EXCEPTION'); + writeln('EXCEPTION loading cover'); End; End Else @@ -859,8 +882,7 @@ Begin else // title-mode begin MedFileObj.PathNameFromTag(CactusConfig.strTagToNameFormatString); - EditID3win.pathedit1.text := MedFileObj.Path; - + EditID3win.pathedit1.text := SysToUTF8(MedFileObj.Path); end; @@ -878,11 +900,6 @@ begin Enabled := true; end; -procedure TEditID3.ac(Sender: TObject); -begin - -end; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TEditID3.btnResetClick(Sender: TObject); @@ -891,24 +908,24 @@ Begin End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - +// TODO: check .... Procedure TEditID3.guessnameClick(Sender: TObject); Var z: integer; tmps: string; Begin - tmps := extractfilename(pathedit1.Text); + tmps := extractfilename(UTF8ToSys(pathedit1.Text)); If ((tmps[1]<#60) And (tmps[2]<#60) And (tmps[4]=#45)) Then Begin - trackedit1.text := copy(tmps,1,2); + trackedit1.text := SysToUTF8(copy(tmps,1,2)); delete(tmps, 1, 5); End; z := pos(' - ', tmps)+3; If z<>3 Then Begin - titleedit1.text := TrimRight(copy(tmps,z,length(tmps)-z-3)); - artistedit1.text := TrimRight(copy(tmps,1,z-3)); + titleedit1.text := SysToUTF8(TrimRight(copy(tmps,z,length(tmps)-z-3))); + artistedit1.text := SysToUTF8(TrimRight(copy(tmps,1,z-3))); End Else Begin @@ -920,7 +937,4 @@ End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -initialization - {$I editid3.lrs} - End. diff --git a/applications/cactusjukebox/source/functions.pas b/applications/cactusjukebox/source/functions.pas index 27be760ec..4b6f7a49f 100644 --- a/applications/cactusjukebox/source/functions.pas +++ b/applications/cactusjukebox/source/functions.pas @@ -18,7 +18,7 @@ Unit functions; Interface Uses -Classes, SysUtils, crt, math, config; +Classes, SysUtils, math, config; diff --git a/applications/cactusjukebox/source/last_fm.pas b/applications/cactusjukebox/source/last_fm.pas index 49e11adf7..0cc232814 100644 --- a/applications/cactusjukebox/source/last_fm.pas +++ b/applications/cactusjukebox/source/last_fm.pas @@ -144,7 +144,10 @@ Begin node:=node.NextSibling else done:= true; end; - FAlbumInfo.CoverURL:=node.FirstChild.NodeValue; + if node.FirstChild<>nil then + FAlbumInfo.CoverURL:=node.FirstChild.NodeValue + else + FAlbumInfo.CoverURL:=''; // FAlbumInfo.CoverURL:=StringReplace(FAlbumInfo.CoverURL, #10, '', [rfReplaceAll]); // FAlbumInfo.CoverURL:=StringReplace(FAlbumInfo.CoverURL, #13, '', [rfReplaceAll]); // TODO: Clean up linebreaks in strings retrieved from XML files diff --git a/applications/cactusjukebox/source/mainform.lfm b/applications/cactusjukebox/source/mainform.lfm index 129dca6cb..0bf4573c7 100644 --- a/applications/cactusjukebox/source/mainform.lfm +++ b/applications/cactusjukebox/source/mainform.lfm @@ -1,11 +1,11 @@ object Main: TMain - Left = 261 - Height = 720 - Top = 124 + Left = 39 + Height = 624 + Top = 0 Width = 893 ActiveControl = Panel4 Caption = 'titel' - ClientHeight = 701 + ClientHeight = 601 ClientWidth = 893 Icon.Data = { 3E42000000000100010040400000010020002842000016000000280000004000 @@ -543,14 +543,13 @@ object Main: TMain Menu = Mainmenu1 OnClose = MainClose OnCreate = MainCreate - OnResize = FormResize - Position = poDefault ShowInTaskBar = stAlways - LCLVersion = '0.9.29' + LCLVersion = '0.9.31' + WindowState = wsMaximized object StatusBar1: TStatusBar Left = 0 - Height = 18 - Top = 683 + Height = 17 + Top = 584 Width = 893 Panels = < item @@ -564,31 +563,29 @@ object Main: TMain end object Splitter1: TSplitter Left = 288 - Height = 683 + Height = 584 Top = 0 Width = 8 - Align = alRight AutoSnap = False Color = clBtnFace OnMoved = Splitter1Moved ParentColor = False - ResizeAnchor = akRight end object Panel1: TPanel Left = 296 - Height = 683 + Height = 584 Top = 0 Width = 597 - Align = alRight + Align = alClient BevelOuter = bvNone - ClientHeight = 683 + ClientHeight = 584 ClientWidth = 597 TabOrder = 0 OnClick = Panel1Click OnResize = Panel1Resize object TitleTree: TListView Left = 0 - Height = 237 + Height = 154 Top = 5 Width = 587 Align = alTop @@ -618,8 +615,7 @@ object Main: TMain item AutoSize = True Caption = 'Track' - MaxWidth = 30 - Width = 30 + Width = 39 end item AutoSize = True @@ -636,9 +632,8 @@ object Main: TMain AutoSize = True Caption = 'Length' MaxWidth = 60 - Width = 357 + Width = 349 end> - ItemIndex = -1 PopupMenu = titlelistmenu ReadOnly = True RowSelect = True @@ -660,19 +655,19 @@ object Main: TMain Cursor = crVSplit Left = 0 Height = 10 - Top = 242 + Top = 159 Width = 597 Align = alTop ResizeAnchor = akTop end object Panel3: TPanel Left = 0 - Height = 431 - Top = 252 + Height = 415 + Top = 169 Width = 597 Align = alClient BevelOuter = bvNone - ClientHeight = 431 + ClientHeight = 415 ClientWidth = 597 TabOrder = 2 object PlayerControlsPanel: TPanel @@ -696,7 +691,6 @@ object Main: TMain Hint = 'Mute' Top = 208 Width = 30 - Color = clBtnFace Flat = True Glyph.Data = { 36040000424D3604000000000000360000002800000010000000100000000100 @@ -810,7 +804,6 @@ object Main: TMain Hint = 'Track info' Top = 173 Width = 30 - Color = clBtnFace Flat = True Glyph.Data = { 36040000424D3604000000000000360000002800000010000000100000000100 @@ -854,7 +847,7 @@ object Main: TMain end object current_title_edit: TEdit Left = 12 - Height = 24 + Height = 21 Top = 102 Width = 200 Color = clBtnFace @@ -863,7 +856,7 @@ object Main: TMain end object current_title_edit1: TEdit Left = 12 - Height = 24 + Height = 21 Top = 134 Width = 200 Color = clBtnFace @@ -872,9 +865,9 @@ object Main: TMain end object randomcheck: TCheckBox Left = 135 - Height = 23 + Height = 21 Top = 250 - Width = 73 + Width = 69 Caption = 'Random' OnChange = randomcheckChange TabOrder = 3 @@ -917,7 +910,7 @@ object Main: TMain end object Playlist: TListView Left = 237 - Height = 349 + Height = 333 Top = 75 Width = 348 Align = alCustom @@ -927,9 +920,8 @@ object Main: TMain item AutoSize = True Caption = 'Playlist' - Width = 328 + Width = 329 end> - ItemIndex = -1 PopupMenu = playlistmenu ReadOnly = True RowSelect = True @@ -948,9 +940,9 @@ object Main: TMain OnStartDrag = PlaylistStartDrag end object Panel2: TPanel - Left = 4 + Left = 0 Height = 50 - Top = 11 + Top = 2 Width = 464 ClientHeight = 50 ClientWidth = 464 @@ -958,7 +950,7 @@ object Main: TMain TabOrder = 2 object filetypebox: TComboBox Left = 360 - Height = 24 + Height = 29 Top = 14 Width = 90 ItemHeight = 0 @@ -979,7 +971,7 @@ object Main: TMain end object searchstr: TEdit Left = 120 - Height = 24 + Height = 21 Top = 14 Width = 232 OnKeyUp = searchstrKeyUp @@ -1021,11 +1013,11 @@ object Main: TMain end object clear_list: TBitBtn AnchorSideBottom.Side = asrCenter - Left = 514 + Left = 517 Height = 34 Hint = 'Clear Playlist' - Top = 33 - Width = 70 + Top = 6 + Width = 67 Anchors = [akTop, akRight] AutoSize = True Caption = 'Clear' @@ -1090,23 +1082,31 @@ object Main: TMain ShowHint = True TabOrder = 3 end + object lblPath: TLabel + Left = 8 + Height = 14 + Top = 56 + Width = 39 + Caption = 'lblPath' + ParentColor = False + end end end object Panel4: TPanel Left = 0 - Height = 683 + Height = 584 Top = 0 Width = 288 - Align = alClient + Align = alLeft BorderSpacing.InnerBorder = 30 BevelOuter = bvNone - ClientHeight = 683 + ClientHeight = 584 ClientWidth = 288 TabOrder = 1 OnClick = Panel4Click object ArtistTree: TTreeView Left = 26 - Height = 673 + Height = 574 Top = 5 Width = 259 Align = alClient @@ -1158,7 +1158,6 @@ object Main: TMain Height = 22 Top = 6 Width = 23 - Color = clBtnFace Flat = True Glyph.Data = { 36040000424D3604000000000000360000002800000010000000100000000100 @@ -1201,7 +1200,7 @@ object Main: TMain end object artistsearch: TEdit Left = 8 - Height = 24 + Height = 21 Top = 32 Width = 110 OnKeyUp = ArtistTreeKeyUp @@ -1211,7 +1210,7 @@ object Main: TMain end object ToolBar1: TToolBar Left = 0 - Height = 678 + Height = 579 Top = 5 Width = 26 Align = alLeft @@ -1232,24 +1231,24 @@ object Main: TMain AutoSize = True Caption = 'Library' ImageIndex = 0 - Style = tbsCheck OnClick = LibModeBtnClick + Style = tbsCheck end object NetModeBtn: TToolButton Left = 1 - Top = 150 + Top = 154 Caption = 'NetModeBtn' ImageIndex = 1 - Style = tbsCheck OnClick = NetModeBtnClick + Style = tbsCheck end object DeviceModeBtn: TToolButton Left = 1 - Top = 300 + Top = 308 Caption = 'DeviceModeBtn' ImageIndex = 2 - Style = tbsCheck OnClick = DeviceModeBtnClick + Style = tbsCheck end end end @@ -1580,6 +1579,42 @@ object Main: TMain Caption = 'Mobile Player' object MIDeviceInfo: TMenuItem Caption = 'Device Info' + Bitmap.Data = { + 36040000424D3604000000000000360000002800000010000000100000000100 + 2000000000000004000064000000640000000000000000000000FFFFFF00FFFF + FF00FFFFFF00000000100000001A0000001A0000001A0000001A0000001A0000 + 0019000000120000000A00000002FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF0000000020683B02879B5702F29A5702E561370285000000330000 + 0031000000230000001300000004FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF002D1C0500AE680FF2E19A38FFDF9837FFB67117FF844F0D6C2D1C + 0500000000000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00CB812400CB8124E7E8A745FFFAC25DFFEDB14EFFCB8124DBCB81 + 24007C5321000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00E0943300E4973540E79937CAE79937FCE79937FFE79937FCEA9B + 3900F8A64100FFA94300804E1A00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00E0943300E7993700EE9E3B00EE9E3B00F3A13E00FCA843FFFCA8 + 4300FCA843FFFFA94320FF9B3400FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00E0943300E7993700EE9E3B00F39F3B00FFA43D00FFA43DFFFFA5 + 3E00FFA84200FFA43DFFFF9B3420FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00E0943300E7993700F2993500FF8F2800FF8F2800FF8F28FFFF8F + 2800FF973100FF922B0CFF8F28F4FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00EC862300EF892500F97B1500F97B1500F97B1500F97B15FFF97B + 1500F9831D00F97B1524EE7B15F1FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00F77C1600F77C1600F77C1600F77C1600F77C1600F77C16FFF883 + 1D00F8872107E27A14C9F77C16A2FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FA952F00FA952F00FA952F00FA952F00FA952F00FA952FFFFB9D + 370EE48620C6FA952FE9F887211AFFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FEB14B00FEB14B00FEB14B00FEB14B00FEB14B00FEB14BFFE594 + 2ED9FEB14BF4FEAE4835FDAB4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFBB5500FFBB5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB + 55FDFFBB554EFEB14B00FDAB4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFBB5500FFBB5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB + 5584FFBB5500FEB14B00FDAB4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFBB5500FFBB5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB + 5513FFBB5500FFBB5500FFBB5500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00 + } ImageIndex = 8 OnClick = MIDeviceInfoClick end @@ -1855,7 +1890,6 @@ object Main: TMain end end object Selectdirectorydialog1: TSelectDirectoryDialog - Title = 'Select Directory' FilterIndex = 0 top = 304 end @@ -2067,16 +2101,14 @@ object Main: TMain top = 232 end object SaveDialog1: TSaveDialog - Title = 'Save file as' FilterIndex = 0 top = 560 end object ImageList1: TImageList - DrawingStyle = dsFocus ShareImages = True top = 344 Bitmap = { - 4C69060000001000000010000000E01D450000000000400E6E00000000000000 + 4C69090000001000000010000000E01D450000000000400E6E00000000000000 0000000000000000000000000000858A8800858A88007B7F7E00161717000000 00000000000000000000000000000000000082868400E9EBEA00FEFEFE00FFFF FF00FFFFFF00FFFFFF00B2B2B2FFC2C2C200FFFFFF00BABABA00939594002F31 @@ -2268,13 +2300,108 @@ object Main: TMain 000000000000A16C38FFA15C38FF785838FF785C38FF00000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000 + 00000000000000000000000000000000000001010D0001011A0001011A000101 + 1A0001011A0A01011B6201011B9E01011B9E01011B6201011A0A01011A000101 + 1A0001011A0001010D000000000001011A0001011A0001011A0001011A000101 + 1A0001011A672C2C42CE676779F6626273F625253BCE01011A6701011A000101 + 1A0001011A0001011A0001011A00010118000101180001011800010118000101 + 1800010118B3464658F9565667FF4E4E5FFF3A3A4CF9010118B3010118000101 + 1800010118000101180001011800012657000126570001265700012657000127 + 5800000016D480A6CAFF99CCF6FF99CCF6FF80A6CAFF000016D4012758000126 + 5700012657000126570001265700024C9800024C9800024C9800024C9800024D + 99810E0E20EFA1D4FAFF98CBF5FF98CBF5FFA1D4FAFF0E0E20EF024D9981024C + 9800024C9800024C9800024C9800024C9700024C9700024C9700024C9700024C + 9783073E7AC498CBF5FF91C4F1FF91C4F1FF98CBF5FF073E7AC4024C9783024C + 9700024C9700024C9700024C9700024B9400024B9400024B9400024B9400024B + 9400024A929E7FB4E4F688BBEAFF88BBEAFF7FB4E4F6024A929E024B9400024B + 9400024B9400024B9400024B9400008FCF000093D3000188CA00015FA5000148 + 8F0001488F463574B1D480B3E3FF80B3E3FF3574B1D401488F4601488F00015F + A5000188CA000093D300008FCF00008FCF000093D300009CDC0000A2E20000A8 + E80000AAEA19014385C64A7DB0FF4A7DB0FF014385C600AAEA1900A8E80000A2 + E200009CDC000093D300008FCF00008FCF000093D300009CDC0000A2E20000A7 + E74B00A8E8B32170A2E67BAEE0FF7BAEE0FF216FA2E600A8E8B300A7E74B00A2 + E200009CDC000093D300008FCF00008FCF000093D300009CDC31009FDF97009F + DFC655D9F1FF35ACD1FF8DC0EDFF8DC0EDFF34ABD1FF54D9F1FF009FDFC6009F + DF97009CDC310093D300008FCF00008FCF000091D1530A9BD8CC23B1E3E44BD1 + F1FF54D9F1FF28B6DBFFAAAAAAFFAAAAAAFF27B5DBFF54D8F1FF4BD1F1FF24B1 + E3E40A9BD8CC0091D153008FCF000085C5000085C5BA36BDECFA3BC3EFFF41C9 + EEFF54D9F1FF28B0D5FFFCFCFCFFFCFCFCFF27B0D5FF54D8F1FF41C9EEFF3BC3 + EFFF37BDECFA0085C5BA0085C50000000000006AAACC37BEEFFF3AC2EEFF41C9 + EEFF54D9F1FF28AACFFFE8E8E8FDE8E8E8FD27AACFFF54D8F1FF41C9EEFF3AC2 + EEFF37BFEFFF006AAACC000000000000000000396385005696CC005D9DCC0067 + A7CC0071B1CC007ABACC2F2F2F652F2F2F650079B9CC0070B0CC0067A7CC005E + 9ECC005797CC0039638500000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00040404680404048B0404048B000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000404048D959595FF777777FFD6D6D6FFD6D6 + D6FFD4D4D4FFCBCBCBFFC2C2C2FFBFBFBFFFBEBEBEFFC1C1C1FFC9C9C9FFD4D4 + D4FFD6D6D6FFD6D6D6FF000000000404048F8F8F8FFF757575FFD3D3D3FFD0D0 + D0FFC1C1C1FFCAC1CEFFD8CEDBFFDDDDDDFFE1E3DFFFDEE0DDFFCCCCCBFFBBBB + BBFFCECECEFFD3D3D3FF00000000040404918D8D8DFF737373FFCECECEFFBDBD + BDFFCEBCDDFFDDBEECFFDDCAE3FFDDDADDFFE1E3DFFFE7EAE6FFEEEEEDFFD8D8 + D8FFB5B5B5FFCDCDCDFF00000000030303948A8A8AFF707070FFC1C1C1FFB8CA + D2FFC7D4FBFFD8BBF2FFDBBEE8FFDBD4DDFFE0E2DEFFEAEBE8FFF0F0F0FFF1F0 + F0FFC6C5C5FFBBBBBBFF0000000003030397868686FF6C6C6CFFB5B5B5FFBBE1 + E5FFB7EFF9FFB7DBF9FFDAC9F1FFF8F5F9FFF7F8F7FFE0E1E0FFD5D3D5FFD7D1 + D4FFCBC4C7FF969696FF000000000303039A838383FF696969FFAEAEAEFFCED4 + D4FFB9C8C9FFA4C5C9FFECF5F7FF9D9D9DFF9D9D9DFFF6F5F6FFD2C7CCFFD1C4 + CAFFCDC0C6FF797979FF000000000303039D7F7F7FFF656565FF9C9C9CFFC0BC + BBFFC1BCBCFFC2BEBDFFEFEFEEFFAFAFAFFFAFAFAFFFE5F1EBFFB5C1BBFFC4BF + C2FFC4BDC1FF7A7A7AFF00000000030303A07C7C7CFF626262FF878787FFBDB9 + B8FFCEC9C8FFD3CFCEFFE1E0E0FFEDEDEDFFEAE8EBFFBBBCD9FF4BDE9FFF57E4 + 9BFF7FC6A0FF7F7F7FFF00000000020202A4787878FF5E5E5EFF8E8E8EFFA3A1 + A1FFD8D6D6FFDDDCDCFFDDDDDDFFD2D5D0FFC4C2C4FFC29ED7FFB59ADCFF64CE + B3FF61A785FF8C8C8CFF00000000020202A8757575FF5B5B5BFF959595FF8787 + 87FFBBBBBBFFE1E1E1FFDCDDDBFFD1D4CFFFC7C8C6FFC5B0D0FFC699E2FFA28E + B9FF7F7F7FFF9B9B9BFF00000000020202AD737373FF595959FF969696FF9494 + 94FF868686FFA6A7A6FFCACCC9FFCFD2CDFFC7C9C6FFBAAFBDFF998CA1FF8080 + 80FF979797FF9C9C9CFF0101018B010101BA757575FF575757FF969696FF9797 + 97FF969696FF8D8D8DFF858585FF808080FF7F7F7FFF828282FF8B8B8BFF9898 + 98FF9B9B9BFF9B9B9BFF0101019901010197010101C6010101C6010101A50101 + 01A5010101A5010101A5010101A5010101A5010101A5010101A5010101A50101 + 01A5010101A5010101A50101017E000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF + FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFBB5500FFBB + 5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB5513FFBB5500FFBB5500FFBB + 5500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFBB5500FFBB + 5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB5584FFBB5500FEB14B00FDAB + 4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFBB5500FFBB + 5500FFBB5500FFBB5500FFBB5500FFBB55FFFFBB55FDFFBB554EFEB14B00FDAB + 4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FEB14B00FEB1 + 4B00FEB14B00FEB14B00FEB14B00FEB14BFFE5942ED9FEB14BF4FEAE4835FDAB + 4500FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FA952F00FA95 + 2F00FA952F00FA952F00FA952F00FA952FFFFB9D370EE48620C6FA952FE9F887 + 211AFFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00F77C1600F77C + 1600F77C1600F77C1600F77C1600F77C16FFF8831D00F8872107E27A14C9F77C + 16A2FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00EC862300EF89 + 2500F97B1500F97B1500F97B1500F97B15FFF97B1500F9831D00F97B1524EE7B + 15F1FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00E0943300E799 + 3700F2993500FF8F2800FF8F2800FF8F28FFFF8F2800FF973100FF922B0CFF8F + 28F4FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00E0943300E799 + 3700EE9E3B00F39F3B00FFA43D00FFA43DFFFFA53E00FFA84200FFA43DFFFF9B + 3420FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00E0943300E799 + 3700EE9E3B00EE9E3B00F3A13E00FCA843FFFCA84300FCA843FFFFA94320FF9B + 3400FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00E0943300E497 + 3540E79937CAE79937FCE79937FFE79937FCEA9B3900F8A64100FFA94300804E + 1A00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00CB812400CB81 + 24E7E8A745FFFAC25DFFEDB14EFFCB8124DBCB8124007C532100000000000000 + 0000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF002D1C0500AE68 + 0FF2E19A38FFDF9837FFB67117FF844F0D6C2D1C050000000000000000000000 + 0000FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF0000000020683B + 02879B5702F29A5702E561370285000000330000003100000023000000130000 + 0004FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00000000100000 + 001A0000001A0000001A0000001A0000001A00000019000000120000000A0000 + 0002FFFFFF00FFFFFF00FFFFFF00 } end object checkmobile: TTimer Enabled = False OnTimer = checkmobileTimer - OnStartTimer = checkmobileStartTimer top = 264 end object SimpleIPCServer1: TSimpleIPCServer @@ -3503,7 +3630,7 @@ object Main: TMain 0000 } Visible = True - OnDblClick = TrayIconDblClick + OnClick = TrayIconClick left = 368 top = 368 end @@ -4658,4 +4785,9 @@ object Main: TMain OnClick = itemTrayExitClick end end + object ApplicationProperties1: TApplicationProperties + OnMinimize = ApplicationProperties1Minimize + left = 564 + top = 220 + end end diff --git a/applications/cactusjukebox/source/mainform.lrs b/applications/cactusjukebox/source/mainform.lrs index 0477b3f1d..e69de29bb 100644 --- a/applications/cactusjukebox/source/mainform.lrs +++ b/applications/cactusjukebox/source/mainform.lrs @@ -1,4675 +0,0 @@ -{ This is an automatically generated lazarus resource file } - -LazarusResources.Add('TMain','FORMDATA',[ - 'TPF0'#5'TMain'#4'Main'#4'Left'#3#5#1#6'Height'#3#208#2#3'Top'#2'|'#5'Width'#3 - +'}'#3#13'ActiveControl'#7#6'Panel4'#7'Caption'#6#5'titel'#12'ClientHeight'#3 - +#189#2#11'ClientWidth'#3'}'#3#9'Icon.Data'#10'BB'#0#0'>B'#0#0#0#0#1#0#1#0'@@' - +#0#0#1#0' '#0'(B'#0#0#22#0#0#0'('#0#0#0'@'#0#0#0#128#0#0#0#1#0' '#0#0#0#0#0#0 - +'@'#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#173#236#234#1#172#238#232#3#171#236#231#5#170#238#232#11#170#234 - +#232#17#170#235#231#24#170#235#231#31#169#235#231''''#169#235#230'.'#169#234 - +#231'5'#169#234#231'9'#169#235#229'='#168#234#230'?'#168#234#230'A'#168#234 - +#230'A'#168#234#230'A'#169#234#230'>'#169#235#230'<'#169#234#230'7'#168#235 - +#231'1'#169#234#230''''#170#234#231#29#170#234#231#19#169#234#230#10#169#235 - +#231#6#169#234#231#4#171#236#231#3#172#235#232#2#174#235#230#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#169#238#234#4#170#236#232#10#170#235#232#20#169#235#230'!'#169 - +#235#231'/'#169#235#230'>'#169#234#230'K'#167#234#229'W'#167#233#229'b'#166 - +#232#228'l'#165#232#228'u'#165#232#228'}'#164#232#227#131#164#231#228#136#164 - +#231#227#141#163#231#227#144#163#231#227#145#163#230#227#145#163#231#226#145 - +#164#231#227#143#164#231#227#140#164#231#228#136#164#232#227#130#165#232#228 - +'|'#165#232#228't'#166#232#228'l'#166#233#229'a'#167#234#229'P'#167#233#230 - +'B'#168#234#230'6'#169#234#231'*'#169#235#230#30#171#236#232#19#170#236#232#9 - +#170#240#232#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#175 - +#238#233#4#170#238#232#16#171#235#231#31#168#235#231'0'#169#234#230'B'#167 - +#233#229'U'#166#233#229'e'#165#232#228'u'#165#231#227#132#164#231#227#146#163 - +#231#226#159#162#230#227#171#162#229#225#182#160#229#225#192#161#229#225#201 - +#159#229#224#208#159#228#224#213#159#228#224#217#158#228#224#220#159#228#224 - +#221#159#227#224#222#159#228#223#221#158#228#224#219#159#228#224#217#159#228 - +#224#213#159#229#224#207#160#229#225#200#161#229#225#190#162#230#225#180#162 - +#231#226#169#163#231#226#157#163#232#227#144#165#232#228#130#166#232#228'r' - +#166#233#229'c'#167#233#230'Q'#169#234#230'?'#169#234#231','#171#236#232#27 - +#170#237#232#13#175#236#238#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#237#233#9#171#236#231#27#169 - +#235#231'0'#168#234#230'E'#167#233#229'['#166#233#228'n'#164#232#228#131#163 - +#231#227#149#162#230#226#167#161#229#226#185#160#228#225#201#159#228#224#217 - +#158#227#223#230#158#227#223#238#157#227#223#244#156#227#223#247#156#227#223 - +#249#155#227#222#250#155#226#222#251#155#226#222#251#155#226#222#252#154#226 - +#222#252#154#226#222#252#154#226#222#252#155#226#222#252#155#226#222#251#155 - +#226#222#251#155#227#222#250#156#227#223#248#156#226#222#247#157#227#223#243 - +#158#227#223#237#158#227#223#227#159#228#224#214#161#228#225#198#161#230#226 - +#181#163#230#226#163#163#231#227#146#164#232#228#127#166#233#228'k'#167#234 - +#230'W'#168#235#230'A'#169#235#231','#171#236#232#24#171#236#231#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#173#237#232#9#170#236#232 - +#31#169#235#231'8'#168#234#230'O'#166#233#229'g'#165#232#228'~'#163#231#227 - +#149#162#230#226#170#161#229#225#191#159#229#225#212#158#228#224#231#158#227 - +#223#244#156#227#223#251#156#227#223#252#155#226#222#252#154#226#221#252#153 - +#225#221#253#153#225#221#253#152#225#220#253#152#224#220#253#151#224#220#253 - +#151#224#219#253#151#224#219#253#151#224#219#253#151#224#219#253#151#224#219 - +#253#151#224#219#253#151#224#219#253#151#224#220#253#152#224#220#253#152#225 - +#220#253#153#225#221#253#153#225#221#252#154#226#221#252#155#226#222#252#156 - +#227#222#252#156#227#222#250#158#227#223#242#158#228#224#227#159#229#225#207 - +#161#230#225#187#163#231#226#166#164#231#227#144#166#232#228'z'#167#233#229 - +'c'#168#234#230'K'#170#235#231'3'#170#236#233#27#172#238#231#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#172#238#233#5#170#236#231#25#170#235#231'6'#168#234#230'O'#166 - +#232#229'i'#165#232#227#130#163#231#226#155#162#230#226#180#160#229#225#203 - +#158#227#223#225#157#227#223#244#156#226#222#253#155#226#222#254#154#225#221 - +#253#153#225#220#253#151#224#219#252#151#223#219#253#150#223#219#253#149#222 - +#218#253#148#222#217#253#148#222#217#253#147#221#216#253#147#221#216#253#146 - +#221#216#253#146#221#216#253#146#221#216#253#146#221#216#253#146#221#216#253 - +#146#221#216#253#146#221#216#253#147#221#216#253#147#221#217#253#148#222#217 - +#253#148#222#217#253#149#222#218#253#150#223#219#253#151#224#219#253#152#224 - +#220#252#153#225#221#253#154#225#221#253#155#226#222#254#156#226#222#252#158 - +#227#223#240#158#228#223#221#160#229#225#199#161#229#226#176#163#231#227#150 - +#165#232#228'~'#167#233#228'd'#169#234#230'J'#170#235#231'1'#170#236#232#20 - +#168#238#234#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#170#236#233#12#170#236#232''''#168#234#230'D'#166#233#229 - +'_'#165#232#228'{'#163#231#227#151#161#230#226#177#160#229#224#204#158#228 - +#224#228#157#227#223#246#155#226#222#254#155#226#222#253#153#225#220#253#152 - +#224#220#252#150#223#219#253#149#223#218#253#148#222#217#253#146#221#217#253 - +#146#221#216#253#145#220#215#253#144#220#215#253#143#219#214#253#143#219#214 - +#253#142#219#214#253#142#218#213#253#141#218#213#253#141#218#213#253#141#218 - +#213#253#141#218#213#253#141#218#213#253#142#218#213#253#142#219#214#253#143 - +#219#214#253#143#219#214#253#144#220#215#253#145#220#216#253#146#221#216#253 - +#147#222#217#253#148#222#217#253#149#222#218#253#150#224#219#253#152#224#220 - +#253#153#225#221#253#154#226#222#254#156#226#222#253#157#227#223#244#159#228 - +#224#224#160#229#225#199#162#230#226#173#164#231#228#146#165#232#228'u'#167 - +#233#229'Z'#168#235#230'?'#170#235#232'"'#169#237#232#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#171#235#232#17#170#235#231'.'#167 - +#234#230'K'#166#233#229'i'#164#232#228#134#163#230#226#163#161#229#225#191 - +#159#229#224#219#157#227#223#242#156#226#222#253#154#226#221#253#153#225#221 - +#253#151#224#219#253#150#223#218#253#148#222#218#253#147#221#216#253#145#220 - +#216#253#144#220#215#253#143#219#214#253#142#218#213#253#141#218#213#253#140 - +#217#212#253#139#216#211#253#139#216#211#253#137#216#210#253#138#215#210#253 - +#137#215#211#253#136#216#210#253#136#216#210#253#136#216#210#253#137#215#211 - +#253#137#215#210#253#138#216#210#253#139#216#212#253#139#217#211#253#140#217 - +#212#253#141#218#213#253#143#218#213#253#144#219#214#253#145#220#215#253#146 - +#221#216#253#147#221#216#253#149#222#218#253#150#223#219#253#151#224#219#252 - +#153#225#221#253#155#226#222#254#156#226#222#252#158#227#223#239#159#229#225 - +#214#161#230#225#186#163#230#227#157#165#232#228#129#166#233#229'c'#168#234 - +#230'F'#170#235#232'('#170#236#231#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#172#237#230#15#170#234#232'-'#168#234#230'L'#166#233#229'j'#164#231 - +#228#136#163#230#226#167#160#229#225#196#159#228#224#226#157#227#223#248#155 - +#226#222#253#154#225#221#253#152#224#220#252#151#224#219#252#150#223#219#252 - +#148#222#217#252#146#221#216#253#144#219#215#253#143#219#214#253#141#218#212 - +#253#139#217#212#253#138#216#211#253#137#215#210#253#136#215#210#253#135#214 - +#209#253#134#214#208#253#133#213#208#253#133#213#208#253#133#213#207#253#132 - +#212#207#253#132#212#207#253#132#212#207#253#133#213#207#253#133#213#208#253 - +#134#213#208#253#134#214#208#253#135#214#209#253#136#215#210#253#138#215#210 - +#253#139#217#211#253#140#217#212#253#142#218#213#253#143#219#214#253#144#220 - +#215#253#146#220#216#253#148#221#217#253#149#222#218#253#151#223#219#253#153 - +#224#220#252#154#225#221#253#155#226#222#253#158#227#223#246#159#228#224#220 - +#160#229#225#191#163#230#226#162#164#232#228#131#166#234#229'e'#168#234#230 - +'F'#171#235#231'('#174#237#230#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#171#238#234 - +#8#170#235#232'&'#169#235#230'E'#167#233#229'd'#165#232#228#132#163#231#227 - +#163#160#229#225#194#159#228#224#225#157#227#223#250#155#226#222#253#153#225 - +#221#253#152#224#220#253#150#223#219#252#144#218#210#253#143#216#209#253#143 - +#217#211#253#142#218#212#252#142#218#213#252#141#218#215#252#141#219#216#252 - +#139#218#216#252#138#217#215#252#136#217#214#252#134#215#213#252#134#214#212 - +#252#132#215#211#252#131#213#211#252#129#211#205#252#128#210#205#253#127#210 - +#205#253#127#210#205#253#127#210#205#253#128#210#205#253#128#211#205#253#129 - +#211#206#253#130#212#206#253#131#212#207#253#133#213#208#253#134#214#208#253 - +#135#214#209#253#137#215#210#253#139#218#213#252#141#221#216#252#143#221#216 - +#252#144#222#217#252#146#222#217#252#147#221#217#253#148#222#217#253#150#223 - +#218#253#152#224#220#252#154#225#221#253#155#226#222#253#158#228#224#247#159 - +#228#224#219#161#229#225#188#163#232#227#157#165#232#228'~'#166#233#229'^' - +#170#235#231'?'#171#236#232' '#170#239#234#4#0#0#0#0#0#0#0#0#0#0#0#0#174#237 - ,#232#23#170#235#231'7'#167#233#229'W'#165#232#228'w'#163#231#227#151#161#229 - +#225#183#159#228#224#214#157#227#223#245#155#226#222#253#154#225#221#252#152 - +#224#220#253#150#223#219#252#131#203#181#253'I'#141'?'#254'E'#138'5'#255'F' - +#137'5'#255'E'#135'5'#255'E'#138'6'#255'E'#138'6'#255'E'#138'7'#255'F'#138'7' - +#255'G'#140':'#255'H'#140'<'#255'H'#140'>'#255'I'#142'@'#255'J'#144'C'#255'O' - +#147'O'#254'u'#199#185#253'{'#208#202#252'{'#207#201#253'z'#207#201#253'{' - +#207#201#253'{'#207#201#253'|'#208#202#253'}'#208#203#253'~'#209#203#253#128 - +#210#204#253#129#210#205#253#130#212#206#253#132#212#207#252#134#214#209#253 - +'z'#156#154#254'quu'#255's~~'#255'u'#132#131#254#131#179#176#253#145#219#215 - +#252#147#221#216#252#149#222#217#252#150#223#218#253#153#224#220#253#154#225 - +#221#252#156#226#222#253#158#228#224#240#160#229#225#208#161#230#225#177#164 - +#232#227#145#165#232#229'q'#167#233#229'Q'#170#235#231'2'#174#237#232#16#0#0 - +#0#0#0#0#0#0#172#238#230#4#170#235#231'"'#168#234#230'B'#166#233#228'b'#165 - +#231#228#131#162#231#227#164#160#229#225#196#158#228#224#229#157#227#223#251 - +#155#225#221#252#153#225#220#253#151#224#219#253#149#223#218#252'z'#191#163 - +#253'M'#164'@'#255'W'#195'N'#255'R'#180'N'#255'H'#161'C'#255'\'#195'T'#255'^' - +#194'U'#255'_'#194'V'#255'_'#193'T'#255'\'#191'Q'#255'Y'#190'N'#255'K'#169'?' - +#255'G'#163';'#255'S'#187'H'#255'J'#153'='#254'j'#185#162#253'x'#207#204#252 - +'w'#206#203#252'w'#206#202#252'w'#207#202#252'x'#207#203#252'y'#207#203#252 - +'{'#208#204#252'|'#209#205#252'~'#210#206#252#128#211#207#252#130#212#208#252 - +#132#215#211#252#127#186#183#253'rkr'#255#136#136#147#254#143#142#150#255#132 - +#130#140#255'svy'#255#137#201#197#253#140#207#203#253#145#216#212#253#150#224 - +#219#252#152#224#219#253#154#225#221#253#155#226#222#253#157#227#223#249#159 - +#228#224#222#160#229#225#190#163#231#227#158#165#232#228'}'#168#233#228'\' - +#169#234#231'='#170#236#231#26#0#0#0#0#0#0#0#0#170#238#237#7#170#235#230'(' - +#168#234#230'H'#166#232#228'h'#164#231#227#137#162#230#226#170#159#229#224 - +#202#158#227#223#235#157#227#223#252#154#225#221#253#153#224#220#253#151#224 - +#219#253#149#222#217#253'p'#181#145#254'O'#175'B'#255']'#198'c'#255'k'#184 - +#159#255't'#196#159#255'|'#209#164#255#130#215#169#255#134#219#170#255#136 - +#222#170#255#139#226#172#255#138#227#168#255#127#213#153#255'h'#192'{'#255'[' - +#204'T'#255'M'#164'@'#255'T'#155'h'#254'^'#171#134#253'^'#171#135#253'^'#171 - +#136#253'_'#173#138#253'`'#174#140#253'b'#175#142#253'd'#177#144#253'e'#178 - +#147#253'h'#180#150#253'i'#181#152#253'k'#183#155#253'n'#187#159#253'm'#160 - +#139#254'wq}'#255#141#141#152#255#152#152#159#255#139#138#150#255'ssx'#255'w' - +#134#141#254'x'#137#144#254'x'#147#152#254#141#201#198#253#152#225#220#252 - +#153#225#220#253#155#225#221#252#157#227#223#251#158#228#224#229#160#229#225 - +#196#163#230#226#164#165#232#227#131#167#233#228'b'#169#234#230'B'#171#235 - +#232' '#0#0#0#0#0#0#0#0#170#237#237#6#171#235#231''''#169#234#230'G'#166#232 - +#228'g'#164#232#227#136#162#230#227#169#160#228#225#201#158#227#223#234#157 - +#227#223#252#154#225#221#253#153#224#220#253#151#224#219#253#149#222#216#253 - +'h'#172#128#254'Q'#184'C'#255'e'#194#129#255'd'#169#207#255'/'#131#168#255'J' - +#149#203#255'E'#149#190#255'K'#156#195#255'\'#171#213#255'N'#162#190#255'f' - +#183#219#255't'#197#231#255#156#240#211#255'_'#203'Z'#255'N'#170'A'#254'G' - +#147'6'#255'M'#162'>'#255'M'#161'>'#255'M'#161'?'#255'M'#160'?'#255'L'#160'@' - +#255'L'#159'?'#255'K'#158'@'#255'L'#157'@'#255'L'#157'A'#255'L'#157'B'#255'L' - +#156'B'#255'L'#156'C'#255'N'#153'D'#255'k}j'#254'xr~'#255'{x'#129#255'uux' - +#255'yy~'#254#136#135#145#255#134#132#144#255'yu'#134#255's'#137#141#254#153 - +#230#224#252#153#225#220#253#155#225#221#252#157#227#223#251#158#228#224#228 - +#160#229#225#195#162#230#226#163#164#231#227#130#167#233#228'a'#169#234#230 - +'A'#171#236#232#31#0#0#0#0#0#0#0#0#181#233#233#1#171#236#232' '#169#234#230 - +'@'#166#233#228'`'#165#231#227#129#163#231#227#162#160#229#225#194#159#228 - +#224#227#157#227#223#251#155#225#221#252#153#225#220#253#152#224#219#253#148 - +#221#216#253'c'#168's'#254'S'#186'D'#255'i'#193#144#255'A'#144#176#255#25'm' - +#169#255'+x'#193#255#17'k'#153#255',|'#196#255#23'q'#162#255#31'x'#175#255'0' - +#135#203#255')'#130#180#255#145#228#206#255'e'#206'a'#255'P'#174'C'#255'O' - +#166'A'#255'^'#199'R'#255']'#198'S'#255'^'#199'S'#255'\'#197'Q'#255'\'#197'Q' - +#255'['#197'P'#255'Y'#196'O'#255'X'#195'M'#255'V'#195'M'#255'V'#195'M'#255'V' - +#195'L'#255'W'#195'M'#255'V'#195'L'#255'Y'#192'P'#255']'#182'U'#255'b'#132'c' - +#255'zx'#136#255#140#140#149#255#154#154#158#255#148#148#155#255#134#133#148 - +#254'mv~'#255#155#231#226#252#154#225#221#253#155#226#222#253#157#227#223#249 - +#159#228#224#220#161#229#225#188#164#231#227#156#166#232#228'{'#167#233#229 - +'Z'#169#235#231':'#172#236#232#23#0#0#0#0#0#0#0#0#0#0#0#0#171#237#233#16#169 - +#235#231'4'#169#233#230'S'#165#232#228's'#164#231#227#147#161#229#225#179#159 - +#228#224#210#158#228#224#241#156#226#222#253#154#225#221#253#152#224#220#252 - ,#149#222#216#253'_'#166'k'#254'V'#190'F'#255'l'#191#157#255'='#139#181#255',' - +'v'#195#255#18'j'#154#255'"u'#179#255'!v'#178#255#16'k'#153#255'.'#131#201 - +#255'#{'#182#255#21'q'#151#255#151#232#222#255'h'#206'e'#255'R'#175'E'#255'Q' - +#165'B'#255'a'#202'W'#255'a'#202'W'#255'^'#197'T'#255'6~1'#255'^'#199'T'#255 - +'^'#201'T'#255']'#201'S'#255'['#199'Q'#255'Y'#199'P'#255'X'#198'O'#255'X'#199 - +'O'#255'Q'#184'I'#255'S'#189'J'#255'X'#199'O'#255'W'#203'M'#255'\'#147'['#255 - +'|x'#141#255#141#141#151#255#154#154#158#255#149#149#155#255#134#133#147#254 - +'lr{'#255#156#232#227#252#154#225#221#253#156#226#222#253#158#228#224#236#160 - +#228#225#204#161#230#227#173#164#231#227#141#166#233#228'm'#169#234#229'M' - +#170#235#231'.'#169#236#233#13#0#0#0#0#0#0#0#0#0#0#0#0#173#233#228#4#171#235 - +#232' '#169#235#231'@'#166#233#229'_'#165#232#228'~'#163#231#227#158#161#229 - +#225#188#159#228#224#218#158#228#224#247#155#226#222#253#154#225#221#253#150 - +#222#217#253'^'#164'g'#254'Y'#191'H'#255'o'#191#164#255'L'#146#202#255#24'l' - +#166#255#22'm'#162#255'+y'#194#255#13'i'#148#255'+|'#193#255#24'Fk'#255#8''#170#235#231' '#172#239#231#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#0#0#0#0#0#0#0#172#237#232#5#170#236#231#30 - +#169#234#231':'#167#234#230'U'#165#232#229'p'#164#231#227#140#162#231#227#166 - +#160#229#225#192#158#227#221#217'c'#168'o'#247'Z'#190'K'#255'n'#194#147#255 - +'S'#154#201#255'$r'#185#255#13'i'#148#255'.{'#198#255#29's'#172#255#18'n'#157 - +#255','#131#201#255#13'Y'#127#255#15')7'#255#143#229#240#255'r'#215'o'#255'Q' - +#168'C'#255'"C'#26#255'b'#186'W'#255'n'#206'a'#255'p'#209'b'#255'P'#162'G' - +#255'N'#159'E'#255'm'#209'`'#255'n'#214'a'#255'j'#209']'#255'f'#207'['#255'a' - +#201'V'#255'_'#202'U'#255'P'#174'G'#255'\'#205'R'#255'W'#198'N'#255'X'#198'O' - +#255'X'#200'O'#255'M'#154'D'#255#137#206#187#254#156#228#224#254#157#228#224 - +#251#158#228#224#235#160#228#224#212#160#230#225#188#163#230#227#162#164#231 - +#227#135#166#233#229'k'#167#234#230'P'#169#234#231'5'#170#236#231#25#170#237 - +#232#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#0#0#0#0#170#237#233#13#170#236#231'('#168#234#231'D'#166#233#229 - +']'#165#232#227'v'#164#231#228#143#161#229#224#169'd'#166'p'#220'X'#186'I' - +#255'k'#199'}'#255'['#162#202#255#12'g'#147#255')v'#190#255'''w'#188#255#14 - +'j'#150#255'-'#127#198#255#28'w'#175#255#16'Rv'#255#14'!,'#255#141#227#232 - +#255'o'#212'm'#255'L'#156'='#255#24'/'#18#255'd'#184'X'#255'p'#207'c'#255'q' - +#209'd'#255'i'#196'\'#255'4w/'#255'm'#204'`'#255#11#22#10#255'%H '#255'I'#146 - +'A'#255'f'#208'['#255#21','#19#255'!F'#29#255' F'#28#255'\'#206'R'#255'W'#199 - +'N'#255'X'#200'O'#255'M'#156'C'#254#136#203#182#247#159#228#224#230#160#229 - ,#225#209#161#229#225#186#162#230#226#163#164#232#228#138#166#233#228'r'#167 - +#233#229'X'#169#234#231'?'#170#235#232'&'#172#237#233#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#171#234#230#11#170#235#231'#'#168#234#231'5'#165#233 - +#228'.'#162#230#225#18';x#`S'#175'E'#255'a'#193'b'#254'Y'#165#188#255'$s'#177 - +#255'-y'#195#255#20'l'#158#255'&y'#187#255'''{'#190#255#19'p'#161#255#9#30'-' - +#255#16'E\'#255#142#227#218#255'l'#212'i'#255'D'#141'6'#255#29'8'#24#255'k' - +#193'^'#255's'#207'e'#255'h'#187'['#255'm'#198'`'#255'u'#213'g'#255's'#212'e' - +#255'C~;'#255'>w7'#255#31'<'#27#255'd'#199'Y'#255'._*'#255'*X&'#255#9#18#7 - +#255'['#201'Q'#255'T'#192'L'#255'X'#199'O'#255'M'#158'A'#252#131#197#170#206 - +#162#230#226#173#163#231#227#152#165#231#227#131#166#233#228'm'#167#234#229 - +'V'#168#234#230'>'#171#235#232''''#170#238#232#17#162#241#236#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'?{+'#255'j'#178#182#255':'#131#200#255#24'm'#167 - +#255#24'n'#166#255'+{'#195#255#15'i'#153#255#29'n'#168#255#0#13#23#255#17'[}' - +#255'z'#184#170#255'A'#130'?'#255'''O'#30#255'*J#'#255'd'#178'X'#255'm'#191 - +'_'#255'%B!'#255'8c1'#255'x'#213'i'#255's'#208'e'#255'w'#218'h'#255'K'#138'A' - +#255'y)'#13'B'#132'0'#207'T'#182 - +'J'#255'k'#193#142#254'i'#176#208#255'9'#140#173#255'C'#143#203#255')'#127 - +#172#255'3'#137#178#255'K'#155#204#255'T'#144#156#255'^'#146#155#255'I'#129 - +'U'#255'-b'''#255'6g)'#255'e'#175'X'#255'j'#183'\'#255'p'#194'b'#255'9c2'#255 - +#25','#22#255'q'#198'c'#255'w'#211'h'#255't'#208'f'#255'f'#187'Y'#255'0Z*' - +#255'j'#202'^'#255'h'#205'\'#255'n'#221'a'#255#19'('#17#255'O'#170'F'#255'Y' - +#199'P'#255'X'#200'O'#255'L'#161'>'#250'a'#160'ir'#170#237#233''''#171#235 - +#232#25#172#235#233#14#169#238#231#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'#147'7'#255']'#198'W'#255'l'#197#134#255'z' - +#203#185#255#128#203#211#255#129#203#217#255#138#214#221#255#140#220#207#255 - +#131#212#177#255'r'#209'~'#255']'#200'V'#255'J'#157':'#255'_'#172'N'#255'~' - +#216'o'#255'}'#213'm'#255'|'#210'm'#255'm'#184'_'#255'3V,'#255'a'#167'U'#255 - +'{'#214'k'#255'w'#210'h'#255'W'#157'M'#255'*M$'#255'l'#204'_'#255'k'#205'^' - +#255'j'#211'^'#255#7#14#6#255'T'#177'K'#255']'#202'S'#255'X'#200'O'#255'L' - +#163'?'#252'B'#127'1V'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@}*'#6'A'#130'/'#252'G'#146'7'#255 - +'G'#154'>'#255'M'#165'G'#255'f'#207'^'#255'g'#205'_'#255'f'#205'^'#255'b'#201 - +'Z'#255'?'#141';'#255'['#198'R'#255'N'#169'A'#255'L'#146':'#255'}'#212'm'#255 - +#127#213'o'#255#128#213'o'#255#129#214'q'#255#131#217'r'#255'_'#158'R'#255'B' - +'p9'#255#127#218'o'#255'}'#218'm'#255' 8'#28#255'L'#137'C'#255'q'#209'd'#255 - +'n'#210'b'#255'k'#208'^'#255#5#8#3#255'g'#215'\'#255']'#200'S'#255'Y'#199'P' - +#255'M'#165'@'#254'?},Y'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'C'#135'1'#248'P'#174'D' - +#255'G'#147'6'#255'F'#142'4'#255'K'#155';'#255'Q'#168'B'#255'S'#175'F'#255'R' - +#175'E'#255'O'#169'B'#255'H'#147'7'#255'Q'#151'>'#255'x'#204'g'#255#127#213 - +'o'#255#129#214'q'#255#130#213'q'#255'u'#197'g'#255#136#222'v'#255'6Y/'#255 - +'T'#140'J'#255#130#218'q'#255#127#217'o'#255#27'/'#24#255'^'#170'S'#255'\' - +#168'Q'#255'2],'#255#25'1'#23#255#19'&'#16#255'S'#172'K'#255'_'#203'U'#255'Z' - +#200'Q'#255'L'#165'?'#255'?|,\'#0#0#0#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'?},'#26'D'#137'1'#249'Z' - +#201'Q'#255'^'#204'U'#255'^'#192'Q'#255'Y'#177'J'#255'T'#164'C'#255'S'#158'A' - +#255'S'#158'B'#255'['#167'I'#255'j'#188'Z'#255'}'#213'm'#255#128#214'p'#255 - +#130#214'q'#255#133#216't'#255'|'#203'l'#255'K'#143'B'#255'x'#191'h'#255#28 - ,'-'#24#255#135#220'u'#255't'#197'e'#255'w'#203'h'#255'o'#190'a'#255'@p8'#255 - +'9e2'#255'H'#133'?'#255'j'#202']'#255'p'#219'c'#255'Y'#180'N'#255'_'#201'U' - +#255'M'#167'E'#255'8y.'#254'+U'#30#137#0#0#0'k'#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@~,#D'#137'2'#250 - +'['#201'Q'#255'_'#202'U'#255'^'#194'S'#255']'#188'S'#255'n'#210'a'#255'r'#211 - +'e'#255'v'#213'h'#255'z'#213'k'#255'}'#213'm'#255#127#213'o'#255#130#214'r' - +#255#133#215's'#255#135#215'u'#255#138#218'x'#255#139#218'x'#255'u'#184'e' - +#255'LyB'#255#139#222'x'#255'k'#183']'#255'k'#187'^'#255#128#216'o'#255'~' - +#218'n'#255'z'#218'k'#255'u'#215'g'#255'p'#211'c'#255'i'#205']'#255'f'#205'Z' - +#255'c'#207'X'#255'?'#135'8'#255'!F'#27#253#20'('#14#193#0#0#0#161#0#0#0'/'#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'@~,&D'#137'2'#251'\'#203'S'#255'a'#203'V'#255'Q'#171'H'#255'_'#189'T'#255 - +'m'#207'`'#255'q'#208'd'#255't'#209'g'#255'y'#210'j'#255'}'#212'm'#255'~'#211 - +'n'#255#131#212'q'#255#135#216'u'#255#138#217'x'#255#140#217'z'#255#141#219 - +'z'#255#140#218'z'#255'v'#183'f'#255#136#214'u'#255#135#216'u'#255#128#211'o' - +#255#127#213'o'#255'{'#211'k'#255'w'#210'i'#255'j'#195']'#255'Q'#163'H'#255 - +'j'#204']'#255'f'#204'['#255'b'#202'W'#255'\'#197'R'#255'&R '#255'&M'#27'y'#0 - +#0#0#186#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#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'@~,*D'#138'2'#251']'#204'T'#255'a'#201'V'#255'c'#201'X' - +#255'i'#205'\'#255'n'#206'a'#255'r'#208'd'#255'v'#210'h'#255'{'#211'k'#255 - +#127#213'o'#255#128#211'o'#255'V'#158'L'#255#140#220'z'#255#140#218'z'#255 - +#143#218'|'#255#144#219'}'#255#144#219'}'#255#141#218'z'#255#139#217'y'#255 - +#136#216'v'#255#133#215's'#255#129#213'p'#255'}'#212'm'#255'x'#211'j'#255'r' - +#206'd'#255'c'#189'X'#255'j'#204'^'#255'g'#204'['#255'c'#202'X'#255'_'#203'U' - +#255'9{1'#255'8o''\'#0#0#0';'#0#0#0'('#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@~,-D'#138'2'#252'^'#204'U'#255'a' - +#202'W'#255'f'#204'Z'#255'j'#205'^'#255'o'#207'a'#255's'#209'e'#255'w'#210'h' - +#255'|'#211'l'#255#128#213'p'#255#132#215's'#255#137#218'w'#255#140#218'y' - +#255#143#219'{'#255#145#219'~'#255#148#221#128#255#147#220#127#255#144#219'}' - +#255#141#218'z'#255#138#217'w'#255#134#216'u'#255#130#214'q'#255'~'#212'm' - +#255'y'#211'j'#255'u'#209'g'#255'q'#208'c'#255'l'#206'`'#255'h'#204'\'#255'c' - +#203'X'#255'`'#203'V'#255'<'#129'3'#255'&J'#26'W'#0#0#0#30#0#0#0'\'#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@~,*D' - +#138'2'#251'^'#205'U'#255'b'#202'W'#255'f'#204'['#255'k'#205']'#255'p'#208'j' - +#255'v'#210't'#255'z'#212'w'#255'}'#213'z'#255#130#215'}'#255#133#216#129#255 - +#137#217#132#255#141#219#135#255#144#220#139#255#147#221#140#255#148#222#143 - +#255#148#222#142#255#145#221#140#255#143#219#137#255#139#218#133#255#136#217 - +#130#255#132#216#127#255#128#214'{'#255'{'#212'u'#255'w'#210'n'#255'q'#208'e' - +#255'm'#206'^'#255'h'#204'\'#255'd'#203'Y'#255'`'#205'V'#255'4p,'#252'(P'#27 - +'P'#0#0#0'0'#0#0#0'U'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0'@~,$D'#137'2'#250'^'#203'T'#255'b'#204'X'#255'h'#205 - +'['#255'o'#208't'#255#131#221#189#255#138#225#209#255#138#226#210#255#139#226 - +#210#255#139#226#210#255#140#226#211#255#140#226#212#255#141#226#214#255#140 - +#226#214#255#140#225#214#255#140#225#215#255#139#225#215#255#138#224#213#255 - +#136#224#210#255#135#223#208#255#134#222#205#255#132#221#202#255#131#220#199 - +#255#129#220#193#255#128#218#183#255#127#217#171#255't'#211#130#255'h'#204'Z' - +#255'd'#203'Y'#255'b'#206'W'#255'#K'#29#249'D'#134'/C'#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#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'D'#137'2'#250'^'#203'T'#255'Z'#188'P'#255'Z'#182'P'#255'z'#217#163 - +#255#153#237#248#255#159#241#251#255#156#239#248#255#154#238#246#255#152#236 - ,#244#255#149#235#243#255#147#233#240#255#144#232#238#255#142#230#236#255#141 - +#231#235#255#139#232#236#255#137#232#235#255#134#230#233#255#131#227#230#255 - +#127#223#225#255'|'#220#222#255'{'#219#220#255'y'#219#220#255'x'#218#220#255 - +'v'#216#218#255'v'#216#220#255#133#223#220#255'j'#206'`'#255'd'#203'X'#255'b' - +#207'X'#255#30'>'#23#244'&M'#27#127#0#0#0#188#0#0#0'E'#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'?},'#22'D'#136'1' - +#249'^'#202'T'#255'I'#159'A'#255'b'#195'X'#255'{'#217#166#255#160#241#252#255 - +#161#243#250#255#159#241#248#255#156#239#246#255#153#237#243#255#151#236#242 - +#255#148#234#239#255#145#233#236#255#144#234#238#255'~'#207#210#255'i'#175 - +#177#255'^'#160#161#255']'#160#160#255'd'#173#174#255'u'#206#205#255'|'#221 - +#221#255'x'#218#217#255'k'#197#195#255'f'#191#188#255'q'#213#210#255'l'#210 - +#205#255'~'#220#226#255'r'#211#129#255'd'#203'V'#255'a'#205'W'#255'0e'''#251 - +#5#10#3#186#0#0#0','#0#0#0#31#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0';u('#5'D'#135'1'#246'\'#196'Q'#255'b'#203'W' - +#255'g'#204'Z'#255'w'#214#153#255#159#241#251#255#161#242#250#255#159#241#248 - +#255#156#239#246#255#153#237#243#255#151#236#242#255#148#234#239#255#144#230 - +#234#255'n'#179#181#255'Z'#148#150#255'X'#146#148#255'V'#146#147#255'U'#145 - +#145#255'R'#143#144#255'P'#141#140#255'b'#177#176#255'x'#218#216#255'S'#153 - +#151#255'h'#195#193#255'p'#213#210#255'm'#211#206#255'u'#215#217#255'y'#215 - +#159#255'b'#200'S'#255'^'#199'T'#255'J'#152':'#238'?}+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#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'B'#134'1'#244'Z'#192'N'#255'b'#203'W'#255'f'#204'Z'#255't'#211#141 - +#255#154#238#244#255#161#243#250#255#159#241#248#255#156#239#246#255#153#237 - +#243#255#151#236#242#255#148#234#239#255'o'#179#182#255'Y'#144#146#255'Z'#148 - +#150#255'X'#146#148#255'V'#146#147#255'U'#145#145#255'R'#143#144#255'Q'#143 - +#142#255'M'#137#137#255'W'#159#158#255'T'#155#155#255'q'#211#209#255'p'#212 - +#209#255'm'#211#206#255'q'#213#212#255'~'#218#176#255'U'#178'G'#255'@'#146';' - +#255'J'#150'8'#231'>z*.'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'B'#133'0'#227'X'#187'L' - +#255'b'#203'W'#255'f'#204'Z'#255'q'#209#127#255#149#233#235#255#162#243#251 - +#255#159#241#248#255#156#239#246#255#153#237#243#255#152#239#244#255'~'#200 - +#205#255'Z'#145#147#255'\'#149#151#255'Z'#148#150#255'X'#146#148#255'V'#146 - +#147#255'U'#145#145#255'R'#143#144#255'Q'#143#142#255'O'#142#142#255'E}|'#255 - +']'#173#171#255's'#214#212#255'p'#212#209#255'm'#211#207#255'n'#212#210#255 - +#127#219#185#255'c'#205'S'#255'^'#200'S'#255'E'#140'3'#225'>{*%'#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0'B'#132'/'#194'U'#181'I'#255'`'#201'V'#254'd'#203'Y'#255'm' - +#207'p'#255#142#228#225#255#162#243#251#255#159#241#248#255#156#239#246#255 - +#154#238#245#255#150#235#240#255'g'#163#167#255']'#149#152#255'\'#149#151#255 - +'Z'#148#150#255'X'#147#149#255'U'#144#145#255'T'#144#144#255'R'#144#145#255 - +'Q'#143#142#255'N'#139#139#255'Bwv'#255'['#167#166#255'r'#212#210#255'p'#212 - +#209#255'm'#211#207#255'm'#211#208#255#129#220#190#255'a'#202'Q'#255'_'#204 - +'U'#255'B'#133'/'#218'?|+'#27#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'A'#131'.'#152'S'#175 - +'E'#255'P'#174'H'#255'A'#144';'#255'k'#209'`'#255#134#224#214#255#163#243#251 - +#255#159#241#248#255#157#240#247#255#146#226#231#255#143#224#229#255'd'#157 - +#160#255']'#149#152#255'\'#149#151#255'Z'#148#150#255'U'#141#143#255'K'#128 - +#129#255'J'#128#128#255'R'#141#142#255'Q'#144#143#255'F{{'#255'H'#131#130#255 - +'T'#154#152#255'q'#210#208#255'p'#212#209#255'm'#211#207#255'm'#211#208#255 - +#127#220#189#255'`'#201'Q'#255']'#201'T'#255'@'#128'.'#211'?}+'#18#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0'A'#130'.oO'#165'@'#255'_'#202'U'#255'_'#195'T'#255'f'#203 - +'U'#255#128#219#193#255#159#241#249#255#156#237#243#255#154#237#243#255#139 - +#216#222#255#140#220#225#255'c'#156#159#255']'#149#152#255'\'#149#151#255'Z' - +#148#150#255'Q'#135#137#255'J}~'#255'H|}'#255'N'#135#136#255'O'#139#139#255 - +'Dzy'#255'N'#141#140#255'Q'#148#147#255'p'#209#207#255'p'#212#209#255'm'#211 - +#207#255'n'#211#209#255#127#219#186#255'_'#202'P'#255'['#195'P'#255'@'#127'-' - +#204'>{+'#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'A'#129'.FK'#157'<'#255'^'#200'T'#255 - +'b'#203'W'#255'e'#203'V'#255'x'#214#161#255#153#237#247#255#156#236#243#255 - +#148#227#233#255#148#230#236#255#137#215#220#255'd'#158#161#255']'#149#152 - +#255'\'#149#151#255'Z'#148#150#255'V'#143#144#255'L'#128#129#255'K'#129#129 - +#255'R'#142#143#255'P'#141#141#255'N'#140#140#255'M'#140#139#255'T'#154#153 - +#255'q'#210#208#255'p'#212#209#255'm'#211#207#255'p'#212#211#255'|'#218#177 - +#255'_'#201'P'#255'W'#189'M'#255'A'#127'-'#197#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0'@'#129'.'#21'H'#149'8'#252'['#197'Q'#255'`'#202'U'#255'd'#202'V'#255 - +'p'#210#127#255#147#233#243#255#161#243#250#255#142#217#224#255#153#237#243 - +#255#140#221#226#255'j'#167#170#255']'#149#152#255'\'#149#151#255'Z'#148#150 - +#255'X'#147#149#255'V'#146#147#255'U'#146#146#255'R'#143#144#255'Q'#143#142 - +#255'O'#141#141#255'M'#140#139#255']'#171#169#255'r'#213#211#255'p'#212#209 - +#255'm'#211#206#255't'#214#215#255'x'#215#163#255'^'#201'P'#255'U'#183'I'#255 - +'@'#127'-'#188#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@~,'#6'E'#141'3'#211'Y' - +#192'N'#255'a'#203'U'#255'd'#205'X'#255'g'#204'\'#255#141#228#238#255#161#243 - +#251#255#141#216#222#255#154#238#244#255#142#223#228#255#130#206#211#255'[' - +#146#149#255'\'#149#151#255'Z'#148#150#255'X'#146#148#255'V'#146#147#255'U' - +#145#145#255'R'#143#144#255'Q'#143#142#255'O'#141#141#255'N'#142#140#255'k' - +#198#195#255's'#214#212#255'p'#212#209#255'l'#210#206#255'x'#216#219#255's' - +#213#147#255']'#201'O'#255'R'#177'F'#255'@'#127','#172#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0'@'#127','#4'A'#130'/'#163'V'#188'K'#255'O'#173'F'#255'P'#169 - +'G'#255'd'#203'R'#255#133#223#209#255#157#239#249#255#152#233#240#255#141#219 - +#225#255#145#227#232#255#141#224#229#255'w'#191#195#255'Y'#144#146#255'Z'#147 - +#149#255'X'#146#148#255'V'#146#147#255'U'#145#145#255'R'#143#144#255'Q'#142 - +#141#255'L'#136#135#255'd'#181#180#255'v'#217#214#255's'#214#212#255'p'#212 - +#209#255'l'#210#206#255'~'#219#226#255'k'#208'y'#255'['#202'P'#254'O'#169'A' - +#255'?},'#144#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'?},jO'#170'B'#255'R' - +#182'I'#254'^'#198'T'#255'b'#202'T'#255'z'#216#167#255#154#237#249#255#157 - +#240#247#255#141#219#224#255#148#232#237#255#135#214#219#255#138#221#225#255 - +'x'#195#198#255'Z'#148#150#255'W'#145#147#255'U'#145#146#255'T'#144#144#255 - +'Q'#142#143#255'S'#145#145#255'l'#193#192#255'x'#217#216#255'v'#216#213#255 - +'s'#214#212#255'p'#212#209#255'k'#210#205#255#134#223#233#255'a'#203']'#255 - +'['#203'Q'#255'J'#156';'#255'?},h'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'?|+7F'#145'5'#237'Z'#202'R'#255'^'#201'S'#255'`'#202'T'#255'n'#209'}'#255 - +#150#234#248#255#156#239#246#255#152#236#242#255#138#217#222#255#147#233#237 - +#255#134#214#218#255#135#218#221#255#135#221#224#255'r'#191#193#255'g'#175 - +#176#255'f'#175#175#255'm'#189#190#255'{'#216#216#255'{'#220#220#255'x'#217 - +#216#255'u'#216#213#255's'#214#212#255'p'#212#209#255'o'#212#209#255#132#222 - +#219#255'R'#184'B'#254'I'#167'B'#255'D'#138'3'#252'@~,0'#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'@'#127'-'#198'T'#186'I'#255'\'#201'S'#254'_' - +#200'T'#255'd'#203'^'#255#138#227#222#255#155#238#246#255#154#238#244#255#147 - +#231#237#255#135#214#218#255#142#228#232#255#139#224#228#255#139#228#231#255 - +#138#230#233#255#136#230#232#255#133#228#229#255#130#225#226#255'~'#222#221 - +#255'{'#219#219#255'x'#217#216#255'u'#216#213#255's'#214#212#255'o'#212#208 - +#255'x'#216#221#255't'#213#162#255'V'#195'J'#254'I'#164'@'#255'A'#132'0'#228 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@'#127'-oH'#151 - +'8'#255'Y'#199'P'#255'D'#153'>'#254'`'#201'V'#255'r'#212#146#255#146#231#240 - +#255#152#236#244#255#151#237#243#255#149#235#239#255#138#221#224#255#144#233 - +#236#255#140#229#232#255#136#227#230#255#133#226#227#255#131#224#225#255#128 - +#222#223#255'}'#221#220#255'z'#218#218#255'w'#217#215#255't'#215#213#255't' - +#215#214#255'w'#216#219#255#130#221#222#255'b'#204'h'#255'X'#199'N'#255'N' - +#167'@'#255'A'#130'.'#131#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'=y)'#5'B'#133'0'#220'R'#179'F'#255'L'#172'E'#254']'#200'S'#255'a' - +#202'Y'#255'r'#211#145#255#135#225#213#255#144#230#243#255#144#231#244#255 - +#144#231#242#255#142#230#240#255#140#228#237#255#138#228#237#255#136#226#235 - +#255#135#225#233#255#133#225#233#255#132#224#232#255#132#223#233#255#133#224 - +#234#255#134#224#235#255#129#221#217#255'z'#217#187#255'j'#207#127#255'Y'#199 - +'O'#255'V'#195'M'#255'G'#146'6'#248'@'#128'- '#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'A'#129'.DG'#147'7'#255'W'#195'N'#255 - +'['#200'Q'#255'^'#200'S'#255'a'#202'W'#255'e'#204'a'#255'j'#206'j'#255'p'#209 - +#128#255'v'#215#147#255'x'#214#155#255'z'#216#165#255'{'#216#168#255'{'#216 - +#169#255'z'#216#169#255'y'#215#163#255'w'#214#157#255's'#212#144#255'n'#209 - +#128#255'g'#205'l'#255'c'#203'`'#255'`'#204'Z'#255'Z'#199'Q'#255'X'#199'O' - +#254'Q'#178'E'#255'A'#129'.'#160'@'#127'-'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@'#127'-'#2'@'#127'-'#145'K'#159'<'#254 - +'Y'#199'P'#255'['#200'Q'#255'^'#200'T'#254'`'#201'V'#255'b'#202'W'#255'`'#197 - +'U'#255'F'#151'?'#255'h'#207'['#255'g'#204'Z'#255'g'#204'Z'#255'g'#204'Z'#255 - +'f'#203'Z'#255'f'#203'Y'#255'e'#203'X'#255'b'#202'V'#255'`'#199'U'#255'`'#202 - +'U'#255'T'#185'L'#255'D'#157'>'#254'Y'#201'P'#254'X'#199'O'#255'E'#143'4'#240 - +'?}+?'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0'@'#127','#15'?~-'#176'J'#155':'#252'V'#190'K'#255'Z'#198'Q' - +#255'^'#201'T'#255'b'#206'W'#254'<'#136'6'#255'['#189'Q'#255'd'#203'Y'#255'd' - +#203'Y'#255'd'#203'Y'#255'a'#198'V'#255'd'#202'X'#255'c'#202'X'#255'b'#204'W' - +#255'T'#180'K'#255'@'#146':'#255'^'#204'T'#255'Z'#199'Q'#255'D'#158'='#255'V' - +#196'N'#255'K'#160'='#255'@'#127'-'#164#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'@'#127','#12 - +'@'#127'-'#135'E'#140'3'#224'M'#164'?'#255'U'#182'H'#255'['#197'Q'#255'b'#209 - +'W'#255'a'#204'V'#254'`'#201'V'#255'a'#202'W'#255'a'#202'V'#255'N'#168'F'#255 - +'X'#186'N'#255'`'#202'V'#255'_'#202'T'#255'Z'#194'P'#255']'#202'S'#255'Y'#200 - +'P'#254'Y'#202'P'#255'V'#192'K'#255'J'#157';'#255'A'#129'.'#177'@'#127','#21 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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@~,{D'#138'2'#210'I'#151'8'#255 - +'O'#168'A'#255'W'#186'K'#255']'#200'S'#255'_'#205'U'#255'_'#204'V'#254'X'#191 - +'O'#255'X'#193'O'#255']'#202'T'#255'\'#202'S'#255'['#202'R'#254'Y'#202'Q'#255 - +'V'#192'L'#255'M'#167'@'#255'E'#144'5'#248'A'#128'-'#130'@~,'#19#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'?|+'#23'@'#128'-GB'#132 - +'/'#160'D'#137'2'#237'F'#143'4'#255'K'#155';'#255'P'#169'B'#255'S'#178'G'#255 - +'T'#183'I'#255'T'#184'H'#255'R'#179'F'#255'N'#169'A'#255'H'#152'8'#255'D'#139 - +'2'#254'B'#132'/'#171'@'#127'-4?|+'#5#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'A'#129'.'#4'A'#129 - +'.'#255'~\2'#255#131#12#0#0#255#255#0#0#183#162#133#255#172#131'T'#255 - +#175#133'W'#255#178#137'\'#255#180#140'^'#255#175#146's'#255#255#255#255#255 - +#213#200#186#255#172#131'T'#255#168'~O'#255#163'xI'#255#158'sC'#255#157'rC' - +#255'|Z1'#255#0#0#0#0#243#165#16#0#188#167#140#255#175#135'Y'#255#178#137'[' - +#255#182#142'a'#255#172#145'r'#255#186#168#148#255#255#255#255#255#212#199 - +#184#255#177#136'Z'#255#171#130'S'#255#165'{L'#255#160'uE'#255#157'rC'#255 - +#127']2'#255#255#255#0#0#0#0#0#0#167#141'k'#255#190#157'x'#255#181#140'_'#255 - +#189#151'm'#255#188#151'q'#255#188#163#138#255#190#170#148#255#180#148'n'#255 - +#181#142'c'#255#176#136']'#255#171#132'V'#255#161'xH'#255#153'o@'#255#130'`5' - +#255#0#16#165#0#255#255#0#0#0#0#0#0#201#178#150#255#185#146'g'#255#192#156't' - +#255#197#161'y'#255#198#162'z'#255#191#161#127#255#221#203#182#255#189#154't' - +#255#180#142'e'#255#175#137'^'#255#166'~Q'#255#147'k<'#255#255#255#0#0#255 - +#255#0#0#0#0#0#0#255#239#0#0#178#155'}'#255#195#164#130#255#192#158'v'#255 - +#195#161'z'#255#196#161'{'#255#197#181#166#255#255#255#255#255#211#194#174 - +#255#182#146'j'#255#178#141'd'#255#165'~Q'#255#133'c6'#255#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#255#255#0#0#0#0#0#184#162#133#255#198#167#134#255#194#161'{'#255#194 - +#161'|'#255#185#158#130#255#198#184#169#255#185#156'|'#255#184#149'o'#255#177 - +#141'f'#255#138'h:'#255#255#255#0#0#255#255#0#0#0#0#0#0#224'h'#0#0#0#0#240#0 - +'3'#0#0#0#0#255#0#0#173#149'u'#255#201#178#151#255#200#172#140#255#189#156'w' - +#255#186#152'r'#255#189#157'z'#255#177#144'l'#255#147'tJ'#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#255#255#0#0#0#255#255#0#0#0#0#0#228#253#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#158#131'_'#255#187#167#140#255#181#159#130#255#149'xQ'#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#216#211#228#0'8'#204#164#0'8'#204#164#0'8' - +#204#164#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#255#255#0#0#0#0#0#0#9'NumGlyphs'#2#0#7'OnClick'#7#14'Trac' - +'kinfoClick'#14'ParentShowHint'#8#0#0#5'TEdit'#18'current_title_edit'#4'Left' - +#2#12#6'Height'#2#24#3'Top'#2'f'#5'Width'#3#200#0#5'Color'#7#9'clBtnFace'#8 - +'ReadOnly'#9#8'TabOrder'#2#0#0#0#5'TEdit'#19'current_title_edit1'#4'Left'#2 - +#12#6'Height'#2#24#3'Top'#3#134#0#5'Width'#3#200#0#5'Color'#7#9'clBtnFace'#8 - +'ReadOnly'#9#8'TabOrder'#2#1#0#0#9'TCheckBox'#11'randomcheck'#4'Left'#3#135#0 - +#6'Height'#2#23#3'Top'#3#250#0#5'Width'#2'I'#7'Caption'#6#6'Random'#8'OnChan' - +'ge'#7#17'randomcheckChange'#8'TabOrder'#2#3#0#0#12'TProgressBar'#9'Volumeba' - +'r'#4'Left'#3#176#0#6'Height'#2'M'#3'Top'#3#171#0#5'Width'#2#12#9'OnMouseUp' - +#7#16'VolumebarMouseUp'#11'Orientation'#7#10'pbVertical'#8'Position'#2'd'#6 - +'Smooth'#9#8'TabOrder'#2#2#0#0#6'TPanel'#11'pnlPlaytime'#4'Left'#2'M'#6'Heig' - +'ht'#2#18#3'Top'#2'8'#5'Width'#2'I'#10'BevelOuter'#7#6'bvNone'#11'BorderWidt' - +'h'#2#1#11'BorderStyle'#7#8'bsSingle'#7'Caption'#6#5'00:00'#8'TabOrder'#2#4#7 - +'OnClick'#7#16'pnlPlaytimeClick'#0#0#9'TTrackBar'#8'trackbar'#4'Left'#2#17#6 - +'Height'#2#25#3'Top'#2'K'#5'Width'#3#190#0#3'Max'#2'd'#8'Position'#2#0#9'Tic' - +'kStyle'#7#6'tsNone'#11'OnMouseDown'#7#17'trackbarMouseDown'#9'OnMouseUp'#7 - +#15'trackbarMouseUp'#8'TabOrder'#2#5#0#0#0#9'TListView'#8'Playlist'#4'Left'#3 - +#237#0#6'Height'#3']'#1#3'Top'#2'K'#5'Width'#3'\'#1#5'Align'#7#8'alCustom'#7 - +'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#11'BorderWidth'#2#1 - +#7'Columns'#14#1#8'AutoSize'#9#7'Caption'#6#8'Playlist'#5'Width'#3'H'#1#0#0#9 - +'ItemIndex'#2#255#9'PopupMenu'#7#12'playlistmenu'#8'ReadOnly'#9#9'RowSelect' - +#9#11'SmallImages'#7#10'ImageList1'#8'TabOrder'#2#1#8'ToolTips'#8#9'ViewStyl' - +'e'#7#8'vsReport'#10'OnDblClick'#7#16'PlaylistDblClick'#10'OnDragDrop'#7#16 - +'PlaylistDragDrop'#10'OnDragOver'#7#16'PlaylistDragOver'#9'OnEndDrag'#7#15'P' - +'laylistEndDrag'#9'OnKeyDown'#7#15'PlaylistKeyDown'#7'OnKeyUp'#7#13'Playlist' - +'KeyUp'#11'OnMouseDown'#7#17'PlaylistMouseDown'#12'OnSelectItem'#7#18'playli' - +'stSelectItem'#11'OnStartDrag'#7#17'PlaylistStartDrag'#0#0#6'TPanel'#6'Panel' - +'2'#4'Left'#2#4#6'Height'#2'2'#3'Top'#2#11#5'Width'#3#208#1#12'ClientHeight' - +#2'2'#11'ClientWidth'#3#208#1#9'PopupMenu'#7#10'SearchMenu'#8'TabOrder'#2#2#0 - +#9'TComboBox'#11'filetypebox'#4'Left'#3'h'#1#6'Height'#2#24#3'Top'#2#14#5'Wi' - +'dth'#2'Z'#10'ItemHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'all t' - +'ypes'#6#4'flac'#6#3'mp3'#6#3'ogg'#6#3'wav'#6#3'wma'#0#8'OnChange'#7#17'file' - +'typeboxChange'#9'PopupMenu'#7#10'SearchMenu'#5'Style'#7#14'csDropDownList'#8 - +'TabOrder'#2#0#4'Text'#6#9'all types'#0#0#5'TEdit'#9'searchstr'#4'Left'#2'x' - +#6'Height'#2#24#3'Top'#2#14#5'Width'#3#232#0#7'OnKeyUp'#7#14'searchstrKeyUp' - +#8'TabOrder'#2#1#0#0#7'TButton'#11'srch_button'#4'Left'#2#16#6'Height'#2#28#4 - +'Hint'#6#18'Search the library'#3'Top'#2#8#5'Width'#2'Z'#25'BorderSpacing.In' - +'nerBorder'#2#4#7'Caption'#6#6'Search'#7'OnClick'#7#16'srch_buttonClick'#14 - ,'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#2#0#0#7'TButton'#7'Button1'#4 - +'Left'#2'x'#6'Height'#2#25#3'Top'#2#254#5'Width'#2'K'#7'Caption'#6#14'Button' - +'TestPlug'#7'OnClick'#7#11'TestPlugin1'#8'TabOrder'#2#3#7'Visible'#8#0#0#7'T' - +'Button'#7'Button2'#4'Left'#3#201#0#6'Height'#2#25#3'Top'#2#254#5'Width'#2'K' - +#7'Caption'#6#9'ButtonMsg'#7'OnClick'#7#12'Button2Click'#8'TabOrder'#2#4#7'V' - +'isible'#8#0#0#0#7'TBitBtn'#10'clear_list'#21'AnchorSideBottom.Side'#7#9'asr' - +'Center'#4'Left'#3#2#2#6'Height'#2'"'#4'Hint'#6#14'Clear Playlist'#3'Top'#2 - +'!'#5'Width'#2'F'#7'Anchors'#11#5'akTop'#7'akRight'#0#8'AutoSize'#9#7'Captio' - +'n'#6#5'Clear'#10'Glyph.Data'#10'z'#6#0#0'v'#6#0#0'BMv'#6#0#0#0#0#0#0'6'#0#0 - +#0'('#0#0#0#20#0#0#0#20#0#0#0#1#0' '#0#0#0#0#0'@'#6#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#135#0#0#0#0#0#0#0'9'#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#169#180#169#255 - +#169#188#169#255#185#188#185#255#241#216#241#255#241#220#241#255#185#188#185 - +#255#185#180#185#255#169#188#169#255#135#0#0#0'x'#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#249#216#249#255#249#252#249#255#249#252 - +#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249 - +#252#249#255#249#252#249#255#241#220#241#255#169#188#169#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#241#216#241#255#249#252#249#255#249#252#249#255#185 - +#216#169#255'x'#180#185#255'X'#180'x'#255'P'#144'x'#255'x'#180#169#255#249 - +#252#249#255#249#252#249#255#249#252#249#255#241#220#241#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#241#220#241#255#249#252#249#255#169#220#185#255#185 - +#216#185#255'P'#188'x'#255'P'#180'x'#255'('#148'X'#255'('#156'X'#255'X'#156 - +'x'#255#249#252#249#255#249#252#249#255#249#216#249#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#135#0#0#0'x' - +#255#255#0#241#220#241#255#249#252#249#255#249#252#249#255#161#188#169#255'x' - +#180#185#255#241#252#249#255#185#216#185#255'8'#148'x'#255'('#156'X'#255#169 - +#216#185#255#249#252#249#255#249#216#249#255#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0'x'#255#255#0#255#255#255#0#255#255#255#0#255#255#255 - +#0#241#220#241#255#249#252#249#255#249#216#241#255#241#252#249#255#249#252 - +#249#255#249#252#249#255#249#252#249#255'X'#180#161#255'('#152'x'#255#177#188 - +#169#255#249#252#249#255#249#216#249#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 - +#241#220#241#255#249#252#249#255#177#216#169#255'x'#188#177#255'X'#180#161 - +#255'P'#152'x'#255#169#220#185#255'P'#180'x'#255'P'#180'x'#255#169#216#185 - +#255#249#252#249#255#249#216#249#255#255#255#255#0#255#255#255#0#255#255#255 - +#0#135#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#241#220 - +#241#255#249#252#249#255#185#216#185#255#161#220#169#255'8'#180'x'#255'X'#180 - +#161#255'8'#188'x'#255'P'#188'x'#255#169#216#169#255#249#252#249#255#249#252 - +#249#255#249#216#249#255#135#0#0#0'x'#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#241#220#241#255#249 - +#252#249#255#249#252#249#255#185#220#185#255#169#216#185#255#161#216#169#255 - +#185#220#185#255#185#220#185#255#249#252#249#255#249#252#249#255#249#252#249 - +#255#249#216#249#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#241#220#241#255#249 - +#252#249#255#249#252#249#255#169#220#185#255#249#252#249#255#241#252#249#255 - +#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249 - +#255#249#216#249#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#241#220#241#255#249 - +#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255 - +#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249 - +#255#249#216#249#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#241#220#241#255#249 - +#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255 - +#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249 - +#255#249#216#249#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#135#0#0#0'x'#255#255#0#255#255#255#0#241#220#241#255#249#252 - +#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249 - +#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255#249#252#249#255 - ,#249#216#249#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#241#220#241#255#249#252 - +#249#255#249#216#249#255#241#216#241#255#249#220#249#255#241#220#241#255#249 - +#216#249#255#241#220#241#255#249#220#249#255#249#252#249#255#249#252#249#255 - +#249#216#249#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#241#220#241#255#169#188 - +#169#255#169#188#169#255#169#188#169#255#169#188#169#255#169#188#169#255#169 - +#188#169#255#169#188#169#255#169#188#169#255#169#188#169#255#185#188#185#255 - +#241#220#241#255#255#255#255#0#255#255#255#0#135#0#0#0'x'#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#185#188#185 - +#255#185#180#185#255#185#188#185#255#185#188#185#255#185#188#185#255#185#188 - +#185#255#185#188#185#255#185#188#185#255#185#180#185#255#185#188#185#255#135 - +#0#0#0'x'#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#185#188#185#255#185#188#185#255#255 - +#255#255#0'|'#0#0#0'x'#255#255#0#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#155#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'u'#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#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#199#202#0'pg'#26#0#0#0#0#0#0#0 - +#0#0#16'~"'#0#3'^N'#0#0#0#0#0'\'#0#0#0'H'#221#138#0#252#220#138#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#16#221#138#0#0#0#0#0#0#0#0#0#8#0#0#0#156#0#155#0#237#3';'#0#0#4 - +#155#0#6'Layout'#7#12'blGlyphRight'#9'NumGlyphs'#2#0#7'OnClick'#7#15'clear_l' - +'istClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0#0#0#0#6'TPan' - +'el'#6'Panel4'#4'Left'#2#0#6'Height'#3#171#2#3'Top'#2#0#5'Width'#3' '#1#5'Al' - +'ign'#7#8'alClient'#25'BorderSpacing.InnerBorder'#2#30#10'BevelOuter'#7#6'bv' - +'None'#12'ClientHeight'#3#171#2#11'ClientWidth'#3' '#1#8'TabOrder'#2#1#7'OnC' - +'lick'#7#11'Panel4Click'#0#9'TTreeView'#10'ArtistTree'#4'Left'#2#26#6'Height' - +#3#161#2#3'Top'#2#5#5'Width'#3#3#1#5'Align'#7#8'alClient'#17'BorderSpacing.T' - +'op'#2#5#19'BorderSpacing.Right'#2#3#20'BorderSpacing.Bottom'#2#5#25'BorderS' - +'pacing.InnerBorder'#2#20'!BorderSpacing.CellAlignHorizontal'#7#10'ccaLeftTo' - +'p'#31'BorderSpacing.CellAlignVertical'#7#10'ccaLeftTop'#17'DefaultItemHeigh' - +'t'#2#16#8'DragMode'#7#11'dmAutomatic'#14'ExpandSignType'#7#10'tvestArrow'#6 - +'Images'#7#10'ImageList1'#9'PopupMenu'#7#14'artisttreemenu'#8'ReadOnly'#9#16 - +'RightClickSelect'#9#10'ScrollBars'#7#10'ssAutoBoth'#8'ShowRoot'#8#8'TabOrde' - +'r'#2#0#7'OnClick'#7#15'ArtistTreeClick'#10'OnDblClick'#7#18'ArtistTreeDblCl' - +'ick'#9'OnEndDrag'#7#17'ArtistTreeEndDrag'#7'OnKeyUp'#7#15'ArtistTreeKeyUp' - +#11'OnMouseDown'#7#19'ArtistTreeMouseDown'#18'OnSelectionChanged'#7#26'Artis' - +'tTreeSelectionChanged'#11'OnStartDrag'#7#19'ArtistTreeStartDrag'#7'Options' - +#11#17'tvoAutoItemHeight'#16'tvoHideSelection'#21'tvoKeepCollapsedNodes'#11 - +'tvoReadOnly'#19'tvoRightClickSelect'#14'tvoShowButtons'#12'tvoShowLines'#11 - +'tvoToolTips'#0#0#0#6'TPanel'#15'ArtistSrchField'#4'Left'#3#152#0#6'Height'#2 - +'@'#3'Top'#3#128#2#5'Width'#3#128#0#12'ClientHeight'#2'@'#11'ClientWidth'#3 - +#128#0#8'TabOrder'#2#1#7'Visible'#8#7'OnClick'#7#20'ArtistSrchFieldClick'#0#6 - +'TLabel'#6'Label2'#4'Left'#2'M'#6'Height'#2#14#3'Top'#2#8#5'Width'#2')'#7'Ca' - +'ption'#6#6'Search'#11'ParentColor'#8#0#0#12'TSpeedButton'#12'SpeedButton1'#4 - +'Left'#2#2#6'Height'#2#22#3'Top'#2#6#5'Width'#2#23#5'Color'#7#9'clBtnFace'#4 - +'Flat'#9#10'Glyph.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'x'#6#0#185#0#0#0#145#255';'#0#0#0#0#0#0#0#0#0#0#0#244#0#0#0#0#0#0 - +#145#255#0#0#0#0#0'x'#6'x'#0#0#0#0#0#255#0#0#0#0#255#0#0#0#255#0#0#185'~'#7#0 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#147#255#5#5#165#255#1#1#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'99'#181#255#11#11#151#255#0#0#0#0 - +#0#0#0#0#235#158#156#0#0#0#147#255#0#0#193#255#3#3#207#255#12#12#171#255#3#3 - +#148#255#0#0#0#0#14#0#14#0#0#0#0#0#255#0#0#0#0#255#0#0'--'#172#255#29#29#212 - +#255'II'#204#255#22#22#156#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#149#255#4#4#200 - +#255#2#2#207#255#18#18#169#255#1#1#146#255#0#0#0#0#0#0#0#0#0#0#0#0#23#23#155 - +#255'**'#209#255#13#13#210#255'MM'#193#255#18#18#153#255#245#0#0#0#0#0#0#0#0 - +#0#255#0#0#0#0#0#2#2#149#255#9#9#194#255#5#5#208#255#23#23#171#255#0#0#143 - +#255#0#255#11#0#20#20#156#255'**'#207#255#20#20#207#255'=='#180#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#5#5#149#255#12#12#204#255#7#7 - +#208#255#31#31#202#255#31#31#179#255#26#26#209#255#6#6#208#255'99'#180#255 - +#255#14#0#0#245#0#0#0#198#20#237#0#0#0#0#0#0#0#0#0#177'b'#0#0'g'#0#0#0'z'#7 - +'z'#0#0#0#0#0#17#17#169#255#2#2#207#255#0#0#207#255#3#3#208#255#0#0#207#255 - ,'&&'#206#255#14#14#154#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#10#10#153#255#9#9#209#255#0#0#207#255#0#0#207#255#0#0 - +#207#255'//'#194#255#186#0#0#0'b'#0#168#0#0#0#0#0#0#0#0#0#0#0#255#0#205#0#0#0 - +#134#246#206#0#0#0#255#0#255#0#0#0#0#255'l'#0#8#8#151#255#11#11#209#255#0#0 - +#207#255#0#0#207#255#0#0#207#255'//'#203#255#2#2#149#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#17#17#170#255#3#3#208 - +#255#0#0#207#255#0#0#207#255#0#0#207#255#19#19#210#255'(('#168#255#0#0#0#0 - +#255#255#255#0#255#0#0#0#237#11#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#4#4#149 - +#255#13#13#204#255#2#2#207#255#19#19#208#255'$$'#190#255#19#19#209#255#2#2 - +#207#255'11'#207#255#21#21#155#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#1#1#147#255#10#10#189#255#4#4#208#255#28#28#181#255#16#16#151#255#0#0 - +#0#0#23#23#158#255';;'#203#255#12#12#209#255'??'#201#255#13#13#152#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#148#255#4#4#176#255#3#3#207#255#18#18#170#255 - +#1#1#147#255#0#0#0#0#0#0#0#0#0#0#0#0#6#6#146#255'<<'#193#255#13#13#210#255'L' - +'L'#196#255#2#2#149#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#147#255#1#1#207#255#11#11 - +#169#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#15#15#153#255'@@' - +#204#255'NN'#191#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#146#255#4#4#149#255 - +#1#1#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#12#12 - +#151#255#0#0#0#0#0#0#0#0#0#0#0#0#224#211#228#0#224#249#215#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#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#9'NumGlyphs'#2#0#7'OnClick'#7#17'SpeedButton1Click'#0 - +#0#5'TEdit'#12'artistsearch'#4'Left'#2#8#6'Height'#2#24#3'Top'#2' '#5'Width' - +#2'n'#7'OnKeyUp'#7#15'ArtistTreeKeyUp'#8'TabOrder'#2#0#4'Text'#6#12'artistse' - +'arch'#0#0#0#8'TToolBar'#8'ToolBar1'#4'Left'#2#0#6'Height'#3#166#2#3'Top'#2#5 - +#5'Width'#2#26#5'Align'#7#6'alLeft'#17'BorderSpacing.Top'#2#5#12'ButtonHeigh' - +'t'#3#150#0#7'Caption'#6#8'ToolBar1'#14'DisabledImages'#7#14'SidebarImgList' - +#11'EdgeBorders'#11#5'ebTop'#7'ebRight'#0#9'EdgeInner'#7#6'esNone'#9'EdgeOut' - +'er'#7#6'esNone'#9'HotImages'#7#14'SidebarImgList'#6'Images'#7#14'SidebarImg' - +'List'#8'TabOrder'#2#2#11'Transparent'#9#0#11'TToolButton'#10'LibModeBtn'#4 - +'Left'#2#1#3'Top'#2#0#8'AutoSize'#9#7'Caption'#6#7'Library'#10'ImageIndex'#2 - +#0#5'Style'#7#8'tbsCheck'#7'OnClick'#7#15'LibModeBtnClick'#0#0#11'TToolButto' - +'n'#10'NetModeBtn'#4'Left'#2#1#3'Top'#3#150#0#7'Caption'#6#10'NetModeBtn'#10 - +'ImageIndex'#2#1#5'Style'#7#8'tbsCheck'#7'OnClick'#7#15'NetModeBtnClick'#0#0 - +#11'TToolButton'#13'DeviceModeBtn'#4'Left'#2#1#3'Top'#3','#1#7'Caption'#6#13 - +'DeviceModeBtn'#10'ImageIndex'#2#2#5'Style'#7#8'tbsCheck'#7'OnClick'#7#18'De' - +'viceModeBtnClick'#0#0#0#0#10'TPopupMenu'#12'playlistmenu'#6'Images'#7#10'Im' - +'ageList1'#4'left'#3#0#2#3'top'#3'P'#2#0#9'TMenuItem'#10'MenuItem10'#7'Capti' - +'on'#6#14'File info/edit'#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#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228 - +#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228 - +#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228 - +#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0 - +#228#228#228#0#228#228#228#0#161'l8'#255#161'\8'#255'xX8'#255'x\8'#255#228 - +#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228 - +#228#0#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#169'l8'#255 - +#177'l8'#255#185'|P'#255#185'|P'#255#185'|P'#255#185'l8'#255#169'l8'#255'xX(' - +#255#228#228#228#0#228#228#228#0#228#228#228#0#228#228#228#0#224#224#224#0 - +#224#224#224#0#224#224#224#0#177'|X'#255#185'|P'#255#185'|P'#255#185#144'x' - +#255#249#216#241#255#249#216#185#255#169#148'X'#255#185'|P'#255#185'|P'#255 - +'xX('#255#228#228#228#0#228#228#228#0#228#228#228#0#224#224#224#0#224#224#224 - +#0#185'|X'#255#169'|X'#255#169'|X'#255#169'|X'#255#241#220#241#255#249#252 - +#249#255#185#148'x'#255#169#144'P'#255#185'|P'#255#185'|P'#255#177'l8'#255'x' - +'X8'#255#224#224#224#0#224#224#224#0#224#224#224#0#224#224#224#0#185#144'x' - +#255#169'|X'#255#169'|P'#255#169#144'P'#255#249#188#169#255#249#252#249#255 - +#185#148'x'#255#169'|X'#255#169'|P'#255#185'|P'#255#185'|P'#255#169'l8'#255 - +#224#224#224#0#224#224#224#0#224#224#224#0#169#148'x'#255#185#156'x'#255#169 - +#144'P'#255#169#148'P'#255#169#148'X'#255#185#180#169#255#249#252#249#255#241 - +#180#185#255#169'|P'#255#169'|X'#255#169'|P'#255#185'|P'#255#177'l8'#255'x\8' - +#255#224#224#224#0#224#224#224#0#185#180#161#255#169#144'P'#255#169#148'P' - +#255#185#152'X'#255#185#156'X'#255#169#144'x'#255#249#252#249#255#241#216#185 - +#255#169#144'P'#255#169'|X'#255#169'|X'#255#185'|P'#255#185'|P'#255'xX8'#255 - +#224#224#224#0#210#210#210#0#185#180#169#255#169#148'X'#255#185#152'X'#255 - +#185#156'x'#255#169#144'x'#255#185#188#177#255#249#252#249#255#241#220#185 - ,#255#185#152'X'#255#169#144'P'#255#169'|X'#255#169'|P'#255#185'|P'#255'x\8' - +#255#224#224#224#0#226#226#226#0#169#156'x'#255#185#156'x'#255#185#156'X'#255 - +#185#148'x'#255#185#148'x'#255#185#180#169#255#185#188#177#255#185#148'x'#255 - +#185#156'x'#255#185#152'X'#255#169#148'P'#255#169'|X'#255#185'lP'#255#161'l8' - +#255#166#166#166#0#255#255#255#0#255#255#255#0#249#180#177#255#185#144'x'#255 - +#241#156'x'#255#241#180'x'#255#241#180'x'#255#185#180'x'#255#249#216#185#255 - +#185#152'x'#255#185#156'x'#255#169#152'X'#255#169'|P'#255#177'l8'#255#226#226 - +#226#0#226#226#226#0#255#255#255#0#255#255#255#0#185#152'x'#255#241#180#161 - +#255#241#156'x'#255#241#180'x'#255#241#180'x'#255#241#180#169#255#249#252#249 - +#255#241#216#169#255#185#144'x'#255#185#156'x'#255#169'|P'#255#161'l8'#255 - +#255#255#255#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0#0#185#180#161#255#241#180 - +#161#255#241#180'x'#255#241#180'x'#255#185#156#161#255#241#188#169#255#185 - +#156'x'#255#185#148'x'#255#185#156'x'#255#169'l8'#255#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#169#148'x'#255#249#180 - +#177#255#249#188#169#255#185#156'x'#255#185#152'x'#255#185#156'x'#255#185#144 - +'x'#255#177'|X'#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#185#144'X'#255#185#180#169#255#185#156#161#255#177'|P' - +#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#10'ImageIndex'#2#8#7'OnClick'#7#15'MenuItem10Cl' - +'ick'#0#0#9'TMenuItem'#10'MenuItem23'#7'Caption'#6#12'Listen Track'#11'Bitma' - +'p.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#249#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0 - +#0#0#241#216#241#255#185#180#185#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'P'#180'x'#255'P'#180'x'#255'P'#180'x'#255'P'#180'x' - +#255'X'#152'x'#255#0#0#0#0#249#216#249#255#249#220#249#255#177#144#177#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#161#188#169#255'x'#216#185#255 - +'x'#220#177#255'x'#220#177#255'x'#220#177#255#161#216#169#255#0#0#0#0#249#216 - +#249#255#241#220#241#255#169#180#169#255#177#144#177#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#177#220#185#255#177#220#185#255#177#220#185#255 - +#177#220#185#255#161#188#169#255#0#0#0#0#249#216#249#255#169#188#169#255#169 - +#188#169#255#169#180#169#255#177#144#177#255#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#241#220#241#255 - +#169#188#169#255#169#188#169#255#169#188#169#255#185#152#185#255'xlx'#255'xl' - +'x'#255'x|x'#255'x|x'#255#0#0#0#0'X'#188#161#255'X'#188'x'#255'X'#188'x'#255 - +'X'#188'x'#255'X'#180#161#255#169#188#169#255#241#220#241#255#185#180#185#255 - +#185#180#185#255#185#180#185#255#185#156#185#255'x|x'#255'x|x'#255'x|x'#255 - +'x|x'#255#255#0#0#0#185#216#185#255#169#220#169#255#169#220#169#255#169#220 - +#169#255#185#216#185#255#169#188#169#255#249#216#249#255#241#220#241#255#241 - +#220#241#255#241#220#241#255#185#180#185#255'x|x'#255'x|x'#255'x|x'#255#161 - +#144#161#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#241#220 - +#241#255#249#220#249#255#249#220#249#255#249#220#249#255#185#180#185#255#177 - +#144#177#255#161#148#161#255#161#148#161#255#169#152#169#255#255#0#0#0'8'#152 - +'x'#255'8'#152'x'#255'8'#152'x'#255'8'#152'x'#255'8'#148'x'#255#0#0#0#0#185 - +#188#185#255#241#216#241#255#249#220#249#255#249#220#249#255#169#180#169#255 - +#177#144#177#255#169#156#169#255#169#156#169#255#0#0#0#0#0#0#0#0'x'#188#169 - +#255'x'#180#161#255'x'#180#161#255'x'#180#161#255'x'#180#169#255#0#0#0#0#169 - +#188#169#255#241#220#241#255#249#220#249#255#169#180#169#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#177#216#169#255#169#220#169#255#169#220 - +#169#255#169#220#169#255#177#216#169#255#0#0#0#0#169#188#169#255#249#216#249 - +#255#169#180#169#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#185#156#185#255#169#180#169 - +#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#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#10'ImageIndex'#2#0#7'OnClick'#7#16'PlaylistDblClick'#0#0#9'TM' - +'enuItem'#9'MenuItem3'#7'Caption'#6#15'Remove Selected'#7'OnClick'#7#14'Menu' - +'Item3Click'#0#0#9'TMenuItem'#7'space11'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#9 - +'Menuitem1'#7'Caption'#6#8'Playlist'#0#9'TMenuItem'#9'Menuitem5'#7'Caption'#6 - ,#13'Load Playlist'#7'OnClick'#7#15'MenuItem27Click'#0#0#9'TMenuItem'#9'Menui' - +'tem4'#7'Caption'#6#13'Save Playlist'#7'OnClick'#7#14'save_listClick'#0#0#0#0 - +#9'TMainMenu'#9'Mainmenu1'#6'Images'#7#10'ImageList1'#4'left'#3#216#0#0#9'TM' - +'enuItem'#8'FileItem'#7'Caption'#6#4'File'#0#9'TMenuItem'#8'openfile'#7'Capt' - +'ion'#6#12'Open File...'#8'ShortCut'#3'O@'#7'OnClick'#7#13'openfileClick'#0#0 - +#9'TMenuItem'#7'opendir'#7'Caption'#6#17'Open directory...'#7'OnClick'#7#12 - +'opendirClick'#0#0#9'TMenuItem'#10'MenuItem12'#7'Caption'#6#1'-'#0#0#9'TMenu' - +'Item'#10'player_lib'#7'Caption'#6#11'Player only'#8'ShortCut'#2'q'#7'OnClic' - +'k'#7#15'player_libClick'#0#0#9'TMenuItem'#8'skinmenu'#7'Caption'#6#14'Choos' - +'e skin...'#7'OnClick'#7#13'skinmenuClick'#0#0#9'TMenuItem'#12'SettingsItem' - +#7'Caption'#6#11'Settings...'#7'OnClick'#7#17'SettingsItemClick'#0#0#9'TMenu' - +'Item'#8'spacer15'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#8'QuitItem'#7'Caption' - +#6#4'Quit'#8'ShortCut'#3'X@'#7'OnClick'#7#13'QuitItemClick'#0#0#0#9'TMenuIte' - +'m'#9'MIlibrary'#7'Caption'#6#7'Library'#0#9'TMenuItem'#8'MInewlib'#7'Captio' - +'n'#6#11'New Library'#7'OnClick'#7#11'newlibClick'#0#0#9'TMenuItem'#9'MIload' - +'lib'#7'Caption'#6#12'Load Library'#7'OnClick'#7#12'loadlibClick'#0#0#9'TMen' - +'uItem'#9'MIsavelib'#7'Caption'#6#12'Save Library'#7'OnClick'#7#12'savelibCl' - +'ick'#0#0#9'TMenuItem'#6'space3'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#11'mnuCl' - +'eanLib'#7'Caption'#6#16'Clean up Library'#7'Visible'#8#7'OnClick'#7#16'mnuC' - +'leanLibClick'#0#0#9'TMenuItem'#6'space4'#7'Caption'#6#1'-'#7'Visible'#8#0#0 - +#9'TMenuItem'#9'MIlibinfo'#7'Caption'#6#12'Library Info'#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#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#161'l8'#255#161'\8'#255'xX8'#255'x\8'#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#169'l8'#255#177'l8'#255#185 - +'|P'#255#185'|P'#255#185'|P'#255#185'l8'#255#169'l8'#255'xX('#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#177'|X'#255#185'|P'#255#185'|P' - +#255#185#144'x'#255#249#216#241#255#249#216#185#255#169#148'X'#255#185'|P' - +#255#185'|P'#255'xX('#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185'|X'#255 - +#169'|X'#255#169'|X'#255#169'|X'#255#241#220#241#255#249#252#249#255#185#148 - +'x'#255#169#144'P'#255#185'|P'#255#185'|P'#255#177'l8'#255'xX8'#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#185#144'x'#255#169'|X'#255#169'|P'#255#169#144'P'#255 - +#249#188#169#255#249#252#249#255#185#148'x'#255#169'|X'#255#169'|P'#255#185 - +'|P'#255#185'|P'#255#169'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#169#148'x'#255#185 - +#156'x'#255#169#144'P'#255#169#148'P'#255#169#148'X'#255#185#180#169#255#249 - +#252#249#255#241#180#185#255#169'|P'#255#169'|X'#255#169'|P'#255#185'|P'#255 - +#177'l8'#255'x\8'#255#0#0#0#0#0#0#0#0#185#180#161#255#169#144'P'#255#169#148 - +'P'#255#185#152'X'#255#185#156'X'#255#169#144'x'#255#249#252#249#255#241#216 - +#185#255#169#144'P'#255#169'|X'#255#169'|X'#255#185'|P'#255#185'|P'#255'xX8' - +#255#0#0#0#0#0#0#0#0#185#180#169#255#169#148'X'#255#185#152'X'#255#185#156'x' - +#255#169#144'x'#255#185#188#177#255#249#252#249#255#241#220#185#255#185#152 - +'X'#255#169#144'P'#255#169'|X'#255#169'|P'#255#185'|P'#255'x\8'#255#0#0#0#0#0 - +#0#0#0#169#156'x'#255#185#156'x'#255#185#156'X'#255#185#148'x'#255#185#148'x' - +#255#185#180#169#255#185#188#177#255#185#148'x'#255#185#156'x'#255#185#152'X' - +#255#169#148'P'#255#169'|X'#255#185'lP'#255#161'l8'#255#0#0#0#0#0#0#0#0#0#0#0 - +#0#249#180#177#255#185#144'x'#255#241#156'x'#255#241#180'x'#255#241#180'x' - +#255#185#180'x'#255#249#216#185#255#185#152'x'#255#185#156'x'#255#169#152'X' - +#255#169'|P'#255#177'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185#152'x'#255 - +#241#180#161#255#241#156'x'#255#241#180'x'#255#241#180'x'#255#241#180#169#255 - +#249#252#249#255#241#216#169#255#185#144'x'#255#185#156'x'#255#169'|P'#255 - +#161'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185#180#161#255#241#180 - +#161#255#241#180'x'#255#241#180'x'#255#185#156#161#255#241#188#169#255#185 - +#156'x'#255#185#148'x'#255#185#156'x'#255#169'l8'#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#169#148'x'#255#249#180#177#255#249#188#169 - +#255#185#156'x'#255#185#152'x'#255#185#156'x'#255#185#144'x'#255#177'|X'#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#185#144'X'#255#185#180#169#255#185#156#161#255#177'|P'#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#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#10'ImageIndex'#2#8#7'OnClick'#7#12'libinfoClick'#0#0#9'TMenuIte' - +'m'#10'MIManagLib'#7'Caption'#6#17'Manage Library...'#7'OnClick'#7#15'MenuIt' - +'em11Click'#0#0#9'TMenuItem'#10'Menuitem24'#7'Caption'#6#1'-'#7'Visible'#8#0 - ,#0#9'TMenuItem'#10'Menuitem21'#7'Caption'#6#6'Remove'#7'Visible'#8#0#9'TMenu' - +'Item'#15'removselectItem'#7'Caption'#6#8'Selected'#7'OnClick'#7#17'removese' - +'lectClick'#0#0#9'TMenuItem'#10'RemoveItem'#7'Caption'#6#3'All'#7'OnClick'#7 - +#11'RemoveClick'#0#0#0#0#9'TMenuItem'#10'MIPlaylist'#7'Caption'#6#8'Playlist' - +#0#9'TMenuItem'#6'MIplay'#7'Caption'#6#4'Play'#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'687'#0#130#135#133#0#133 - +#138#136#0#133#138#136#0#133#138#136#0#133#138#136#0#133#138#136#0#133#138 - +#136#0#133#138#136#0#133#138#136#0#133#138#136#0#133#138#136#0#130#135#133#0 - +'687'#0#0#0#0#0#0#0#0#0#131#135#133#0#240#240#240#0#255#255#255#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#254#254#254#0#234#236#235#0#131#134#132#0#0#0#0#0#0 - +#0#0#0#133#138#136#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#251#251#251#0#186#186#186#255#207#207#207#0#250#251#250#0#248#249#249#0#247 - +#248#248#0#247#249#248#0#254#254#254#0#133#138#136#0#0#0#0#0#10#25#17#0's' - +#138#127#0#247#251#249#0#253#255#253#0#224#238#232#0#237#245#241#0#242#242 - +#242#0#193#193#193#255#155#155#155#255#196#197#197#0#247#248#247#0#245#247 - +#246#0#244#245#245#0#255#255#255#0#133#138#136#0#0#0#0#0#27'5('#0'R'#164'u' - +#255'R'#164'u'#255'R'#164'u'#255'R'#164'u'#255#219#232#225#0#243#244#244#0 - +#188#188#188#255#168#168#168#255#155#155#155#255#193#194#194#0#244#245#244#0 - +#242#244#243#0#255#255#255#0#133#138#136#0#0#0#0#0#10#14#12#0#131#144#138#0 - +#238#247#241#0#254#254#254#0#253#253#253#0#249#250#250#0#236#236#236#0#181 - +#181#181#255#168#168#168#255#168#168#168#255#156#156#156#255#190#191#190#0 - +#240#243#241#0#255#255#255#0#133#138#136#0#0#0#0#0#0#0#0#0#133#138#136#0#255 - +#255#255#0#253#253#253#0#251#252#251#0#250#250#250#0#219#219#219#0#174#174 - +#174#255#168#168#168#255#168#168#168#255#168#168#168#255#148#148#148#255'xxx' - +#255'xxx'#255'wxx'#255'222'#0#8#17#12#0#127#138#132#0#213#230#223#0#206#224 - +#213#0#249#250#250#0#219#230#225#0#229#231#230#0#171#171#171#255#170#170#170 - +#255#170#170#170#255#170#170#170#255#144#144#144#255'nnn'#255'nnn'#255'nnn' - +#255'nnn'#255#2#6#4#0'W'#169'z'#255'W'#169'z'#255'W'#169'z'#255'W'#169'z'#255 - +#210#229#221#0#228#229#228#0#182#182#182#255#182#182#182#255#182#182#182#255 - +#182#182#182#255#149#149#149#255'vvv'#255'vvv'#255'vvv'#255'nnn'#255#8#10#8#0 - +#133#143#140#0#220#237#229#0#248#249#248#0#246#248#247#0#231#238#235#0#235 - +#237#236#0#193#193#193#255#194#194#194#255#194#194#194#255#194#194#194#255 - +#171#171#171#255'~~~'#255'~~~'#255'~~~'#255'qqq'#255#0#0#0#0#131#138#136#0 - +#251#253#253#0#240#243#243#0#242#244#243#0#241#243#242#0#201#201#201#0#201 - +#201#201#255#206#206#206#255#206#206#206#255#206#206#206#255#179#179#179#255 - +#134#134#134#255#131#131#131#255#132#132#132#255'HHH'#0#20'/!'#0#133#138#136 - +#0#251#253#253#0#205#223#215#0#204#223#212#0#199#217#210#0#219#221#220#0#199 - +#199#199#255#206#206#206#255#206#206#206#255#192#192#192#255#151#152#151#0 - +#141#145#144#0#139#143#141#0'~'#128#127#0#0#0#0#0#19' '#25#0'W'#169'z'#255'W' - +#169'z'#255'\'#174#127#255'\'#174#127#255#195#218#207#0#217#220#218#0#194#194 - +#194#255#207#207#207#255#190#190#190#255#164#164#164#0#253#253#253#0#207#207 - +#207#0#149#153#151#0#26#27#26#0#0#0#0#0'!2+'#0#133#153#143#0#187#220#203#0 - +#195#222#209#0#213#231#222#0#223#233#228#0#228#231#230#0#182#182#182#255#185 - +#185#185#255#209#211#209#0#195#196#196#0#207#207#207#0#164#167#166#0'243'#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#130#134#132#0#233#235#234#0#254#254#254#0#255#255#255 - +#0#255#255#255#0#255#255#255#0#178#178#178#255#194#194#194#0#255#255#255#0 - +#186#186#186#0#147#149#148#0'/10'#0#0#0#0#0#0#0#0#0#0#0#0#0#224#29'E'#0#0#0#0 - +#0'@'#14'n'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#138#136#0#133#138 - +#136#0'{'#127'~'#0#22#23#23#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'ImageIndex' - +#2#0#8'ShortCut'#3'P@'#7'OnClick'#7#16'toggle_playpause'#0#0#9'TMenuItem'#6 - +'MInext'#7'Caption'#6#4'Next'#8'ShortCut'#3'N@'#7'OnClick'#7#9'nextClick'#0#0 - +#9'TMenuItem'#10'MIprevious'#7'Caption'#6#8'Previous'#8'ShortCut'#3'B@'#7'On' - +'Click'#7#9'prevClick'#0#0#9'TMenuItem'#6'MImute'#7'Caption'#6#4'Mute'#8'Sho' - +'rtCut'#3'M@'#7'OnClick'#7#9'muteClick'#0#0#9'TMenuItem'#8'spacer41'#7'Capti' - +'on'#6#1'-'#0#0#9'TMenuItem'#11'MIload_list'#7'Caption'#6#13'Load Playlist'#7 - +'OnClick'#7#15'MenuItem27Click'#0#0#9'TMenuItem'#11'MIsave_list'#7'Caption'#6 - +#13'Save Playlist'#7'OnClick'#7#14'save_listClick'#0#0#9'TMenuItem'#8'spacer' - +'29'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#16'MIclear_playlist'#7'Caption'#6#14 - +'Clear Playlist'#7'OnClick'#7#15'clear_listClick'#0#0#9'TMenuItem'#17'MIrand' - +'om_playlist'#7'Caption'#6#15'Random Playlist'#7'OnClick'#7#22'MIrandom_play' - +'listClick'#0#0#0#9'TMenuItem'#9'MIDevices'#7'Caption'#6#7'Devices'#0#9'TMen' - +'uItem'#10'MIRipAudio'#7'Caption'#6#12'Rip Audio-CD'#7'OnClick'#7#15'MIRipAu' - ,'dioClick'#0#0#9'TMenuItem'#10'MenuItem34'#7'Caption'#6#1'-'#0#0#9'TMenuItem' - +#14'MIMobilePlayer'#7'Caption'#6#13'Mobile Player'#0#9'TMenuItem'#12'MIDevic' - +'eInfo'#7'Caption'#6#11'Device Info'#10'ImageIndex'#2#8#7'OnClick'#7#17'MIDe' - +'viceInfoClick'#0#0#9'TMenuItem'#12'MIScanPlayer'#7'Caption'#6#11'Scan Playe' - +'r'#7'OnClick'#7#19'scanplayeritemClick'#0#0#9'TMenuItem'#10'MenuItem27'#7'C' - +'aption'#6#1'-'#0#0#9'TMenuItem'#12'MISyncPlayer'#7'Caption'#6#11'Sync Playe' - +'r'#7'OnClick'#7#14'syncplayeritem'#0#0#9'TMenuItem'#10'MenuItem35'#7'Captio' - +'n'#6#1'-'#0#0#9'TMenuItem'#12'MIUndoPlayer'#7'Caption'#6#14'Undo Selection' - +#7'OnClick'#7#17'undoSyncItemClick'#0#0#9'TMenuItem'#13'MIClearPlayer'#7'Cap' - +'tion'#6#12'Clear Player'#7'OnClick'#7#20'clearPlayerItemClick'#0#0#0#0#9'TM' - +'enuItem'#11'itemPlugins'#7'Caption'#6#7'Plugins'#7'Visible'#8#0#0#9'TMenuIt' - +'em'#6'MIhelp'#7'Caption'#6#4'Help'#12'RightJustify'#9#0#9'TMenuItem'#8'MIma' - +'nual'#7'Caption'#6#9'Manual...'#7'OnClick'#7#15'MenuItem43Click'#0#0#9'TMen' - +'uItem'#7'MIabout'#7'Caption'#6#15'About Cactus...'#7'OnClick'#7#15'MenuItem' - +'26Click'#0#0#0#0#10'TPopupMenu'#13'titlelistmenu'#6'Images'#7#10'ImageList1' - +#7'OnPopup'#7#18'titlelistmenuPopup'#4'left'#3#16#3#0#9'TMenuItem'#9'MenuIte' - +'m7'#7'Caption'#6#12'Listen track'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#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#0#0#0#0#241#216#241#255#185#180#185 - +#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'P'#180 - +'x'#255'P'#180'x'#255'P'#180'x'#255'P'#180'x'#255'X'#152'x'#255#0#0#0#0#249 - +#216#249#255#249#220#249#255#177#144#177#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#161#188#169#255'x'#216#185#255'x'#220#177#255'x'#220#177#255 - +'x'#220#177#255#161#216#169#255#0#0#0#0#249#216#249#255#241#220#241#255#169 - +#180#169#255#177#144#177#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 - +#177#220#185#255#177#220#185#255#177#220#185#255#177#220#185#255#161#188#169 - +#255#0#0#0#0#249#216#249#255#169#188#169#255#169#188#169#255#169#180#169#255 - +#177#144#177#255#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#241#220#241#255#169#188#169#255#169#188#169 - +#255#169#188#169#255#185#152#185#255'xlx'#255'xlx'#255'x|x'#255'x|x'#255#0#0 - +#0#0'X'#188#161#255'X'#188'x'#255'X'#188'x'#255'X'#188'x'#255'X'#180#161#255 - +#169#188#169#255#241#220#241#255#185#180#185#255#185#180#185#255#185#180#185 - +#255#185#156#185#255'x|x'#255'x|x'#255'x|x'#255'x|x'#255#255#0#0#0#185#216 - +#185#255#169#220#169#255#169#220#169#255#169#220#169#255#185#216#185#255#169 - +#188#169#255#249#216#249#255#241#220#241#255#241#220#241#255#241#220#241#255 - +#185#180#185#255'x|x'#255'x|x'#255'x|x'#255#161#144#161#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#241#220#241#255#249#220#249#255#249 - +#220#249#255#249#220#249#255#185#180#185#255#177#144#177#255#161#148#161#255 - +#161#148#161#255#169#152#169#255#255#0#0#0'8'#152'x'#255'8'#152'x'#255'8'#152 - +'x'#255'8'#152'x'#255'8'#148'x'#255#0#0#0#0#185#188#185#255#241#216#241#255 - +#249#220#249#255#249#220#249#255#169#180#169#255#177#144#177#255#169#156#169 - +#255#169#156#169#255#0#0#0#0#0#0#0#0'x'#188#169#255'x'#180#161#255'x'#180#161 - +#255'x'#180#161#255'x'#180#169#255#0#0#0#0#169#188#169#255#241#220#241#255 - +#249#220#249#255#169#180#169#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255 - +#0#0#0#177#216#169#255#169#220#169#255#169#220#169#255#169#220#169#255#177 - +#216#169#255#0#0#0#0#169#188#169#255#249#216#249#255#169#180#169#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#185#156#185#255#169#180#169#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#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#10'ImageIndex' - +#2#0#13'SubMenuImages'#7#10'ImageList1'#7'OnClick'#7#14'MenuItem7Click'#0#0#9 - +'TMenuItem'#12'TEditID3item'#7'Caption'#6#14'File info/edit'#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#161'l8'#255#161'\8'#255'xX8'#255'x\8'#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#169'l8'#255#177'l8'#255 - ,#185'|P'#255#185'|P'#255#185'|P'#255#185'l8'#255#169'l8'#255'xX('#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#177'|X'#255#185'|P'#255#185 - +'|P'#255#185#144'x'#255#249#216#241#255#249#216#185#255#169#148'X'#255#185'|' - +'P'#255#185'|P'#255'xX('#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185'|X' - +#255#169'|X'#255#169'|X'#255#169'|X'#255#241#220#241#255#249#252#249#255#185 - +#148'x'#255#169#144'P'#255#185'|P'#255#185'|P'#255#177'l8'#255'xX8'#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#185#144'x'#255#169'|X'#255#169'|P'#255#169#144'P' - +#255#249#188#169#255#249#252#249#255#185#148'x'#255#169'|X'#255#169'|P'#255 - +#185'|P'#255#185'|P'#255#169'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#169#148'x'#255 - +#185#156'x'#255#169#144'P'#255#169#148'P'#255#169#148'X'#255#185#180#169#255 - +#249#252#249#255#241#180#185#255#169'|P'#255#169'|X'#255#169'|P'#255#185'|P' - +#255#177'l8'#255'x\8'#255#0#0#0#0#0#0#0#0#185#180#161#255#169#144'P'#255#169 - +#148'P'#255#185#152'X'#255#185#156'X'#255#169#144'x'#255#249#252#249#255#241 - +#216#185#255#169#144'P'#255#169'|X'#255#169'|X'#255#185'|P'#255#185'|P'#255 - +'xX8'#255#0#0#0#0#0#0#0#0#185#180#169#255#169#148'X'#255#185#152'X'#255#185 - +#156'x'#255#169#144'x'#255#185#188#177#255#249#252#249#255#241#220#185#255 - +#185#152'X'#255#169#144'P'#255#169'|X'#255#169'|P'#255#185'|P'#255'x\8'#255#0 - +#0#0#0#0#0#0#0#169#156'x'#255#185#156'x'#255#185#156'X'#255#185#148'x'#255 - +#185#148'x'#255#185#180#169#255#185#188#177#255#185#148'x'#255#185#156'x'#255 - +#185#152'X'#255#169#148'P'#255#169'|X'#255#185'lP'#255#161'l8'#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#249#180#177#255#185#144'x'#255#241#156'x'#255#241#180'x'#255 - +#241#180'x'#255#185#180'x'#255#249#216#185#255#185#152'x'#255#185#156'x'#255 - +#169#152'X'#255#169'|P'#255#177'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185 - +#152'x'#255#241#180#161#255#241#156'x'#255#241#180'x'#255#241#180'x'#255#241 - +#180#169#255#249#252#249#255#241#216#169#255#185#144'x'#255#185#156'x'#255 - +#169'|P'#255#161'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185#180#161 - +#255#241#180#161#255#241#180'x'#255#241#180'x'#255#185#156#161#255#241#188 - +#169#255#185#156'x'#255#185#148'x'#255#185#156'x'#255#169'l8'#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#169#148'x'#255#249#180#177#255 - +#249#188#169#255#185#156'x'#255#185#152'x'#255#185#156'x'#255#185#144'x'#255 - +#177'|X'#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#185#144'X'#255#185#180#169#255#185#156#161#255#177'|P'#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#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#10'ImageIndex'#2#8#13'SubMenuImages'#7#10'ImageList' - +'1'#7'OnClick'#7#16'EditID3itemClick'#0#0#9'TMenuItem'#10'MenuItem13'#7'Capt' - +'ion'#6#1'-'#0#0#9'TMenuItem'#9'MenuItem9'#7'Caption'#6#19'-> next in playli' - +'st'#7'OnClick'#7#14'MenuItem9Click'#0#0#9'TMenuItem'#9'Menuitem8'#7'Caption' - +#6#21'-> append to playlist'#7'OnClick'#7#17'TitleTreeDblClick'#0#0#9'TMenuI' - +'tem'#9'MenuItem2'#7'Caption'#6#22'All tracks to playlist'#7'OnClick'#7#14'M' - +'enuItem2Click'#0#0#9'TMenuItem'#10'MenuItem11'#7'Caption'#6#1'-'#0#0#9'TMen' - +'uItem'#10'MenuItem16'#7'Caption'#6#16'Upload to Player'#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#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'('#252#8#255'('#252#8#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#255#0 - +#0#0'('#252#8#255'('#252#8#255'('#252#8#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'('#252 - +#8#255'('#252#8#255'('#252#8#255'('#252#8#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#0#0#0#0#0#0#0'(' - +#252#8#255'('#252#8#255'('#252#8#255'('#252#8#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 - +'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#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#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#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'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#0#0#0#0#0#0#0 - +#0#0#0#0#0'('#252#8#255#0#0#0#0#0#0#0#0#0#0#6#0#249#6#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#0#0 - +#0#0'('#252#8#255'('#252#8#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'('#252#8#255'('#252#8#255'('#252#8#255'(' - ,#252#8#255'('#252#8#255'('#252#8#255#0#0#0#0#0#0#0#0#0#0'>'#0#198'>'#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'('#252#8#255'('#252#8 - +#255'('#252#8#255'('#252#8#255'('#252#8#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'('#252#8#255'('#252#8#255'(' - +#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#0#0#0#0#0#0#0#0#6'F'#222#0 - +'?'#222'F'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'('#252#8#255'('#252#8 - +#255'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#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 - +#249#202'N'#0#0'N'#203#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#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#3#7'OnClick'#7#15'MenuItem16Click'#0#0#9'TMenuIt' - +'em'#10'MenuItem14'#7'Caption'#6#18'Remove from player'#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#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#8'L' - +#249#255#8'L'#249#255#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0 - +#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0 - +#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#255#255#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#255#255 - +#0#255#0#0#0#0#0#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#255 - +#255#0#255#0#0#0#0#0#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#8'L'#249#255#8'L' - +#249#255#0#0#0#0#0#255#255#0#255#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255 - +#8'L'#249#255#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255 - +#0#255#0#0#0#8'L'#249#255#0#0#0#0#0#255#255#0#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#8'L'#249#255#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0 - +#0#0#0#0#0#255#255#0#255#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#8'L'#249#255#8'L'#249#255#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#8'L'#249#255#8'L' - +#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#255#255#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#8'L'#249 - +#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0 - +#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#8 - +'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255 - +#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0 - +#0#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#0 - +#255#255#0#255#0#0#0#8'L'#249#255#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#255#0#255#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255 - +#8'L'#249#255#0#0#0#0#0#255#255#0#255#0#0#0#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#8'L'#249#255 - +#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#8'L' - +#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0 - +#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#10'ImageI' - +'ndex'#2#2#7'OnClick'#7#15'MenuItem14Click'#0#0#9'TMenuItem'#10'MenuItem20'#7 - +'Caption'#6#10'Do nothing'#7'OnClick'#7#15'MenuItem20Click'#0#0#9'TMenuItem' - +#10'MenuItem17'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#10'MTitleView'#7'Caption' - +#6#4'View'#0#9'TMenuItem'#12'MIViewArtist'#7'Caption'#6#6'Artist'#7'OnClick' - +#7#17'MIViewArtistClick'#0#0#9'TMenuItem'#11'MIViewTitle'#7'Caption'#6#5'Tit' - +'le'#7'OnClick'#7#16'MIViewTitleClick'#0#0#9'TMenuItem'#11'MIViewAlbum'#7'Ca' - +'ption'#6#5'Album'#7'OnClick'#7#16'MIViewAlbumClick'#0#0#9'TMenuItem'#11'MIV' - +'iewTrack'#7'Caption'#6#5'Track'#7'OnClick'#7#16'MIViewTrackClick'#0#0#9'TMe' - +'nuItem'#11'MIViewGenre'#7'Caption'#6#5'Genre'#7'OnClick'#7#16'MIViewGenreCl' - +'ick'#0#0#9'TMenuItem'#14'MIViewFilename'#7'Caption'#6#8'Filename'#7'OnClick' - +#7#19'MIViewFilenameClick'#0#0#0#9'TMenuItem'#10'MenuItem18'#7'Caption'#6#8 - +'Advanced'#0#9'TMenuItem'#9'MenuItem6'#7'Caption'#6#24'Remove file(s) from d' - ,'isk'#7'OnClick'#7#14'MenuItem6Click'#0#0#0#0#22'TSelectDirectoryDialog'#22 - +'Selectdirectorydialog1'#5'Title'#6#16'Select Directory'#11'FilterIndex'#2#0 - +#3'top'#3'0'#1#0#0#10'TPopupMenu'#14'artisttreemenu'#6'Images'#7#10'ImageLis' - +'t1'#9'AutoPopup'#8#7'OnPopup'#7#19'artisttreemenuPopup'#3'top'#3#208#1#0#9 - +'TMenuItem'#10'MenuItem15'#7'Caption'#6#19'Listen Artist/Album'#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#0#0#0#0#0 - +#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#0#0#0#0#0#255#255#0#255#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#241#216#241#255#185#180#185 - +#255#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#222'?'#0#255#0#0#0 - +'P'#180'x'#255'P'#180'x'#255'P'#180'x'#255'P'#180'x'#255'X'#152'x'#255#0#0#0 - +#0#249#216#249#255#249#220#249#255#177#144#177#255#0#0#0#0#0#0#0#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#161#188#169#255'x'#216#185#255'x'#220#177#255'x'#220 - +#177#255'x'#220#177#255#161#216#169#255#0#0#0#0#249#216#249#255#241#220#241 - +#255#169#180#169#255#177#144#177#255#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#255#0#0#0#177#220#185#255#177#220#185#255#177#220#185#255#177#220#185#255 - +#161#188#169#255#0#0#0#0#249#216#249#255#169#188#169#255#169#188#169#255#169 - +#180#169#255#177#144#177#255#255#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#255#0#0#0#0#0#0#0#0#0#0#0#241#220#241#255#169#188#169 - +#255#169#188#169#255#169#188#169#255#185#152#185#255'xlx'#255'xlx'#255'x|x' - +#255'x|x'#255#255#0#0#0'X'#188#161#255'X'#188'x'#255'X'#188'x'#255'X'#188'x' - +#255'X'#180#161#255#169#188#169#255#241#220#241#255#185#180#185#255#185#180 - +#185#255#185#180#185#255#185#156#185#255'x|x'#255'x|x'#255'x|x'#255'x|x'#255 - +#255#0#0#0#185#216#185#255#169#220#169#255#169#220#169#255#169#220#169#255 - +#185#216#185#255#169#188#169#255#249#216#249#255#241#220#241#255#241#220#241 - +#255#241#220#241#255#185#180#185#255'x|x'#255'x|x'#255'x|x'#255#161#144#161 - +#255#255#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#241#220#241 - +#255#249#220#249#255#249#220#249#255#249#220#249#255#185#180#185#255#177#144 - +#177#255#161#148#161#255#161#148#161#255#169#152#169#255#255#0#0#0'8'#152'x' - +#255'8'#152'x'#255'8'#152'x'#255'8'#152'x'#255'8'#148'x'#255#0#0#0#0#185#188 - +#185#255#241#216#241#255#249#220#249#255#249#220#249#255#169#180#169#255#177 - +#144#177#255#169#156#169#255#169#156#169#255#0#0#0#0#255#0#0#0'x'#188#169#255 - +'x'#180#161#255'x'#180#161#255'x'#180#161#255'x'#180#169#255#0#0#0#0#169#188 - +#169#255#241#220#241#255#249#220#249#255#169#180#169#255#0#0#0#0#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#177#216#169#255#169#220#169#255#169#220#169 - +#255#169#220#169#255#177#216#169#255#0#0#0#0#169#188#169#255#249#216#249#255 - +#169#180#169#255#0#0#0#0#0#0#0#0#255#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#255#0#0#0#0#0#0#0#0#0#0#0#185#156#185#255#169#180 - +#169#255#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#255#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#255#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#255#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#255#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#255#0#10'ImageIndex'#2#0#7'OnClick'#7#15'Menu' - +'Item15Click'#0#0#9'TMenuItem'#10'MenuItem33'#7'Caption'#6#14'File info/edit' - +#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#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#255#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#255#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#255#0#0#0#0#0#0#0#161'l8'#255#161'\8'#255'xX8'#255'x\8' - +#255#0#0#0#0#0#0#0#0#255#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#255#255#0#169'l8'#255#177'l8'#255#185'|P'#255#185'|P'#255#185'|P'#255 - +#185'l8'#255#169'l8'#255'xX('#255#255#0#0#0#0#0#0#0#0#0#0#0#0'T'#220#0#255#0 - +#0#0#0#0#0#0#0#0#0#0#177'|X'#255#185'|P'#255#185'|P'#255#185#144'x'#255#249 - +#216#241#255#249#216#185#255#169#148'X'#255#185'|P'#255#185'|P'#255'xX('#255 - +#0#0#0#0#0#0#0#0#0#255#255#0#255#0#0#0#0#0#0#0#185'|X'#255#169'|X'#255#169'|' - +'X'#255#169'|X'#255#241#220#241#255#249#252#249#255#185#148'x'#255#169#144'P' - +#255#185'|P'#255#185'|P'#255#177'l8'#255'xX8'#255#0#0#0#0#0#255#255#0#255#0#0 - +#0#0#0#0#0#185#144'x'#255#169'|X'#255#169'|P'#255#169#144'P'#255#249#188#169 - +#255#249#252#249#255#185#148'x'#255#169'|X'#255#169'|P'#255#185'|P'#255#185 - +'|P'#255#169'l8'#255#0#0#0#0#0#255#255#0#255#0#0#0#169#148'x'#255#185#156'x' - +#255#169#144'P'#255#169#148'P'#255#169#148'X'#255#185#180#169#255#249#252#249 - ,#255#241#180#185#255#169'|P'#255#169'|X'#255#169'|P'#255#185'|P'#255#177'l8' - +#255'x\8'#255#0#0#0#0#255#0#0#0#185#180#161#255#169#144'P'#255#169#148'P'#255 - +#185#152'X'#255#185#156'X'#255#169#144'x'#255#249#252#249#255#241#216#185#255 - +#169#144'P'#255#169'|X'#255#169'|X'#255#185'|P'#255#185'|P'#255'xX8'#255#0#0 - +#0#0#255#0#0#0#185#180#169#255#169#148'X'#255#185#152'X'#255#185#156'x'#255 - +#169#144'x'#255#185#188#177#255#249#252#249#255#241#220#185#255#185#152'X' - +#255#169#144'P'#255#169'|X'#255#169'|P'#255#185'|P'#255'x\8'#255#0#0#0#0#255 - +#0#0#0#169#156'x'#255#185#156'x'#255#185#156'X'#255#185#148'x'#255#185#148'x' - +#255#185#180#169#255#185#188#177#255#185#148'x'#255#185#156'x'#255#185#152'X' - +#255#169#148'P'#255#169'|X'#255#185'lP'#255#161'l8'#255#0#0#0#0#255#0#0#0#0#0 - +#0#0#249#180#177#255#185#144'x'#255#241#156'x'#255#241#180'x'#255#241#180'x' - +#255#185#180'x'#255#249#216#185#255#185#152'x'#255#185#156'x'#255#169#152'X' - +#255#169'|P'#255#177'l8'#255#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#185#152'x'#255 - +#241#180#161#255#241#156'x'#255#241#180'x'#255#241#180'x'#255#241#180#169#255 - +#249#252#249#255#241#216#169#255#185#144'x'#255#185#156'x'#255#169'|P'#255 - +#161'l8'#255#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#185#180#161#255#241 - +#180#161#255#241#180'x'#255#241#180'x'#255#185#156#161#255#241#188#169#255 - +#185#156'x'#255#185#148'x'#255#185#156'x'#255#169'l8'#255#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#169#148'x'#255#249#180#177#255#249#188 - +#169#255#185#156'x'#255#185#152'x'#255#185#156'x'#255#185#144'x'#255#177'|X' - +#255#255#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#255 - +#0#0#0#0#0#0#0#185#144'X'#255#185#180#169#255#185#156#161#255#177'|P'#255#0#0 - +#0#0#0#0#0#0#255#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#255#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#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#10'ImageIndex'#2#8#13'SubMenuImages'#7#10'Ima' - +'geList1'#7'OnClick'#7#15'MenuItem33Click'#0#0#9'TMenuItem'#10'MenuItem19'#7 - +'Caption'#6#1'-'#0#0#9'TMenuItem'#10'MenuItem22'#7'Caption'#6#19'-> next in ' - +'playlist'#7'OnClick'#7#16'MenuItem22aClick'#0#0#9'TMenuItem'#14'toplaylisti' - +'tem'#7'Caption'#6#21'-> append to playlist'#7'OnClick'#7#18'ArtistTreeDblCl' - +'ick'#0#0#9'TMenuItem'#6'space1'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#10'MenuI' - +'tem30'#7'Caption'#6#16'Upload to player'#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#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#255#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#255#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#255#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#255#0#0#0'('#252#8#255'('#252#8#255#0#0#0#0#255#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255#255#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#255#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#255#0#0#0#0#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#0 - +#0#0#0#0#0#0#0#255#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#255#0#0#0#0#0#0#0#0#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'(' - +#252#8#255#0#0#0#0#255#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'('#252#8#255'('#252#8#255'('#252 - +#8#255'('#252#8#255#255#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#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0'('#252#8#255'('#252#8 - +#255'('#252#8#255'('#252#8#255#0#0#0#0#0#0#0#0#0#0#0#0'('#252#8#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#168'T'#220#0#168'T'#220#0#208#206'm'#0#208#206'm'#0#255#0#0#0 - +#0#0#0#0'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255#0#0#0#0'('#252#8 - +#255'('#252#8#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'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255'(' - +#252#8#255'('#252#8#255#0#0#0#0#0#0#0#0'9'#18#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#254#217'7'#0'('#252#8#255'('#252#8#255'('#252#8 - +#255'('#252#8#255'('#252#8#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#233#18#0#0#168'T'#220#0#168'T'#220#0' '#206'm'#0'('#252#8#255'('#252#8#255 - +'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#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'('#252#8#255'('#252#8#255'(' - +#252#8#255'('#252#8#255'('#252#8#255'('#252#8#255'('#252#8#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#255#0#0#0#0#0 - +#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#255#0#0#20#174#246#0'X'#0#0#0#0#0#0#0#0#0'T' - ,#0#240'{'#255#0#0#255#0#0#135#245#255#0#20#174#246#0'X'#0#0#0#0#0#0#0#10'Ima' - +'geIndex'#2#3#13'SubMenuImages'#7#10'ImageList1'#7'OnClick'#7#15'MenuItem30C' - +'lick'#0#0#9'TMenuItem'#20'rm_artist_playeritem'#7'Caption'#6#18'Remove from' - +' player'#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#240'?'#0#144#255#0#0#255#0#0#0#255#0#0#0#0#0#255#0#0#255#128#0#130 - +#184#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#255#0#0#173#161#17#0#164 - +#0#0#0#0#0#0#0#0#9#255#0#0#255#0#0#255#0#0#0#245#26#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#255#0#0#0#0#0#255#0#0#255#0#0#255#0#0#0#0#173#161#0#29#164#0#0#153#31#4#0 - +#241#0#0#0#134#6#0#0#13#255#0#0#255#0#0#0#8'L'#249#255#8'L'#249#255#0#255#16 - +#0#16#245#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0'-'#250#0#0#255#0#0#245#26#0 - +#0#0#0#0#0#0#0#0#0#0#0#254#0#0#255#0#0#255#0#0#0#8'L'#249#255#8'L'#249#255#8 - +'L'#249#255#8#0#3#0#255#0'-'#0','#0#255#0#0#255#0#0#255#0#0#0#0#245#26#0#0#0 - +#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#233'K'#0#255#8#0#0#254#0#0#0#0 - +#0#255#0#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#183 - +#171#0#0#255#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#0#0#255 - +#0#255#0#0#0#174'_'#7#0#216#0#0#0#130#11'T'#0#8'L'#249#255#8'L'#249#255#182#0 - +#255#0#0#255#0#0#255#12#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249 - +#255#17#0#0#0#0'L'#216#0#255#254#0#0#223#0#0#0#0#0#255#0#0#255#128#0#131#184 - +#0#0#0#0#0#0#8'L'#249#255#0#0#255#0#0#0#0#0#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#8'L'#249#255#130#12'U'#0#0#0#255#0#0#0#255#0#0#255#0#0#24#186#249#0 - +';'#0#0#0'|'#239#232#0'~'#238#234#0#255'C'#213#0#8'L'#249#255#8'L'#249#255#8 - +'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#156#0#0#0#136#6#0#0#0#0#0 - +#0'?'#222#0#0#255#130#12#0#0#0#255#0#0#255#136#0#210'%'#0#0#255#0#0#0#0#0#0#0 - +#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255';'#0#0#0'}' - +#240#233#0#0#0#255#0#0#0#255#0#0#255#0#0#255#255#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#255#206'X'#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L'#249 - +#255'X'#217#251#0'd'#0#0#0#196#252#255#0#0#0#255#0#228'M'#0#0#255'}'#240#0'Q' - +#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#8'L'#249#255#8 - +'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#8'L'#249#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#8'L'#249#255#8'L'#249#255#8'L'#249#255#8'L' - +#249#255#8'L'#249#255'X'#255#0#0#0#0#0#0#0#0#0#0#8'L'#249#255#8'L'#249#255#8 - +'L'#249#255#0#255#0#0#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255'X'#0#0#8'L'#249 - +#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#8'L' - +#249#255#8'L'#249#255#8'L'#249#255#0#0#0#0#0#0#255#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#8 - +'L'#249#255#8'L'#249#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#255#0#0#0#0#0#0#10'ImageIndex'#2#2#7'OnClick'#7#25'rm_artist_play' - +'eritemClick'#0#0#9'TMenuItem'#10'MenuItem37'#7'Caption'#6#10'Do nothing'#7 - +'OnClick'#7#15'MenuItem37Click'#0#0#9'TMenuItem'#10'MenuItem38'#7'Caption'#6 - +#1'-'#0#0#9'TMenuItem'#10'Menuitem26'#7'Caption'#6#8'Advanced'#0#9'TMenuItem' - +#11'Menuitem27a'#7'Caption'#6#24'Remove file(s) from disk'#7'OnClick'#7#17'r' - +'emoveselectClick'#0#0#0#0#6'TTimer'#9'playtimer'#7'Enabled'#8#8'Interval'#3 - +#200#0#7'OnTimer'#7#14'playtimerTimer'#12'OnStartTimer'#7#19'playtimerStartT' - +'imer'#3'top'#3#232#0#0#0#11'TSaveDialog'#11'SaveDialog1'#5'Title'#6#12'Save' - +' file as'#11'FilterIndex'#2#0#3'top'#3'0'#2#0#0#10'TImageList'#10'ImageList' - +'1'#12'DrawingStyle'#7#7'dsFocus'#11'ShareImages'#9#3'top'#3'X'#1#6'Bitmap' - +#10#14#24#0#0'Li'#6#0#0#0#16#0#0#0#16#0#0#0#224#29'E'#0#0#0#0#0'@'#14'n'#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#138#136#0#133#138#136#0'{'#127'~' - +#0#22#23#23#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#130#134#132#0#233#235 - +#234#0#254#254#254#0#255#255#255#0#255#255#255#0#255#255#255#0#178#178#178 - +#255#194#194#194#0#255#255#255#0#186#186#186#0#147#149#148#0'/10'#0#0#0#0#0#0 - +#0#0#0#0#0#0#0'!2+'#0#133#153#143#0#187#220#203#0#195#222#209#0#213#231#222#0 - +#223#233#228#0#228#231#230#0#182#182#182#255#185#185#185#255#209#211#209#0 - +#195#196#196#0#207#207#207#0#164#167#166#0'243'#0#0#0#0#0#0#0#0#0#19' '#25#0 - +'W'#169'z'#255'W'#169'z'#255'\'#174#127#255'\'#174#127#255#195#218#207#0#217 - +#220#218#0#194#194#194#255#207#207#207#255#190#190#190#255#164#164#164#0#253 - +#253#253#0#207#207#207#0#149#153#151#0#26#27#26#0#0#0#0#0#20'/!'#0#133#138 - +#136#0#251#253#253#0#205#223#215#0#204#223#212#0#199#217#210#0#219#221#220#0 - +#199#199#199#255#206#206#206#255#206#206#206#255#192#192#192#255#151#152#151 - +#0#141#145#144#0#139#143#141#0'~'#128#127#0#0#0#0#0#0#0#0#0#131#138#136#0#251 - ,#253#253#0#240#243#243#0#242#244#243#0#241#243#242#0#201#201#201#0#201#201 - +#201#255#206#206#206#255#206#206#206#255#206#206#206#255#179#179#179#255#134 - +#134#134#255#131#131#131#255#132#132#132#255'HHH'#0#8#10#8#0#133#143#140#0 - +#220#237#229#0#248#249#248#0#246#248#247#0#231#238#235#0#235#237#236#0#193 - +#193#193#255#194#194#194#255#194#194#194#255#194#194#194#255#171#171#171#255 - +'~~~'#255'~~~'#255'~~~'#255'qqq'#255#2#6#4#0'W'#169'z'#255'W'#169'z'#255'W' - +#169'z'#255'W'#169'z'#255#210#229#221#0#228#229#228#0#182#182#182#255#182#182 - +#182#255#182#182#182#255#182#182#182#255#149#149#149#255'vvv'#255'vvv'#255'v' - +'vv'#255'nnn'#255#8#17#12#0#127#138#132#0#213#230#223#0#206#224#213#0#249#250 - +#250#0#219#230#225#0#229#231#230#0#171#171#171#255#170#170#170#255#170#170 - +#170#255#170#170#170#255#144#144#144#255'nnn'#255'nnn'#255'nnn'#255'nnn'#255 - +#0#0#0#0#133#138#136#0#255#255#255#0#253#253#253#0#251#252#251#0#250#250#250 - +#0#219#219#219#0#174#174#174#255#168#168#168#255#168#168#168#255#168#168#168 - +#255#148#148#148#255'xxx'#255'xxx'#255'wxx'#255'222'#0#10#14#12#0#131#144#138 - +#0#238#247#241#0#254#254#254#0#253#253#253#0#249#250#250#0#236#236#236#0#181 - +#181#181#255#168#168#168#255#168#168#168#255#156#156#156#255#190#191#190#0 - +#240#243#241#0#255#255#255#0#133#138#136#0#0#0#0#0#27'5('#0'R'#164'u'#255'R' - +#164'u'#255'R'#164'u'#255'R'#164'u'#255#219#232#225#0#243#244#244#0#188#188 - +#188#255#168#168#168#255#155#155#155#255#193#194#194#0#244#245#244#0#242#244 - +#243#0#255#255#255#0#133#138#136#0#0#0#0#0#10#25#17#0's'#138#127#0#247#251 - +#249#0#253#255#253#0#224#238#232#0#237#245#241#0#242#242#242#0#193#193#193 - +#255#155#155#155#255#196#197#197#0#247#248#247#0#245#247#246#0#244#245#245#0 - +#255#255#255#0#133#138#136#0#0#0#0#0#0#0#0#0#133#138#136#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#251#251#251#0#186#186#186#255#207#207 - +#207#0#250#251#250#0#248#249#249#0#247#248#248#0#247#249#248#0#254#254#254#0 - +#133#138#136#0#0#0#0#0#0#0#0#0#131#135#133#0#240#240#240#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#254#254#254#0#234#236#235#0#131#134#132#0 - +#0#0#0#0#0#0#0#0'687'#0#130#135#133#0#133#138#136#0#133#138#136#0#133#138#136 - +#0#133#138#136#0#133#138#136#0#133#138#136#0#133#138#136#0#133#138#136#0#133 - +#138#136#0#133#138#136#0#130#135#133#0'687'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'xl'#177#255'PX'#161#255'PLx'#255'PLx'#255'PLx'#255'PHx'#255'82'#180#255'!!'#213#255#30#30#213#255 - +'a]'#201#255'J'#1#185#255#4#0#238#0#4#0#131#255#7#6#193#255#23#10#150#255#2#0 - +';'#0'#'#0#16#0#155#3#1#0#217#3#16#0#3#0#16#0'#'#0#17#0#155#3#16#0'U'#2'b' - +#255'II'#195#255'OM'#183#255'F'#8'`'#255#216#3#20#0#1#0#19#0#31#0'1'#0#24#2 - +#129#255#129#2'P'#0#0#0'$'#0'#'#0#22#0#155#3'$'#0#217#3#22#0#177#3#22#0#217#3 - +#23#0#179#3#23#0#210#3#27#0'!'#2'}'#255'y'#2'O'#0#181#3#25#0#217#3'X'#0'0' - +#190#219#0#241#127#0#0#208'@'''#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#247 - +' <'#0#0#0#0#0#160#178'm'#0#0#0#0#0#127#136'('#0#0#22#0#0#8#128#24#255#11'W' - +#11#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'@'#208'~'#0#0#0#0#0#0 - +#0#0#0#0#0#0#0'7'#192'm'#0#1'3'#1#255#29'f'#29#255'H'#135'H'#255'P'#154'P' - +#255'O'#128'M'#255#0#0#0#0#0#0#0#0'G'#2'9'#0#129#2'Y'#0#0#0#0#0#0#0#0#0'`'#1 - +#12#0#0#0#127#0'..3'#0'1|1'#255'@'#133'@'#255'G'#147'G'#255'.'#149'.'#255#8 - +#137#8#255#10#137#10#255'G'#127'G'#255#0#0#0#0#0#0#0#0#12#16#6#0'fff'#0#168 - +#195'5'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#24#0#0#10'\'#10#255'E'#144'F'#255#24#143 - +#24#255#0#134#0#255#0#134#0#255#13#138#13#255'E}E'#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'#1#0#0#0#7#0#0#31'i'#29#255'2' - +#150'2'#255#0#134#0#255#4#135#4#255#15#139#15#255'C|C'#255#26#2'9'#0'-'#0' ' - +#0'p'#4#130#0#0#0#0#0#248' <'#0#0#0#0#0#160#178'm'#0#0#0#0#0#128#137'('#0#11 - +'?'#11#255'@'#144'@'#255#2#135#2#255#12#139#12#255'Y'#149'Y'#255'P'#155'P' - +#255'@{@'#255#0#0#0#0#0#0#0#0'@'#208'~'#0#0#0#0#0#0#0#0#0#0#0#0#0'@'#208'~'#0 - +#0#0#0#0#2'/'#2#0':'#130':'#255#8#137#8#255#3#135#3#255'J'#147'J'#255#11'K' - +#11#255' c#'#255#31'g'#31#255#0#0#0#0#0#0#0#0'3'#1#12#0#0#0#127#0'< B'#0#30 - +#30#30#0'CCC'#0'!F!'#0'/y/'#255#18#140#18#255#0#134#0#255'9'#150'9'#255#25'c' - +#25#255#0#4#0#0#11#22#5#0'}'#172'}'#255#216#196'5'#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#30'0P'#0',v,'#255#21#141#21#255#0#134#0#255'#'#147'#'#255'+' - +'s+'#255#0#19#0#0#0#0#0#0#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#0#0#6'E'#6#255')x'''#255#13#137#13#255#0#134#0#255#16#140#16#255'<'#138'=' - ,#255#0'0'#0#255#178#1'9'#0'h'#0' '#0'p'#4#130#0#0#0#0#0#249' <'#0#0#0#0#0#157 - +#177'k'#0#0'&'#0#0#26'j'#18#255#31#130#31#255#6#137#6#255#0#134#0#255#12#139 - +#12#255';'#140';'#255#5'L'#5#255#0#1#0#0#0#0#0#0#0#0#0#0'@'#208'~'#0#0#0#0#0 - +#0#17#0#0#0'6'#0#255#11'j'#16#255#18'r'#18#255#13#136#13#255#0#134#0#255#0 - +#134#0#255#18#142#18#255'0'#130'0'#255#5'I'#5#255#172#4'7'#0#26#2'Y'#0#0#0#0 - +#0#0#0#0#0#203#0#12#0#0#0#127#0#14'N'#16#255#7'k'#7#255#7#135#7#255#1#134#1 - +#255#0#134#0#255#4#136#4#255#30#139#30#255'$q$'#255#1'='#1#255#0#1#0#0#12#16 - +#6#0'qqq'#0#8#198'5'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#5#0#0#1'J'#1#255#13'q'#16 - +#255#12#138#12#255#23#130#23#255#29'p'#29#255#11'T'#11#255#0#21#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'==='#0'vxv'#0'''C'#1 - +#255#5'X'#5#255'Yb'#1#255#0#20#0#0'p6'#7#0#0#0#0#0#255#255#255#0#255#255#255 - +#0#23#23#23#0#139#139#139#0#175#175#175#0#162#162#162#0#129#129#129#0'''''''' - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'PLP'#255'x|x'#255'x|x' - +#255#177#148#177#255#169#180#169#255#169#188#169#255#185#152#185#255#161#144 - +#161#255'x|x'#255'PLP'#255'XXX'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'x|x'#255#161#148#161#255#169#180#169#255#241#216#241#255#249#220#249#255#249 - +#252#249#255#249#252#249#255#249#220#249#255#177#144#177#255'x|x'#255'xlx' - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#161#144#161#255#169#180#169#255 - +#241#216#241#255#249#216#249#255#249#252#249#255#249#252#249#255#249#252#249 - +#255#249#252#249#255#241#216#241#255'x|x'#255'xlx'#255#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#169#152#169#255#241#216#241#255#241#220#241#255#249#220 - +#249#255#241#216#241#255#249#216#249#255#249#252#249#255#249#252#249#255#249 - +#252#249#255#169#180#169#255'xlx'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#161#148#161#255#241#216#241#255#249#216#249#255#241#216#241#255#249#252#249 - +#255#249#252#249#255#249#216#249#255#249#252#249#255#249#252#249#255#169#188 - +#169#255'XXX'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'x|x'#255#241#220 - +#241#255#249#252#249#255#249#220#249#255#249#252#249#255#249#252#249#255#241 - +#220#241#255#249#252#249#255#249#252#249#255#185#156#185#255'XXX'#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'PXP'#255#241#220#241#255#249#252#249#255#249 - +#252#249#255#249#252#249#255#241#216#241#255#185#216#241#255#249#252#249#255 - +#249#252#249#255#169#152#169#255'XXX'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0'PHP'#255#169#152#169#255#249#252#249#255#249#252#249#255#249#252#249#255 - +#241#216#241#255#249#220#249#255#249#252#249#255#185#180#185#255'XHX'#255'X\' - +'X'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'PHP'#255'8<8'#255#169#156#169 - +#255#185#220#241#255#169#216#241#255#185#188#185#255#249#252#249#255#169#188 - +#169#255'XXX'#255'PLP'#255'X\X'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'PHP'#255'8<8'#255#161#156#185#255#185#216#241#255#169#220#241#255#169#156 - +#185#255'xlx'#255'8<8'#255'848'#255'XHX'#255'X\X'#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0'XHX'#255#177#188#169#255#161#144#177#255#185#188#185#255#177 - +#180#185#255'8<8'#255'848'#255'848'#255'848'#255'XLX'#255'X\X'#255#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#169#180#169#255#185#220#249#255#169#216#241 - +#255#185#220#249#255'x|x'#255'848'#255'848'#255'848'#255'848'#255'P\P'#255'X' - +'\X'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'x'#156#169#255#169#220#249 - +#255#169#216#249#255#169#180#169#255'848'#255'848'#255'848'#255'848'#255'PXP' - +#255'XXX'#255'P\P'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'XHX'#255'x|x' - +#255#169#180#169#255'xlx'#255'xlx'#255'xlx'#255'xlx'#255'x|x'#255'xlx'#255'X' - +'LX'#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#185#144'X'#255#185#180#169#255#185#156#161 - +#255#177'|P'#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#169#148'x'#255#249#180#177#255#249#188#169#255#185#156 - +'x'#255#185#152'x'#255#185#156'x'#255#185#144'x'#255#177'|X'#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#185#180#161#255#241#180#161#255 - +#241#180'x'#255#241#180'x'#255#185#156#161#255#241#188#169#255#185#156'x'#255 - +#185#148'x'#255#185#156'x'#255#169'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#185#152'x'#255#241#180#161#255#241#156'x'#255#241#180'x'#255#241#180 - +'x'#255#241#180#169#255#249#252#249#255#241#216#169#255#185#144'x'#255#185 - +#156'x'#255#169'|P'#255#161'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#249#180 - +#177#255#185#144'x'#255#241#156'x'#255#241#180'x'#255#241#180'x'#255#185#180 - ,'x'#255#249#216#185#255#185#152'x'#255#185#156'x'#255#169#152'X'#255#169'|P' - +#255#177'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#169#156'x'#255#185#156'x'#255#185 - +#156'X'#255#185#148'x'#255#185#148'x'#255#185#180#169#255#185#188#177#255#185 - +#148'x'#255#185#156'x'#255#185#152'X'#255#169#148'P'#255#169'|X'#255#185'lP' - +#255#161'l8'#255#0#0#0#0#0#0#0#0#185#180#169#255#169#148'X'#255#185#152'X' - +#255#185#156'x'#255#169#144'x'#255#185#188#177#255#249#252#249#255#241#220 - +#185#255#185#152'X'#255#169#144'P'#255#169'|X'#255#169'|P'#255#185'|P'#255'x' - +'\8'#255#0#0#0#0#0#0#0#0#185#180#161#255#169#144'P'#255#169#148'P'#255#185 - +#152'X'#255#185#156'X'#255#169#144'x'#255#249#252#249#255#241#216#185#255#169 - +#144'P'#255#169'|X'#255#169'|X'#255#185'|P'#255#185'|P'#255'xX8'#255#0#0#0#0 - +#0#0#0#0#169#148'x'#255#185#156'x'#255#169#144'P'#255#169#148'P'#255#169#148 - +'X'#255#185#180#169#255#249#252#249#255#241#180#185#255#169'|P'#255#169'|X' - +#255#169'|P'#255#185'|P'#255#177'l8'#255'x\8'#255#0#0#0#0#0#0#0#0#0#0#0#0#185 - +#144'x'#255#169'|X'#255#169'|P'#255#169#144'P'#255#249#188#169#255#249#252 - +#249#255#185#148'x'#255#169'|X'#255#169'|P'#255#185'|P'#255#185'|P'#255#169 - +'l8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#185'|X'#255#169'|X'#255#169'|X'#255 - +#169'|X'#255#241#220#241#255#249#252#249#255#185#148'x'#255#169#144'P'#255 - +#185'|P'#255#185'|P'#255#177'l8'#255'xX8'#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#177'|X'#255#185'|P'#255#185'|P'#255#185#144'x'#255#249#216#241#255 - +#249#216#185#255#169#148'X'#255#185'|P'#255#185'|P'#255'xX('#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#169'l8'#255#177'l8'#255#185'|P' - +#255#185'|P'#255#185'|P'#255#185'l8'#255#169'l8'#255'xX('#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#161'l8'#255 - +#161'\8'#255'xX8'#255'x\8'#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#6'TTimer'#11'chec' - +'kmobile'#7'Enabled'#8#7'OnTimer'#7#16'checkmobileTimer'#12'OnStartTimer'#7 - +#21'checkmobileStartTimer'#3'top'#3#8#1#0#0#16'TSimpleIPCServer'#16'SimpleIP' - +'CServer1'#6'Active'#8#6'Global'#8#9'OnMessage'#7#23'SimpleIPCServer1Message' - +#3'top'#3'p'#1#0#0#10'TImageList'#14'SidebarImgList'#6'Height'#3#150#0#5'Wid' - +'th'#2#20#3'top'#3#240#1#6'Bitmap'#10#174#140#0#0'Li'#3#0#0#0#20#0#0#0#150#0 - +#0#0#240'$'#234#0#248#129#192#0#248#129#192#0#248#129#192#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6#6#6#0#18 - +#18#18#0#12#12#12#0#12#12#12#0#18#18#18#0#7#7#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#11#11#11#0'%%%'#0#143#143#143#0#195#195#195#0#242 - +#242#242#0#245#245#245#0#202#202#202#0#149#149#149#0'000'#0#13#13#13#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'iii'#255'iii'#255'iii'#255'www'#255#144#144#144#255#148#148 - +#148#255#135#135#135#255'ooo'#255'jjj'#255'jjj'#255'bbb'#255'^^^'#255#15#15 - +#15#0#1#1#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'SSS'#255#158#158#158#255#139 - +#139#139#255#136#136#136#255#165#165#165#255#200#200#200#255#227#227#227#255 - +#239#239#239#255#236#236#236#255#198#198#198#255#150#150#150#255#128#128#128 - +#255#147#147#147#255'xxx'#255#255#255#255#0#255#255#255#0#255#255#255#0#252 - +#252#252#0#214#214#214#0#17#17#17#0'SSS'#255#131#131#131#255#136#136#136#255 - +#178#178#178#255#219#219#219#255#227#227#227#255#235#235#235#255#243#243#243 - +#255#251#251#251#255#250#250#250#255#233#233#233#255#154#154#154#255'}}}'#255 - +'fff'#255#243#243#243#0#244#244#244#0#206#206#206#0#221#221#221#0#251#251#251 - +#0#253#253#253#0'iii'#255#131#131#131#255#166#166#166#255#216#216#216#255#224 - +#224#224#255#232#232#232#255#240#240#240#255#248#248#248#255#253#253#253#255 - +#246#246#246#255#239#239#239#255#217#217#217#255#133#133#133#255'bbb'#255#239 - +#239#239#0#247#247#247#0#235#235#235#0'jjj'#0'mmm'#0#218#218#218#0'nnn'#255 - +#141#141#141#255#198#198#198#255#220#220#220#255#228#228#228#255#236#236#236 - +#255#215#215#215#255#215#215#215#255#232#232#232#255#242#242#242#255#235#235 - +#235#255#228#228#228#255#167#167#167#255'___'#255#0#0#0#0#0#0#0#0#2#2#2#0'yy' - +'y'#0#243#243#243#0#248#248#248#0'ppp'#255#155#155#155#255#217#217#217#255 - +#225#225#225#255#233#233#233#255#212#212#212#255#244#244#244#255#244#244#244 - ,#255#220#220#220#255#230#230#230#255#231#231#231#255#224#224#224#255#183#183 - +#183#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'TTT'#255 - +#131#131#131#255#222#222#222#255#230#230#230#255#238#238#238#255#212#212#212 - +#255#243#243#243#255#235#235#235#255#238#238#238#255#215#215#215#255#227#227 - +#227#255#220#220#220#255#183#183#183#255'YYY'#255#255#255#255#0#249#249#249#0 - +#201#201#201#0#18#18#18#0#0#0#0#0#0#0#0#0'QQQ'#255'{{{'#255#224#224#224#255 - +#235#235#235#255#243#243#243#255#226#226#226#255#230#230#230#255#244#244#244 - +#255#210#210#210#255#225#225#225#255#222#222#222#255#215#215#215#255#169#169 - +#169#255'WWW'#255#255#255#255#0#250#250#250#0#222#222#222#0#220#220#220#0#246 - +#246#246#0#248#248#248#0'lll'#255'JJJ'#255#198#198#198#255#239#239#239#255 - +#247#247#247#255#254#254#254#255#230#230#230#255#207#207#207#255#190#191#191 - +#255#196#197#197#255#218#218#218#255#211#211#211#255#142#142#142#255'^^^'#255 - +#234#234#234#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#250 - +#250#250#0'[[['#255'999'#255#141#141#141#255#241#241#241#255#252#252#252#255 - +#250#250#250#255#230#230#230#255#188#190#190#255#189#191#191#255#219#219#219 - +#255#214#214#214#255#181#181#181#255'RRR'#255'fff'#255#238#238#238#0#230#230 - +#230#0#228#228#228#0#231#231#231#0#236#236#236#0#252#252#252#0'nnn'#255':::' - +#255';;;'#255#158#158#158#255#247#247#247#255#209#216#216#255#165#184#184#255 - +#188#192#192#255#208#208#208#255#217#217#217#255#185#185#185#255'ggg'#255'77' - +'7'#255'jjj'#255#0#0#0#0#0#0#0#0#2#2#2#0'sss'#0#236#236#236#0#241#241#241#0 - +'kkk'#255';;;'#255'777'#255':;;'#255#146#167#167#255#164#203#203#255#155#196 - +#196#255#163#180#180#255#182#182#182#255#149#149#149#255'WWW'#255'777'#255'7' - +'77'#255'ooo'#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'NNN'#255'=' - +'=='#255':;;'#255#139#164#164#255#163#193#193#255#162#200#200#255#151#188#188 - +#255's'#127#127#255'@@@'#255'777'#255'777'#255'777'#255'777'#255'ttt'#255#242 - +#242#242#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#0#0#0#0'MMM'#255'GII'#255#145 - +#175#175#255#168#207#207#255#241#242#242#255#186#201#201#255#137#163#163#255 - +'777'#255'777'#255'777'#255'777'#255'777'#255'777'#255'yyy'#255#242#242#242#0 - +#242#242#242#0#240#240#240#0#241#241#241#0#238#238#238#0#133#133#133#0'MMM' - +#255#146#175#175#255#177#223#223#255#175#220#220#255#179#203#203#255#163#190 - +#190#255'X^^'#255'777'#255'777'#255'777'#255'777'#255'777'#255'777'#255#127 - +#127#127#255#238#238#238#0#239#239#239#0#229#229#229#0#230#230#230#0#240#240 - +#240#0#240#240#240#0'hhh'#255#154#185#185#255#178#223#223#255#165#206#206#255 - +#151#190#190#255#130#151#151#255'777'#255'777'#255'777'#255'777'#255'777'#255 - +'<<<'#255#134#134#134#255'eee'#255#0#0#0#0#13#13#13#0'kkk'#0#226#226#226#0 - +#233#233#233#0#235#235#235#0'ggg'#255#182#189#189#255#155#187#187#255#149#187 - +#187#255#141#171#171#255'_``'#255'^^^'#255'ccc'#255'hhh'#255'nnn'#255'ttt' - +#255#138#138#138#255#159#159#159#255'ccc'#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#9#9#9#0'YYY'#255'YYY'#255'hmm'#255'abb'#255']]]'#255'ZZZ' - +#255'WWW'#255'QQQ'#255'PPP'#255'OOO'#255'OOO'#255'VVV'#255'BBB'#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#3#3#3#0#16#16#16#0#13#13#13#0#12#12#12#0#16#16#16#0#4#4#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#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#8#9#0#0#8#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#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#255#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#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#6#6#6#0#18#18#18#0#12 - +#12#12#0#12#12#12#0#18#18#18#0#7#7#7#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#0#0#0#0#0#0#0#0#255#0#0#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#11#11#11#0'%%%'#0#143#143#143#0#195#195#195#0#242 - +#242#242#0#245#245#245#0#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#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#14#14#14#0'|||'#0#245#245#245#0#0#0#0#255#0#0#0#255#255 - +#255#255#0#255#255#255#0#255#255#255#0#254#254#254#0#251#251#251#0#144#144 - +#144#0#15#15#15#0#1#1#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#14#14#14#0#195#195#195#0#247#247#247#0#252#252 - +#252#0#255#255#255#0#254#254#254#0#222#222#222#0#234#234#234#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#252#252#252#0#214#214#214#0#17#17#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#0#0#0#0#10#10#10#0'yy' - +'y'#0#245#245#245#0#212#212#212#0#162#162#162#0#226#226#226#0#237#237#237#0 - +'^^^'#0#176#176#176#0#253#253#253#0#253#253#253#0#252#252#252#0#255#255#255#0 - +#251#251#251#0#145#145#145#0#13#13#13#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0'!!!'#0#239#239#239#0#247#247#247#0#158#158#158#0 - +'...'#0'iii'#0#213#213#213#0'jjj'#0#188#188#188#0#248#248#248#0#224#224#224#0 - +#225#225#225#0#252#252#252#0#253#253#253#0#248#248#248#0'222'#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#2#2#2#0'yyy'#0#243#243#243#0#248 - +#248#248#0#222#222#222#0'iii'#0'EEE'#0#205#205#205#0#234#234#234#0#243#243 - +#243#0#245#245#245#0#214#214#214#0#224#224#224#0#252#252#252#0#254#254#254#0 - +#249#249#249#0#153#153#153#0#9#9#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#16#16#16#0#172#172#172#0#242#242#242#0#237#237#237#0#235#235#235#0 - +#217#217#217#0#0#0#0#255#247#247#247#0#255#255#255#0#255#255#255#0#254#254 - +#254#0#245#245#245#0#246#246#246#0#251#251#251#0#255#255#255#0#249#249#249#0 - +#201#201#201#0#18#18#18#0#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 - +#14#14#0#220#220#220#0#0#0#0#255#141#141#141#0'{{{'#0#149#149#149#0#237#237 - +#237#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#250#250#250#0 - +#222#222#222#0#220#220#220#0#246#246#246#0#248#248#248#0#240#240#240#0#11#11 - +#11#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#14#14#14#0#219#219 - +#219#0#216#216#216#0#144#144#144#0#132#132#132#0#158#158#158#0#237#237#237#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#250#250#250#0#222 - +#222#222#0#220#220#220#0#245#245#245#0#247#247#247#0#238#238#238#0#12#12#12#0 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#169 - +#169#169#0#238#238#238#0#232#232#232#0#231#231#231#0#236#236#236#0#241#241 - +#241#0#253#253#253#0#255#255#255#0#255#255#255#0#254#254#254#0#246#246#246#0 - +#247#247#247#0#250#250#250#0#0#0#0#255#0#0#0#255#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#2#2#2#0'sss'#0#236#236#236#0 - +#241#241#241#0#239#239#239#0#208#208#208#0#206#206#206#0#244#244#244#0#250 - +#250#250#0#250#250#250#0#245#245#245#0#214#214#214#0#224#224#224#0#248#248 - +#248#0#246#246#246#0#241#241#241#0#148#148#148#0#8#8#8#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#30#30#30#0#229#229#229#0#238#238#238#0 - +#230#230#230#0#200#200#200#0#213#213#213#0#241#241#241#0#218#218#218#0#221 - +#221#221#0#243#243#243#0#220#220#220#0#219#219#219#0#243#243#243#0#242#242 - +#242#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#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#9#9#0'mmm'#0#234#234#234#0#234#234#234#0#229#229#229#0#237 - +#237#237#0#241#241#241#0#210#210#210#0#211#211#211#0#242#242#242#0#243#243 - +#243#0#240#240#240#0#241#241#241#0#238#238#238#0#133#133#133#0#12#12#12#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#13#13#13 - +#0#179#179#179#0#233#233#233#0#236#236#236#0#238#238#238#0#239#239#239#0#231 - +#231#231#0#232#232#232#0#240#240#240#0#240#240#240#0#239#239#239#0#236#236 - +#236#0#196#196#196#0#15#15#15#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#13#13#13#0'kkk'#0#226#226#226#0 - +#233#233#233#0#235#235#235#0#236#236#236#0#236#236#236#0#236#236#236#0#235 - +#235#235#0#232#232#232#0'~~~'#0#14#14#14#0#1#1#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#9#9#9 - +#0#30#30#30#0'}}}'#0#172#172#172#0#217#217#217#0#222#222#222#0#179#179#179#0 - +#130#130#130#0'&&&'#0#11#11#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#3#3#3#0#0#0#0#255#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#255#0#0#0#255#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#255#0#0#0#0#0#0#0 - +#0#0#0#0#255#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#255 - +#0#0#0#0#0#0#0#0#0#0#0#255#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#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#255#16#18#0#0 - +#8#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#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#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 - +#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6#6#6#0#18#18 - +#18#0#12#12#12#0#12#12#12#0#18#18#18#0#7#7#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#11#11#11#0'%%%'#0#143#143#143#0#195#195#195#0#242#242 - +#242#0#245#245#245#0#202#202#202#0#149#149#149#0'000'#0#13#13#13#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#14#14#0'|||'#0#245#245#245#0#251#251#251#0#254#254#254 - +#0#255#255#255#0#255#255#255#0#255#255#255#0#254#254#254#0#251#251#251#0#144 - +#144#144#0#15#15#15#0#1#1#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#14#14#14#0#195#195#195#0#246#246#246#0#250 - +#250#250#0#255#255#255#0#254#254#254#0#220#220#220#0#218#218#218#0#254#254 - +#254#0#255#255#255#0#255#255#255#0#252#252#252#0#214#214#214#0#17#17#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#0#0#0#255#10#10 - +#10#0'yyy'#0#244#244#244#0#189#189#189#0#147#147#147#0#227#227#227#0#238#238 - +#238#0'SSS'#0'LLL'#0#235#235#235#0#254#254#254#0#252#252#252#0#255#255#255#0 - +#251#251#251#0#145#145#145#0#13#13#13#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#239#239#239#0#244#244#244#0#146#146#146#0 - +'999'#0'rrr'#0#216#216#216#0'ZZZ'#0'WWW'#0#233#233#233#0#225#225#225#0#225 - +#225#225#0#252#252#252#0#253#253#253#0#248#248#248#0#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#2#2#2#0'yyy'#0#243#243#243#0#248 - +#248#248#0#223#223#223#0'uuu'#0'RRR'#0#208#208#208#0#230#230#230#0#227#227 - +#227#0#244#244#244#0#214#214#214#0#0#0#0#255#0#0#0#255#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#16#16#16 - +#0#172#172#172#0#243#243#243#0#239#239#239#0#238#238#238#0#221#221#221#0#208 - +#208#208#0#247#247#247#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#0#0#0#255#249#249#249#0#201#201#201#0#18#18#18#0#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#14#14#0#220#220#220#0#228#228#228#0#160#160 - +#160#0#142#142#142#0#164#164#164#0#240#240#240#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#250#250#250#0#222#222#222#0#220#220#220#0#246 - +#246#246#0#248#248#248#0#240#240#240#0#11#11#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#14#14#14#0#219#219#219#0#227#227#227#0#167#167#167#0#154 - +#154#154#0#175#175#175#0#240#240#240#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#250#250#250#0#222#222#222#0#220#220#220#0#245#245#245#0 - +#247#247#247#0#238#238#238#0#12#12#12#0#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#15#15#0#169#169#169#0#239#239#239#0#236#236#236#0#235#235#235#0 - +#240#240#240#0#245#245#245#0#254#254#254#0#255#255#255#0#255#255#255#0#254 - +#254#254#0#246#246#246#0#247#247#247#0#250#250#250#0#249#249#249#0#244#244 - +#244#0#198#198#198#0#17#17#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#2#2#2#0'sss'#0#236#236#236#0#241#241#241#0#241#241#241#0#219#219#219#0#212 - +#212#212#0#244#244#244#0#250#250#250#0#250#250#250#0#245#245#245#0#214#214 - +#214#0#224#224#224#0#248#248#248#0#246#246#246#0#241#241#241#0#148#148#148#0 - +#8#8#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#30#30#30#0 - +#229#229#229#0#238#238#238#0#233#233#233#0#207#207#207#0#214#214#214#0#241 - +#241#241#0#218#218#218#0#221#221#221#0#243#243#243#0#220#220#220#0#219#219 - +#219#0#243#243#243#0#242#242#242#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#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#9#9#0'mmm'#0#234#234#234#0#236 - +#236#236#0#232#232#232#0#237#237#237#0#241#241#241#0#210#210#210#0#212#212 - +#212#0#243#243#243#0#243#243#243#0#240#240#240#0#241#241#241#0#238#238#238#0 - +#133#133#133#0#12#12#12#0#0#0#0#0#0#0#0#0#0#0#0#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#238#238#238#0 - +#239#239#239#0#231#231#231#0#233#233#233#0#241#241#241#0#240#240#240#0#239 - +#239#239#0#236#236#236#0#196#196#196#0#15#15#15#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#255#0#0#0#255#13 - +#13#13#0'kkk'#0#226#226#226#0#233#233#233#0#235#235#235#0#236#236#236#0#236 - +#236#236#0#236#236#236#0#235#235#235#0#232#232#232#0'~~~'#0#14#14#14#0#1#1#1 - ,#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#9#9#9#0#30#30#30#0'}}}'#0#172#172#172#0#217#217 - +#217#0#222#222#222#0#179#179#179#0#130#130#130#0#0#0#0#255#11#11#11#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#3#3#3#0#16#16#16#0#0#0#0#255 - +#12#12#12#0#16#16#16#0#4#4#4#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#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#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#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#27#0#0#137'$'#0#0#208'$'#234#0#208'$' - +#234#0#136#8#188#0#136#8#188#0'X'#19'"'#0#187'?J'#0#0#0#0#0'P'#0#0#0#8#9#188 - +#0#188#8#188#0#0#0#0#0#0#0#0#0#0#0#0#0#208#8#188#0#0#0#0#0#0#0#0#0#8#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#4'y'#0#252#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#252#217#129#0#0#255#255 - +#0#1#186#183#0#3#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#3 - +'*'#169#0#0#0#0#0'k'#168#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#217'&'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#255 - +#0#0#0#255#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#255#0 - +#0#0#255#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#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#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#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#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#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#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#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 - +#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#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#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#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#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#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#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#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#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#255#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#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#255#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#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#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#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#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#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#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#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#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#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#252#3#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#217'&'#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#168#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#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 - +#190'%'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#26#0#0'p!'#234#0'p!'#234#0#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#225#25#0#0'p!'#234#0'p!'#234#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#252#3 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#217'&'#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#168#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#190'%'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#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#11#11#0#9#23#0#0'p' - +'!'#234#0'p!'#234#0#0#0#0#0#0#0#0#0#0#0#0#0#14#14#14#0#219#219#219#0#225#225 - +#225#0'ppp'#0'DDD'#0'jjj'#0#229#229#229#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#250#250#250#0#222#222#222#0#219#219#219#0#243#243#243#0 - +#247#247#247#0#238#238#238#0#12#12#12#0#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#15#15#0#169#169#169#0#239#239#239#0#230#230#230#0#221#221#221#0 - +#220#220#220#0#221#221#221#0#250#250#250#0#255#255#255#0#255#255#255#0#254 - +#254#254#0#246#246#246#0#247#247#247#0#250#250#250#0#249#249#249#0#244#244 - +#244#0#198#198#198#0#17#17#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#2#2#2#0'sss'#0#236#236#236#0#241#241#241#0#224#224#224#0#142#142#142#0'||' - +'|'#0#221#221#221#0#249#249#249#0#250#250#250#0#245#245#245#0#214#214#214#0 - +#222#222#222#0#247#247#247#0#246#246#246#0#241#241#241#0#148#148#148#0#8#8#8 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#30#30#30#0#229#229 - +#229#0#237#237#237#0#162#162#162#0'ccc'#0#147#147#147#0#226#226#226#0#205#205 - +#205#0#219#219#219#0#243#243#243#0#218#218#218#0#215#215#215#0#241#241#241#0 - +#242#242#242#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#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#9#9#0'mmm'#0#233#233#233#0#191#191#191#0#164#164#164 - +#0#220#220#220#0#235#235#235#0#191#191#191#0#206#206#206#0#242#242#242#0#242 - +#242#242#0#238#238#238#0#241#241#241#0#238#238#238#0#133#133#133#0#12#12#12#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#13 - +#13#13#0#179#179#179#0#232#232#232#0#233#233#233#0#238#238#238#0#237#237#237 - +#0#216#216#216#0#222#222#222#0#240#240#240#0#240#240#240#0#239#239#239#0#236 - +#236#236#0#196#196#196#0#15#15#15#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#13#13#13#0'kkk'#0#226#226#226 - +#0#233#233#233#0#235#235#235#0#235#235#235#0#235#235#235#0#236#236#236#0#235 - +#235#235#0#232#232#232#0'~~~'#0#14#14#14#0#1#1#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#9#9#9 - +#0#30#30#30#0'}}}'#0#172#172#172#0#217#217#217#0#222#222#222#0#179#179#179#0 - +#130#130#130#0'&&&'#0#11#11#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#3#3#3#0#16#16#16#0#13#13#13#0#12#12#12#0#16#16#16#0#4#4#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#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'(-'#0#0#8#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#6#6#6#0#18#18#18#0#12#12#12#0#12#12#12#0#18#18#18#0#7#7#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#11#11#11#0'%%%'#0#143#143 - +#143#0#195#195#195#0#242#242#242#0#245#245#245#0#202#202#202#0#248'$'#234#0 - +#240#21#199#0'X'#127#190#0#240#21#199#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#205#210#197#0#193#185#139#255#181#192#146#255#188#202#161#255#213 - +#207#170#255#218#201#160#255#212#193#152#255#206#210#197#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#211#222#221#0#189#185#137 - ,#255#189#210#175#255#184#213#183#255#153#196#153#255#144#187#137#255#219#198 - +#145#255#222#204#157#255#232#214#177#255#224#206#166#255#189#169'}'#255#210 - +#222#219#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#208#218#214#0#177#183#131#255#172#204#168 - +#255'q'#172'q'#255'l'#169'l'#255'l'#169'l'#255#130#173'p'#255#147#176's'#255 - +'l'#169'l'#255#164#178't'#255#216#187'}'#255#225#203#154#255#199#176'~'#255 - +#208#218#214#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#225#226#0#207#185#137#255#225#203#155#255#208#179'n'#255'}' - +#166'c'#255'^'#161'^'#255'^'#161'^'#255'^'#161'^'#255'^'#161'^'#255'd'#162'`' - +#255#160#173'j'#255#160#173'i'#255#212#180'n'#255#217#189#128#255#185#161'k' - +#255#212#225#226#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#196#189#156#0#224#202#155#255#205#170'['#255#210#175'f'#255#149#166']'#255 - +'Q'#154'Q'#255'Q'#154'Q'#255'Q'#154'Q'#255'Q'#154'Q'#255'Q'#154'Q'#255'Q'#154 - +'Q'#255#175#172'c'#255#210#175'f'#255#206#170'['#255#206#174'e'#255#195#188 - +#154#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#208#186#138 - +#255#212#181'o'#255#202#164'O'#255#207#171'\'#255#147#162'U'#255'F'#146'E' - +#255'D'#146'D'#255'G'#147'E'#255'y'#159'S'#255'r'#156'P'#255#164#167'['#255 - +#208#174'b'#255#207#171'\'#255#203#164'P'#255#204#166'S'#255#198#173'r'#255 - +#212#226#228#0#212#226#228#0#212#226#228#0#209#218#215#0#214#192#143#255#202 - +#162'N'#255#203#164'P'#255#205#167'V'#255#199#169'Y'#255#147#159'P'#255'[' - +#147'B'#255'K'#144'>'#255#209#177'h'#255#205#174'd'#255#204#172'_'#255#206 - +#170'['#255#205#167'V'#255#203#164'P'#255#201#161'K'#255#194#161'V'#255#207 - +#218#213#0#212#226#228#0#212#226#228#0#203#208#196#0#212#186#127#255#201#162 - +'K'#255#203#165'Q'#255#205#168'W'#255#207#171'\'#255#208#174'b'#255#210#177 - +'h'#255#173#170'`'#255'x'#156'N'#255#157#164'X'#255#174#166'Y'#255#195#169'Z' - +#255#205#168'W'#255#203#165'Q'#255#201#162'K'#255#194#155'G'#255#203#208#195 - +#0#212#226#228#0#212#226#228#0#205#213#204#0#208#180'v'#255#201#162'K'#255 - +#203#165'Q'#255#205#168'V'#255#206#171'\'#255#208#174'b'#255#208#175'f'#255 - +'a'#149'F'#255'8'#139'8'#255'8'#139'8'#255'8'#139'8'#255'<'#140'9'#255#165 - +#161'N'#255#203#165'Q'#255#201#162'K'#255#193#156'L'#255#205#212#202#0#212 - +#226#228#0#212#226#228#0#211#224#224#0#200#174'q'#255#202#164'O'#255#203#164 - +'O'#255#204#167'U'#255#206#169'Z'#255#207#172'_'#255#208#174'c'#255#141#160 - +'R'#255'9'#139'8'#255'8'#139'8'#255'8'#139'8'#255'8'#139'8'#255#152#157'K' - +#255#203#164'O'#255#201#161'J'#255#192#161'['#255#211#222#222#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#181#159'l'#255#204#167'U'#255#202#163'M'#255#203 - +#165'R'#255#205#168'W'#255#206#170'['#255#207#172'^'#255#208#173'`'#255'W' - +#146'@'#255'8'#139'8'#255'8'#139'8'#255'['#146'?'#255#194#163'P'#255#202#163 - +'M'#255#200#160'H'#255#198#176'{'#255#212#226#228#0#212#226#228#0#212#226#228 - +#0#212#226#228#0#205#210#199#0#188#154'P'#255#201#161'J'#255#202#163'N'#255 - +#204#165'R'#255#205#167'V'#255#205#169'X'#255#206#169'Z'#255'o'#150'E'#255'8' - +#139'8'#255'`'#147'@'#255#197#164'P'#255#202#163'N'#255#201#161'J'#255#195 - +#160'S'#255#205#209#196#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#196#190#156#0#194#156'I'#255#201#161'J'#255#202#163'M' - +#255#203#164'P'#255#204#166'S'#255#204#166'T'#255#150#156'I'#255'9'#139'8' - +#255#194#163'O'#255#202#163'N'#255#201#161'J'#255#197#159'L'#255#196#190#156 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#197#188#154#0#186#150'J'#255#201#160'H'#255#201#161 - +'K'#255#202#162'M'#255#202#163'N'#255#198#162'N'#255']'#145'='#255#201#161'K' - +#255#201#160'H'#255#196#160'R'#255#197#188#154#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#211#225#227#0#209 - +#222#224#0#206#220#222#0#197#200#185#0#162#139'T'#255#181#147'H'#255#197#158 - +'G'#255#200#160'H'#255#200#160'H'#255#183#157'E'#255#192#157'R'#255#192#169 - +'r'#255#197#201#184#0#206#220#222#0#209#222#224#0#211#225#227#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#210#224#226#0#206#220#222#0#203#216#218#0#200 - +#213#215#0#196#209#211#0#193#206#207#0#189#197#194#0#182#178#148#0#189#172 - +#132#255#188#171#132#255#182#175#147#0#188#196#193#0#193#206#207#0#195#208 - +#210#0#199#212#214#0#202#215#217#0#205#219#221#0#210#223#225#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#211#225#227#0#211#225#227#0#211#225 - +#227#0#211#225#227#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - ,#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0 - +#0#255#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#167#191#195#0#252#254#254#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - ,#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0#252#254#254#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#0#0#0#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#0#0#0#0#0#2#3#3#0'&))'#0#165#176#178#0#212 - +#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0#0#0#0#255#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0 - +#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - ,#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#167#191#195#0#252#254#254#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0#206#220#222#0'y'#129#130#0'#%' - +'&'#0#212#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228 - +#0#212#226#228#0#167#191#195#0#252#254#254#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0#212#226#228#0#203#216#218#0#3 - +#4#4#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#0 - +#0#0#0#0#0#0#0#22#24#24#0#148#158#159#0#212#226#228#0#212#226#228#0#186#199 - +#200#0'145'#0#2#3#3#0#0#0#0#0#212#226#228#0#212#226#228#0#192#205#207#0'9=>' - +#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#139#148#149#0' ""'#0 - +#3#4#4#0#26#27#28#0#129#137#139#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0 - ,#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#167#191#195#0#252#254#254#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#0#0#0#0#212#226#228#0#207#221#223#0'y'#129#130#0'#%&'#0#212 - +#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#210#224#226#0#160#170#172#0#27#29#30#0#212#226#228#0#212#226 - +#228#0'=AA'#0'cij'#0#207#221#223#0#212#226#228#0#212#226#228#0#212#226#228#0 - +'CHH'#0#133#142#143#0#206#220#222#0#151#161#163#0' ##'#0#212#226#228#0#212 - +#226#228#0#12#12#13#0#160#171#173#0#208#222#224#0#187#199#201#0'RXY'#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#167#191 - +#195#0#252#254#254#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0 - +#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255 - +#212#226#228#0#212#226#228#0#149#159#160#0' ##'#0#2#3#3#0#0#0#0#0#1#1#1#0#212 - +#226#228#0#212#226#228#0#7#8#8#0#198#211#213#0#212#226#228#0#212#226#228#0#0 - +#0#0#255#212#226#228#0#9#10#10#0#0#0#0#0#0#0#0#0#0#0#0#0#1#1#1#0#212#226#228 - +#0#212#226#228#0']cd'#0'*-.'#0'X^_'#0#155#165#166#0#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - ,#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0#252#254#254#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#0#0#0#0#255#0#0#0#255 - +#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0 - +#212#226#228#0#18#19#20#0#150#160#161#0#207#221#223#0#201#214#216#0#0#0#0#0 - +#212#226#228#0#212#226#228#0#8#9#9#0#198#211#213#0#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#8#9#9#0#190#203#205#0#0#0#0#255#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#183#195#197#0'x'#128#129#0'034'#0 - +'KPP'#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#212 - +#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#0#0#0#255#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#0#0#0#255 - +#212#226#228#0#212#226#228#0#0#0#0#255#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0 - +#255#0#0#0#255#212#226#228#0#0#0#0#255#212#226#228#0#0#0#0#255#0#0#0#255#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0 - +#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0#252#254#254#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0 - +#0#212#226#228#0#212#226#228#0#12#13#13#0#160#170#172#0#201#214#216#0'\bc'#0 - +#0#0#0#0#212#226#228#0#212#226#228#0'=AA'#0'ekl'#0#207#221#223#0#212#226#228 - +#0#212#226#228#0#212#226#228#0'DII'#0'NST'#0#198#211#213#0#188#200#202#0'LQQ' - +#0#212#226#228#0#212#226#228#0'UZ['#0#186#199#200#0#209#222#224#0#164#175#176 - +#0#12#12#13#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0 - +#252#254#254#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255 - +#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#0#0#0#0#212#226#228#0#212#226#228#0#127#136#137#0#13#14#14#0#12#13#13 - +#0'jqr'#0#0#0#0#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0 - +#0#0#0#212#226#228#0#212#226#228#0#195#208#210#0'CHH'#0#7#8#8#0#27#29#30#0 - ,#139#148#149#0#212#226#228#0#212#226#228#0#128#136#138#0#25#27#27#0#2#3#3#0 - +' ""'#0#141#150#151#0#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228 - +#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#0#0#0#255#0#0#0#255#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0#252#254#254#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#167 - +#191#195#0#252#254#254#0#212#226#228#0#212#226#228#0#212#226#228#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - ,#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#167#191#195#0#252 - +#254#254#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226 - +#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0 - +#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212#226#228#0#212 - +#226#228#0#167#191#195#0#252#254#254#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0 - +#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209 - +#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0 - +#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209 - +#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0 - +#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209 - +#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0 - +#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209 - +#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0 - +#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209 - ,#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223#225#0#209#223 - +#225#0#209#223#225#0#240'$'#234#0'p'''#186#0'p'''#186#0'p'''#186#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6 - +#6#6#0#18#18#18#0#12#12#12#0#12#12#12#0#18#18#18#0#7#7#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#11#11#11#0'%%%'#0#143#143#143#0#195#195 - +#195#0#242#242#242#0#245#245#245#0#202#202#202#0#149#149#149#0'000'#0#13#13 - +#13#0#0#0#0#0#0#0#0#0'ddd'#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#14#14#14#0'|||'#0#245#245#245#0#251#251#251 - +#0#254#254#254#0#255#255#255#0#255#255#255#0#255#255#255#0#219#219#219#255 - +#222#222#222#255#193#193#193#255'555'#0#1#1#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#14#14#14#0#195#195#195#0 - +#247#247#247#0#252#252#252#0#221#221#221#0#222#222#222#255#214#214#214#255 - +#208#208#208#255#194#194#194#255#231#231#231#0#255#255#255#0#252#252#252#0 - +#214#214#214#0#17#17#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#0#0#0#0'TTT'#0#200#200#200#255#180#180#180#255#208#208#208#255 - +#202#202#202#255#196#196#196#255#171#171#171#255'www'#0#176#176#176#0#253#253 - +#253#0#253#253#253#0#252#252#252#0#255#255#255#0#251#251#251#0#145#145#145#0 - +#13#13#13#0#0#0#0#0#3#3#3#0'RRR'#255'```'#255#204#204#204#255#151#151#151#255 - +#142#142#142#255#201#201#201#255#196#196#196#255#190#190#190#255#164#164#164 - +#255#160#160#160#0'...'#0'iii'#0#213#213#213#0'jjj'#0#188#188#188#0#248#248 - +#248#0#224#224#224#0#225#225#225#0#248#248#248#0#153#153#153#255#151#151#151 - +#255#145#145#145#255#134#134#134#255#203#203#203#255#197#197#197#255'yyy'#255 - +#173#173#173#255#160#160#160#255'LLL'#0#2#2#2#0'yyy'#0#243#243#243#0#248#248 - +#248#0#222#222#222#0'iii'#0'EEE'#0#205#205#205#0#232#232#232#0#156#156#156 - +#255#153#153#153#255'}}}'#255#127#127#127#255#136#136#136#255'|||'#255#189 - +#189#189#255#159#159#159#255#167#167#167#255'VVV'#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#16#16#16#0#172#172#172#0#242#242#242#0#236#236#236#0#157#157 - +#157#255#154#154#154#255'xxx'#255'ZZZ'#255'WWW'#255'|||'#255#128#128#128#255 - +'ppp'#255#175#175#175#255#200#200#200#255#255#255#255#0#249#249#249#0#201#201 - +#201#0#18#18#18#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'RRR'#255#153#153 - +#153#255'{{{'#255'[[['#255'TTT'#255'PPP'#255'QQQ'#255#127#127#127#255'xxx' - +#255'nnn'#255#252#252#252#0#255#255#255#0#250#250#250#0#222#222#222#0#220#220 - +#220#0#246#246#246#0#248#248#248#0#240#240#240#0#11#11#11#0'NNN'#255#153#153 - +#153#255'|||'#255'~~~'#255'eee'#255'www'#255']]]'#255'III'#255'www'#255'vvv' - +#255'^^^'#255#154#154#154#0#237#237#237#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#250#250#250#0#222#222#222#0#164#164#164#255#161#161#161 - +#255#127#127#127#255']]]'#255#131#131#131#255'ppp'#255'ttt'#255'NNN'#255'mmm' - +#255'zzz'#255'RRR'#255'!!!'#0#169#169#169#0#238#238#238#0#232#232#232#0#231 - +#231#231#0#236#236#236#0#241#241#241#0#253#253#253#0#185#185#185#255#163#163 - +#163#255#128#128#128#255']]]'#255'WWW'#255#168#168#168#255#149#149#149#255 - +#139#139#139#255'|||'#255'zzz'#255'UUU'#255#26#26#26#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#2#2#2#0'sss'#0#236#236#236#0#183#183#183#0#164#164#164#255#131#131 - +#131#255']]]'#255'XXX'#255#148#148#148#255'ooo'#255'KKK'#255'___'#255'yyy' - +#255'nnn'#255#192#192#192#0#241#241#241#0#148#148#148#0#8#8#8#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0'((('#0#160#160#160#255#148#148#148#255'iii'#255'XXX'#255 - +'WWW'#255#141#141#141#255'LLL'#255'XXX'#255'vvv'#255'nnn'#255#167#167#167#0 - +#243#243#243#0#220#220#220#0#219#219#219#0#243#243#243#0#242#242#242#0#237 - +#237#237#0'---'#0#0#0#0#0'vvv'#255#149#149#149#255#150#150#150#255#128#128 - +#128#255'^^^'#255'QQQ'#255'MMM'#255'TTT'#255'sss'#255'ooo'#255#168#168#168#0 - +#229#229#229#0#237#237#237#0#241#241#241#0#210#210#210#0#211#211#211#0#242 - +#242#242#0#243#243#243#0#240#240#240#0#241#241#241#0#174#174#174#255#151#151 - +#151#255#145#151#147#255#140#156#146#255'{{{'#255'VVV'#255'QQQ'#255'ppp'#255 - +'eee'#255')))'#0#0#0#0#0#0#0#0#0#13#13#13#0#179#179#179#0#233#233#233#0#236 - +#236#236#0#238#238#238#0#239#239#239#0#231#231#231#0#232#232#232#0#183#183 - +#183#0#161#161#161#255#136#173#147#255#129#197#150#255#134#134#134#255'{{{' - +#255'ttt'#255'hhh'#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#13#13#13#0'kkk'#0#226#226#226#0#233#233#233#0#163#163#163 - +#255#144#146#144#255#141#147#143#255'~~~'#255'xxx'#255'rrr'#255'iii'#255#14 - +#14#14#0#1#1#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#1#1#1#0'HHH'#255'ttt'#255#127#127#127#255'rrr' - +#255#141#141#141#255#219#219#219#0#178#178#178#0#130#130#130#0'&&&'#0#11#11 - +#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#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#8#8#8#0'"""'#0#16#16#16#0#0#0#0#0#0#0#0#0#3#3#3#0#16#16#16#0 - +#13#13#13#0#12#12#12#0#16#16#16#0#4#4#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#8#9#0#0#8#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#6#6#6#0#18#18#18 - +#0#12#12#12#0#12#12#12#0#18#18#18#0#7#7#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#11#11#11#0'%%%'#0#143#143#143#0#195#195#195#0#242#242#242 - +#0#245#245#245#0#202#202#202#0#149#149#149#0'000'#0#13#13#13#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#14#14#0'|||'#0#245#245#245#0#251#251#251#0#254#254#254#0#0 - +#0#0#255#255#255#255#0#255#255#255#0#0#0#0#255#0#0#0#255#144#144#144#0#15#15 - +#15#0#1#1#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#14#14#14#0#0#0#0#255#246#246#246#0#250#250#250#0#0#0#0#255#0 - +#0#0#255#0#0#0#255#0#0#0#255#254#254#254#0#255#255#255#0#255#255#255#0#252 - +#252#252#0#214#214#214#0#17#17#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#255#0#0#0#0#10#10#10#0#0#0#0#255#244#244#244#0#189#189 - +#189#0#0#0#0#255#227#227#227#0#238#238#238#0'SSS'#0'LLL'#0#235#235#235#0#254 - +#254#254#0#252#252#252#0#255#255#255#0#251#251#251#0#145#145#145#0#13#13#13#0 - +#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0 - +#255#239#239#239#0#244#244#244#0#146#146#146#0'999'#0'rrr'#0#216#216#216#0'Z' - +'ZZ'#0'WWW'#0#233#233#233#0#225#225#225#0#225#225#225#0#252#252#252#0#253#253 - +#253#0#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#255#0#0 - +#0#0#0#0#0#0#2#2#2#0'yyy'#0#243#243#243#0#248#248#248#0#223#223#223#0'uuu'#0 - +'RRR'#0#208#208#208#0#230#230#230#0#227#227#227#0#244#244#244#0#214#214#214#0 - +#0#0#0#255#0#0#0#255#254#254#254#0#249#249#249#0#0#0#0#255#9#9#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#16#16#16#0#172#172#172#0#243#243#243#0 - +#239#239#239#0#238#238#238#0#221#221#221#0#208#208#208#0#247#247#247#0#255 - +#255#255#0#255#255#255#0#254#254#254#0#245#245#245#0#246#246#246#0#251#251 - +#251#0#255#255#255#0#249#249#249#0#201#201#201#0#18#18#18#0#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#14#14#0#220#220#220#0#228#228#228#0#160#160 - +#160#0#142#142#142#0#164#164#164#0#240#240#240#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#250#250#250#0#222#222#222#0#220#220#220#0#246 - +#246#246#0#248#248#248#0#240#240#240#0#11#11#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#14#14#14#0#219#219#219#0#227#227#227#0#167#167#167#0#154 - +#154#154#0#175#175#175#0#240#240#240#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#250#250#250#0#222#222#222#0#220#220#220#0#245#245#245#0 - +#247#247#247#0#238#238#238#0#12#12#12#0#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#15#15#0#169#169#169#0#239#239#239#0#236#236#236#0#235#235#235#0 - +#240#240#240#0#245#245#245#0#254#254#254#0#255#255#255#0#255#255#255#0#254 - +#254#254#0#246#246#246#0#247#247#247#0#250#250#250#0#249#249#249#0#244#244 - +#244#0#198#198#198#0#17#17#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#2#2#2#0'sss'#0#236#236#236#0#241#241#241#0#241#241#241#0#219#219#219#0#212 - +#212#212#0#244#244#244#0#250#250#250#0#250#250#250#0#245#245#245#0#214#214 - ,#214#0#224#224#224#0#248#248#248#0#246#246#246#0#241#241#241#0#148#148#148#0 - +#8#8#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#30#30#30#0 - +#229#229#229#0#238#238#238#0#233#233#233#0#207#207#207#0#214#214#214#0#241 - +#241#241#0#218#218#218#0#221#221#221#0#243#243#243#0#220#220#220#0#219#219 - +#219#0#243#243#243#0#242#242#242#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#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#9#9#0'mmm'#0#234#234#234#0#236 - +#236#236#0#0#0#0#255#0#0#0#255#241#241#241#0#0#0#0#255#212#212#212#0#243#243 - +#243#0#243#243#243#0#240#240#240#0#241#241#241#0#238#238#238#0#133#133#133#0 - +#12#12#12#0#0#0#0#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#179#179#179#0#233#233#233#0#0#0#0#255#238#238#238#0 - +#239#239#239#0#231#231#231#0#233#233#233#0#241#241#241#0#240#240#240#0#239 - +#239#239#0#236#236#236#0#196#196#196#0#15#15#15#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#255#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#0#13#13#13#0 - +'kkk'#0#226#226#226#0#233#233#233#0#235#235#235#0#236#236#236#0#236#236#236#0 - +#236#236#236#0#235#235#235#0#232#232#232#0'~~~'#0#14#14#14#0#0#0#0#255#0#0#0 - +#0#0#0#0#0#0#0#0#255#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#9#9#9#0#30#30#30#0'}}}'#0#172#172#172#0#217#217#217#0#222 - +#222#222#0#179#179#179#0#0#0#0#255#0#0#0#255#11#11#11#0#0#0#0#255#0#0#0#0#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#3#3#3#0#16#16#16#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#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#16#18#0#0 - +#177#30#0#0#184'$'#234#0#184'$'#234#0'0E'#204#0'0E'#204#0'X'#19'"'#0#0#255'Q' - +#0#0#0#0#0'P'#0#0#0#176'E'#204#0'dE'#204#0#0#0#0#0#0#0#0#0#0#0#0#0'xE'#204#0 - +#0#0#0#0#0#0#0#0#8#0#0#0#225#225#225#0#225#225#225#0#225#225#225#0#225#225 - +#225#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#4'y'#0#252#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#252#217#129#0#0#255#255#0#1#186#183#0#3#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#3'*'#169#0#0#0#0#0'k'#168 - +#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#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#217'&'#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#252#3#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#255#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#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#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 - +#255#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#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#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#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#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#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#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 - +#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#255#0#0#0#255#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#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#255#0#0#0#255#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#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#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#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#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#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#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#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#255#0#0#0#0#0#0#0#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#255#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#255#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#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#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#252#3#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#217'&'#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'y'#168#0#0#0#0#0#0#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#9#190'%'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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'#20#0#0#144'$'#234#0#144'$' - +#234#0#176'O'#204#0#176'O'#204#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#255#0#0#0#9 - +#20#0#0#144'$'#234#0#144'$'#234#0#216'O'#204#0#216'O'#204#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#252#3#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#0#0#0#0#255#217'&'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#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'y'#168#0#0#0#0#0#0#0#0#0#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#255#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#9#190'%'#0#0#0#0#0#0#0#0#255#0#0#0#0#0#0#0#0#0#0#0#255#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#255#0#0#0#255#0#0#0#0 - +#0#0#0#255#0#0#0#0#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#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'1'#17#0#0#128'$'#234#0#128'$'#234#0#176'R'#204#0#176'R'#204#0#0 - +#0#0#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#255#0#0#0#255#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#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#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#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#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#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#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#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#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#255#0#0#0#255#0#0#0#255#0#0#0#255#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#255#0#0#0#255#0#0#0 - +#255#0#0#0#255#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 - +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255 - +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 - +#255#0#255#255#255#0'A'#6#0#0#240'#'#234#0#240'#'#234#0#160']'#204#0#160']' - +#204#0#214#214#214#0#222#222#222#0#251#251#251#0#254#254#254#0#249#249#249#0 - +#153#153#153#0#9#9#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#16#16 - +#16#0#172#172#172#0#243#243#243#0#249#249#249#0#251#251#251#0#246#246#246#0 - +#245#245#245#0#254#254#254#0#255#255#255#0#255#255#255#0#254#254#254#0#245 - +#245#245#0#246#246#246#0#249#249#249#0#254#254#254#0#249#249#249#0#201#201 - +#201#0#18#18#18#0#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#14#14#0 - +#220#220#220#0#242#242#242#0#240#240#240#0#218#218#218#0#223#223#223#0#251 - +#251#251#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#248#248 - +#248#0#214#214#214#0#205#205#205#0#228#228#228#0#247#247#247#0#240#240#240#0 - +#11#11#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#14#14#14#0#219 - +#219#219#0#241#241#241#0#237#237#237#0#216#216#216#0#222#222#222#0#250#250 - +#250#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#246#246#246#0 - +#200#200#200#0#189#189#189#0#221#221#221#0#247#247#247#0#238#238#238#0#12#12 - +#12#0#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#15#15#0#169#169#169 - +#0#239#239#239#0#244#244#244#0#245#245#245#0#245#245#245#0#246#246#246#0#253 - +#253#253#0#255#255#255#0#255#255#255#0#248#248#248#0#223#223#223#0#235#235 - +#235#0#244#244#244#0#246#246#246#0#244#244#244#0#198#198#198#0#17#17#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#2#2#2#0'sss'#0#236#236#236#0#241 - +#241#241#0#242#242#242#0#221#221#221#0#185#185#185#0#217#217#217#0#229#229 - +#229#0#232#232#232#0#211#211#211#0'sss'#0#153#153#153#0#230#230#230#0#246#246 - +#246#0#241#241#241#0#148#148#148#0#8#8#8#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#30#30#30#0#229#229#229#0#238#238#238#0#239#239#239#0 - +#204#204#204#0#146#146#146#0#200#200#200#0'___'#0'lll'#0#215#215#215#0'~~~'#0 - +'\\\'#0#170#170#170#0#241#241#241#0#237#237#237#0'---'#0#0#0#0#0#0#0#0#0#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#9#9#0'mmm'#0#234#234#234#0#237 - +#237#237#0#232#232#232#0#229#229#229#0#211#211#211#0'444'#0'EEE'#0#225#225 - +#225#0#217#217#217#0#151#151#151#0#193#193#193#0#238#238#238#0#133#133#133#0 - +#12#12#12#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#13#13#13#0#179#179#179#0#233#233#233#0#236#236#236#0#238#238#238#0#222 - +#222#222#0'aaa'#0'ooo'#0#230#230#230#0#240#240#240#0#236#236#236#0#235#235 - +#235#0#196#196#196#0#15#15#15#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#13#13#13#0'kkk'#0#226#226#226#0 - +#233#233#233#0#234#234#234#0#217#217#217#0#220#220#220#0#236#236#236#0#235 - +#235#235#0#232#232#232#0'~~~'#0#14#14#14#0#1#1#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#9#9#9 - +#0#30#30#30#0'}}}'#0#172#172#172#0#217#217#217#0#222#222#222#0#179#179#179#0 - +#130#130#130#0'&&&'#0#11#11#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#3#3#3#0#16#16#16#0#13#13#13#0#12#12#12#0#16#16#16#0#4#4#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#0#0#0 - +#0#0#0#0#10'TPopupMenu'#10'SearchMenu'#4'left'#3#240#2#3'top'#3#240#0#0#9'TM' - +'enuItem'#11'SrchArtItem'#7'Caption'#6#6'Artist'#7'Checked'#9#7'OnClick'#7#16 - +'SrchArtItemClick'#0#0#9'TMenuItem'#13'SrchTitleItem'#7'Caption'#6#5'Title'#7 - +'Checked'#9#7'OnClick'#7#18'SrchTitleItemClick'#0#0#9'TMenuItem'#13'SrchAlbu' - +'mItem'#7'Caption'#6#5'Album'#7'Checked'#9#7'OnClick'#7#18'SrchAlbumItemClic' - +'k'#0#0#9'TMenuItem'#12'SrchFileItem'#7'Caption'#6#8'Filename'#7'OnClick'#7 - +#17'SrchFileItemClick'#0#0#0#10'TPopupMenu'#16'NetworktreePopup'#9'AutoPopup' - +#8#3'top'#3#16#2#0#9'TMenuItem'#10'MenuItem28'#7'Caption'#6#18'Play radio st' - ,'ation'#0#0#9'TMenuItem'#10'MenuItem32'#7'Caption'#6#9'Info/Edit'#7'OnClick' - +#7#15'MenuItem32Click'#0#0#9'TMenuItem'#10'MenuItem29'#7'Caption'#6#1'-'#0#0 - +#9'TMenuItem'#10'MenuItem25'#7'Caption'#6#20'Add radio station...'#7'OnClick' - +#7#15'MenuItem25Click'#0#0#9'TMenuItem'#13'MIremoveRadio'#7'Caption'#6#20'Re' - +'move radio station'#7'OnClick'#7#18'MIremoveRadioClick'#0#0#0#9'TTrayIcon'#8 - +'TrayIcon'#9'PopUpMenu'#7#13'PopupMenuTray'#9'Icon.Data'#10#130#4#0#0'~'#4#0 - +#0#0#0#1#0#1#0#16#16#0#0#1#0' '#0'h'#4#0#0#22#0#0#0'('#0#0#0#16#0#0#0' '#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#162#230#226#255#162#230#226#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 - +#161#230#226#255#157#227#223#255#153#225#220#255#150#223#219#255#148#222#217 - +#255#148#222#217#255#150#223#218#255#153#225#220#255#156#227#223#255#161#230 - +#225#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#158#228#224#255#147#219#210 - +#255#136#209#195#255#132#208#194#255#129#206#194#255#131#211#205#255#132#212 - +#207#255#135#214#209#255#139#216#211#255#143#213#208#255#151#224#219#255#158 - +#228#224#255#164#232#228#255#0#0#0#0#0#0#0#0#162#230#226#255#154#226#221#255 - +'n'#192#136#255'X'#171#132#255'a'#184#138#255'a'#188'p'#255'^'#173'{'#255'e' - +#183#143#255'h'#185#147#255'n'#166#139#255#127#128#134#255#133#170#173#255 - +#154#225#221#255#161#230#226#255#0#0#0#0#0#0#0#0#163#231#227#255#156#227#223 - +#255'o'#192#136#255'-}'#178#255#30'k'#161#255'L'#150#138#255'R'#169'G'#255'^' - +#197'T'#255'\'#200'R'#255'U'#193'M'#255'k'#152'n'#255#132#135#145#255#156#225 - +#221#255#163#231#227#255#0#0#0#0#0#0#0#0#0#0#0#0#163#231#227#255'o'#192#129 - +#255'0'#128#179#255#31's'#173#255'O'#147'y'#255'O'#150'D'#255'd'#194'Y'#255 - +'U'#172'K'#255'I'#161'A'#255'_'#185'b'#255#152#214#211#255#163#231#227#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'O'#161#164#255'C'#146#181#255 - +'L'#144'c'#255']'#162'P'#255']'#164'Q'#255'S'#156'I'#255'I'#150'A'#255'U'#178 - +'N'#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'T' - +#176'G'#255']'#183'P'#255'h'#188'X'#255'~'#208'n'#255'f'#170'Y'#255'['#161'P' - +#255'Q'#159'H'#255'L'#162'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']'#195'S'#255'r'#208'd'#255#127#210'o'#255#142#219'{' - +#255#137#213'w'#255'~'#212'n'#255'i'#201']'#255'K'#158'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'`'#196'W'#255#143#229#211 - +#255#144#230#215#255#137#221#208#255#127#212#196#255'{'#215#195#255't'#212 - +#160#255'I'#151'?'#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'`'#197'U'#255#154#237#241#255#144#226#231#255'^'#154#156#255'S' - +#144#145#255']'#172#170#255'r'#213#197#255'T'#174'G'#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'X'#183'L'#255#143#229#213#255 - +#129#202#207#255'Y'#146#148#255'O'#137#137#255'W'#160#159#255'q'#213#198#255 - +'U'#178'H'#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'S'#176'G'#255#132#223#183#255#138#217#222#255'_'#155#157#255'T'#145#145 - +#255'g'#189#187#255'p'#212#189#255'R'#175'E'#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'O'#169'A'#255'm'#206#131#255#146#230#236 - +#255#135#222#225#255'|'#214#215#255'w'#217#216#255'l'#209#160#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'U'#183 - +'I'#255'c'#199'h'#255'n'#208'~'#255'n'#208'~'#255'c'#199'k'#255'S'#181'I'#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'N'#163'?'#255'T'#178'G'#255'R'#175'F'#255'P'#174'D'#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 - +'X'#255#0#0#169#255#0#0#161#255#0#0'P'#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#7'Visible'#9#10'OnDblClick'#7#16'TrayIconDblC' - +'lick'#4'left'#3'p'#1#3'top'#3'p'#1#0#0#10'TImageList'#15'ImageListNormal'#6 - +'Height'#2#24#5'Width'#2#24#4'left'#3#144#1#3'top'#3'p'#1#6'Bitmap'#10#14'Z' - +#0#0'Li'#10#0#0#0#24#0#0#0#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#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#132#199#188#255#152#201#193#255#146#203#193#255#132#197#186 - +#255'~'#197#185#255#128#197#187#255#137#196#187#255#145#196#185#255#142#196 - +#184#255#133#193#181#255#148#204#194#255#169#228#221#255#167#228#221#255#142 - +#198#189#255's'#180#166#255'p'#174#160#255'y'#183#171#255#133#195#185#255#146 - +#195#186#255#134#191#182#255#0#0#0#0#0#0#0#0#0#0#0#0'w'#190#180#255'y'#188 - +#177#255#134#194#183#255#138#199#188#255'}'#193#180#255'u'#190#178#255't'#190 - +#178#255#139#198#187#255#158#204#195#255#157#202#195#255#148#201#192#255#138 - +#199#189#255#135#216#207#255#150#225#217#255#141#196#186#255'p'#175#163#255 - +'l'#174#161#255'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185#255 - ,'x'#199#188#255#0#0#0#0#0#0#0#0'q'#186#174#255'r'#183#171#255#129#188#177#255 - +#138#197#188#255'~'#194#184#255'q'#185#173#255'm'#184#170#255#144#202#193#255 - +#168#217#211#255#166#214#208#255#168#211#204#255#132#195#184#255'm'#196#183 - +#255#127#207#195#255#131#190#178#255't'#176#164#255'l'#176#162#255#128#191 - +#179#255#133#189#179#255'r'#179#167#255'`'#188#174#255'n'#191#178#255#0#0#0#0 - +#0#0#0#0'r'#185#172#255'm'#180#167#255'}'#185#174#255#150#202#194#255#143#200 - +#191#255'v'#187#175#255's'#186#174#255#146#199#192#255#156#213#207#255#159 - +#214#208#255#173#208#202#255#138#189#178#255'q'#184#172#255'u'#193#181#255'x' - +#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185#173#255'c' - +#172#157#255'c'#175#162#255'p'#180#166#255#0#0#0#0#0#0#0#0'~'#189#179#255'r' - +#183#170#255'~'#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255 - +#135#190#181#255#140#187#178#255#134#195#188#255#145#201#195#255#154#194#188 - +#255#140#182#174#255#127#180#170#255'|'#186#176#255#131#194#183#255#139#198 - +#188#255#141#201#191#255#141#200#190#255'w'#179#168#255'b'#167#151#255'a'#169 - +#153#255'm'#178#164#255#0#0#0#0#0#0#0#0#142#198#189#255#130#191#179#255#140 - +#191#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161#195#189#255 - +#142#183#177#255#129#188#179#255#129#192#183#255'|'#188#177#255'|'#182#171 - +#255#127#177#167#255#138#182#173#255#145#197#188#255#145#206#196#255'~'#202 - +#193#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255'q'#180 - +#167#255#0#0#0#0#0#0#0#0#145#204#195#255#145#202#192#255#157#203#196#255#161 - +#217#209#255#146#223#216#255#166#213#210#255#177#199#197#255#139#188#180#255 - +'x'#188#176#255'u'#192#180#255'i'#188#174#255'f'#183#168#255'u'#177#165#255 - +#137#182#171#255#141#189#181#255#129#193#182#255'_'#199#187#255'e'#200#187 - +#255'|'#184#169#255'i'#169#153#255'c'#169#155#255'u'#181#170#255#0#0#0#0#0#0 - +#0#0#154#212#203#255#172#220#214#255#179#217#211#255#137#210#199#255's'#208 - +#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o'#188#175#255'z' - +#189#178#255'w'#186#175#255'q'#186#172#255'{'#191#178#255#141#192#184#255#141 - +#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163#255'l' - +#172#158#255'n'#177#162#255'|'#183#170#255#0#0#0#0#0#0#0#0#150#218#210#255 - +#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186 - +#255#134#194#183#255'x'#192#179#255'u'#183#172#255#134#183#173#255#134#182 - +#173#255#135#186#178#255#131#197#188#255#134#204#196#255#142#189#182#255'k' - +#176#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}' - +#189#176#255#130#186#173#255#0#0#0#0#0#0#0#0'u'#215#206#255#144#218#211#255 - +#152#209#200#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255 - +'{'#192#181#255#136#185#175#255#142#186#176#255#136#185#176#255#128#182#173 - +#255's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148 - +#255'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198#188#255#131#192#182 - +#255#0#0#0#0#0#0#0#0'f'#208#194#255'r'#209#196#255#130#202#190#255'}'#195#183 - +#255'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197#194 - +#255#155#200#196#255#137#200#190#255'p'#183#170#255'n'#182#170#255'j'#191#176 - +#255'^'#178#161#255'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186#171 - +#255'v'#189#176#255'b'#196#183#255's'#196#187#255#0#0#0#0#0#0#0#0'_'#196#182 - +#255'b'#194#178#255's'#196#181#255#128#195#183#255#133#184#176#255'}'#186#174 - +#255'w'#194#180#255#142#197#187#255#140#203#197#255#134#212#203#255'}'#207 - +#193#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p'#169 - +#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a'#178#162#255'M'#184 - +#167#255'c'#190#176#255#0#0#0#0#0#0#0#0'_'#188#176#255']'#188#172#255'j'#188 - +#175#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|' - +#188#178#255'j'#197#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255'g' - +#179#164#255'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u' - +#194#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255'['#177#161#255#0#0 - +#0#0#0#0#0#0'x'#191#178#255'h'#188#173#255'k'#189#174#255#142#199#189#255#161 - +#201#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_' - +#192#176#255'j'#182#167#255'd'#176#161#255'`'#176#160#255'j'#176#163#255's' - +#188#175#255#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177#161#255'M' - +#163#144#255'K'#165#145#255'R'#168#151#255#0#0#0#0#0#0#0#0#140#202#191#255'w' - +#194#181#255'm'#187#172#255#141#201#190#255#159#205#201#255#150#206#198#255 - +#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179#164#255 - +'d'#176#161#255']'#175#158#255'p'#179#166#255'v'#190#178#255'~'#191#181#255 - +'i'#199#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255':'#159#136#255 - +'O'#167#148#255#0#0#0#0#0#0#0#0#145#209#199#255#133#204#192#255'|'#195#184 - +#255#141#205#197#255#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186 - +#170#255'c'#173#158#255'i'#175#160#255'l'#181#167#255'c'#182#167#255'g'#185 - ,#170#255#127#193#183#255'l'#184#169#255']'#178#163#255'K'#187#169#255'D'#181 - +#162#255'M'#163#143#255'='#153#131#255'@'#161#139#255']'#173#156#255#0#0#0#0 - +#0#0#0#0#136#211#201#255#142#214#204#255#157#210#204#255#149#212#206#255'z' - +#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255'X'#176#159#255'l' - +#176#163#255'l'#187#174#255'`'#188#172#255'l'#191#178#255'w'#194#184#255'c' - +#178#162#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255'H' - +#159#139#255'`'#176#158#255't'#182#169#255#0#0#0#0#0#0#0#0'['#203#190#255'o' - +#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']'#179#166#255'c' - +#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187#171#255'e'#193#177#255'\' - +#185#166#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163#144#255'2' - +#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195#181#255'z' - +#188#174#255#0#0#0#0#0#0#0#0'<'#193#175#255'G'#199#183#255'_'#193#177#255'\' - +#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255#131 - +#194#184#255#128#202#190#255's'#196#181#255'g'#178#163#255'\'#176#162#255'I' - +#179#160#255'G'#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q' - +#192#178#255'm'#191#175#255'q'#197#186#255's'#185#174#255#0#0#0#0#0#0#0#0'@' - +#186#166#255'5'#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255'X' - +#193#177#255'_'#176#162#255't'#179#169#255#130#194#188#255'{'#200#192#255'o' - +#185#176#255'i'#173#161#255'U'#170#153#255'?'#173#152#255'@'#174#152#255'@' - +#165#143#255'K'#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255'K' - +#192#177#255']'#179#167#255#0#0#0#0#0#0#0#0'D'#181#161#255':'#175#155#255'I' - +#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179#163#255'`' - +#176#162#255'['#185#173#255'T'#184#171#255'R'#174#159#255'['#172#156#255'N' - +#168#150#255'H'#178#159#255'W'#187#168#255'`'#184#167#255'k'#192#176#255'b' - +#183#166#255'T'#170#150#255'@'#174#154#255'('#178#156#255'N'#178#162#255#0#0 - +#0#0#0#0#0#0#0#0#0#0'H'#180#162#255'U'#179#163#255'_'#184#169#255'r'#199#186 - +#255'm'#202#187#255'e'#191#176#255'Z'#184#167#255'M'#189#171#255'?'#181#161 - +#255'C'#172#153#255'S'#174#155#255'R'#174#153#255'V'#187#170#255'e'#193#178 - +#255'm'#196#182#255'k'#201#187#255'a'#182#165#255'N'#162#145#255'5'#156#136 - +#255')'#161#138#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#152#201#193 - +#255#146#203#193#255#132#197#186#255'~'#197#185#255#128#197#187#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#134#194 - +#183#255#138#199#188#255'}'#193#180#255'u'#190#178#255't'#190#178#255#139#198 - +#187#255#157#202#195'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#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173#255'm'#184 - +#170#255#144#202#193#255#168#217#211#255#166#214#208#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'}'#185#174#255#150#202#194#255#143#200#191 - +#255'v'#187#175#255's'#186#174#255#146#199#192#255#156#213#207#255#159#214 - +#208#255#173#208#202#255#138#189#178#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 - +'~'#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255#135#190#181 - +#255#140#187#178#255#134#195#188#255#145#201#195#255#154#194#188#255#140#182 - +#174#255#127#180#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#140#191#182#255#169#214 - +#208#255#168#222#214#255#158#207#201#255#161#195#189#255#142#183#177#255#129 - +#188#179#255#129#192#183#255'|'#188#177#255'|'#182#171#255#127#177#167#255 - +#138#182#173#255#145#197#188#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#157#203#196#255#161#217#209#255 - +#146#223#216#255#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176 - +#255'u'#192#180#255'i'#188#174#255'f'#183#168#255'u'#177#165#255#137#182#171 - +#255#141#189#181#255#129#193#182#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#179#217#211#255#137#210#199#255's' - +#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o'#188#175#255 - +'z'#189#178#255'w'#186#175#255'q'#186#172#255'{'#191#178#255#141#192#184#255 - +#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#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#177#220#214#255'v'#198#184 - ,#255'p'#192#178#255#141#195#186#255#134#194#183#255'x'#192#179#255'u'#183#172 - +#255#134#183#173#255#134#182#173#255#135#186#178#255#131#197#188#255#134#204 - +#196#255#142#189#182#255'k'#176#163#255'O'#176#157#255'L'#173#154#255'c'#178 - +#162#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#152#209#200 - +#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181 - +#255#136#185#175#255#142#186#176#255#136#185#176#255#128#182#173#255's'#189 - +#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148#255'R'#172 - +#153#255'k'#184#168#255'{'#190#177#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#130#202#190#255'}'#195#183#255'{'#181#171#255'{'#186#174#255'r' - +#194#180#255#139#197#187#255#163#197#194#255#155#200#196#255#137#200#190#255 - +'p'#183#170#255'n'#182#170#255'j'#191#176#255'^'#178#161#255'g'#166#151#255 - +'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#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's'#196#181#255#128#195#183#255#133#184#176 - +#255'}'#186#174#255'w'#194#180#255#142#197#187#255#140#203#197#255#134#212 - +#203#255'}'#207#193#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\'#178 - +#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a'#178 - +#162#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'j'#188#175#255#132 - +#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188#178#255'j' - +#197#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255'g'#179#164#255'k' - +#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194#180#255'h' - +#183#167#255'U'#171#153#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 - +'k'#189#174#255#142#199#189#255#161#201#194#255#144#196#188#255#130#201#189 - +#255't'#186#175#255'e'#185#172#255'_'#192#176#255'j'#182#167#255'd'#176#161 - +#255'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183#255#132#197#187 - +#255'x'#201#189#255'g'#177#161#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'm'#187#172#255#141#201#190#255#159#205#201#255#150#206#198#255 - +#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179#164#255 - +'d'#176#161#255']'#175#158#255'p'#179#166#255'v'#190#178#255'~'#191#181#255 - +'i'#199#187#255'_'#196#182#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'|'#195#184#255#141#205#197#255#141#207#198#255#137#203#195 - +#255'}'#203#191#255'`'#186#170#255'c'#173#158#255'i'#175#160#255'l'#181#167 - +#255'c'#182#167#255'g'#185#170#255#127#193#183#255'l'#184#169#255']'#178#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#0#0#0#0 - +#0#0#0#0#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188 - +#175#255'Q'#182#164#255'X'#176#159#255'l'#176#163#255'l'#187#174#255'`'#188 - +#172#255'l'#191#178#255'w'#194#184#255'c'#178#162#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#144#208#198 - +#255#128#207#195#255'a'#192#178#255']'#179#166#255'c'#177#164#255'Z'#178#162 - +#255'\'#182#165#255'e'#187#171#255'e'#193#177#255'\'#185#166#255'`'#182#169 - +#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'_'#193#177#255'\'#197#180#255'W'#198#182#255 - +'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194#184#255#128#202#190#255 - +'s'#196#181#255'f'#177#162'f'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'B'#180#161 - +#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255't'#179#169 - +#255#130#194#188#255'{'#200#192#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'I'#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179 - +#163#255'`'#176#162#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'_'#184#169#255'r'#199#186#255'm'#202#187#255'e'#191 - +#176#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#132#199#188#255#152#201#193#255#146#203#193#255#132#197#186#255'~'#197 - +#185#255#128#197#187#255#137#196#187#255#145#196#185#255#142#196#184#255#0#0 - +#0#0#0#0#0#0#169#228#221#255#167#228#221#255#142#198#189#255's'#180#166#255 - +'p'#174#160#255'y'#183#171#255#133#195#185#255#146#195#186#255#134#191#182 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#188#177#255#134#194#183#255#138#199 - +#188#255'}'#193#180#255'u'#190#178#255't'#190#178#255#139#198#187#255#158#204 - ,#195#255#157#202#195#255#0#0#0#0#0#0#0#0#135#216#207#255#150#225#217#255#141 - +#196#186#255'p'#175#163#255'l'#174#161#255'z'#188#174#255#132#194#183#255#139 - +#191#181#255'p'#196#185#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#171#255 - +#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173#255'm'#184#170#255 - +#144#202#193#255#168#217#211#255#166#214#208#255#0#0#0#0#0#0#0#0'm'#196#183 - +#255#127#207#195#255#131#190#178#255't'#176#164#255'l'#176#162#255#128#191 - +#179#255#133#189#179#255'r'#179#167#255'`'#188#174#255#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0'm'#180#167#255'}'#185#174#255#150#202#194#255#143#200#191#255'v' - +#187#175#255's'#186#174#255#146#199#192#255#156#213#207#255#159#214#208#255#0 - +#0#0#0#0#0#0#0'q'#184#172#255'u'#193#181#255'x'#188#176#255'z'#183#171#255'|' - +#188#174#255#139#197#187#255#127#185#173#255'c'#172#157#255'c'#175#162#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#170#255'~'#185#174#255#160#208#200#255 - +#157#211#202#255#133#196#186#255#135#190#181#255#140#187#178#255#134#195#188 - +#255#145#201#195#255#0#0#0#0#0#0#0#0#127#180#170#255'|'#186#176#255#131#194 - +#183#255#139#198#188#255#141#201#191#255#141#200#190#255'w'#179#168#255'b' - +#167#151#255'a'#169#153#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#130#191#179#255 - +#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161#195#189 - +#255#142#183#177#255#129#188#179#255#129#192#183#255#0#0#0#0#0#0#0#0#127#177 - +#167#255#138#182#173#255#145#197#188#255#145#206#196#255'~'#202#193#255'~' - +#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216#255 - +#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255'u'#192#180 - +#255#0#0#0#0#0#0#0#0'u'#177#165#255#137#182#171#255#141#189#181#255#129#193 - +#182#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c'#169 - +#155#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214#255#179#217#211#255#137 - +#210#199#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255 - +'o'#188#175#255'z'#189#178#255#0#0#0#0#0#0#0#0'{'#191#178#255#141#192#184#255 - +#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163#255 - +'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#179#226#221 - +#255#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186#255#134#194 - +#183#255'x'#192#179#255'u'#183#172#255#134#183#173#255#0#0#0#0#0#0#0#0#131 - +#197#188#255#134#204#196#255#142#189#182#255'k'#176#163#255'O'#176#157#255'L' - +#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#144#218#211#255#152#209#200#255's'#192#180#255'r'#183#171#255'~' - +#186#176#255'u'#192#180#255'{'#192#181#255#136#185#175#255#142#186#176#255#0 - +#0#0#0#0#0#0#0's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255'T' - +#166#148#255'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198#188#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#209#196#255#130#202#190#255'}'#195#183#255'{' - +#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197#194#255 - +#155#200#196#255#0#0#0#0#0#0#0#0'n'#182#170#255'j'#191#176#255'^'#178#161#255 - +'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#255 - +'b'#196#183#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'b'#194#178#255's'#196#181#255 - +#128#195#183#255#133#184#176#255'}'#186#174#255'w'#194#180#255#142#197#187 - +#255#140#203#197#255#134#212#203#255#0#0#0#0#0#0#0#0'p'#180#167#255'n'#182 - +#169#255'\'#178#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184 - +#170#255'a'#178#162#255'M'#184#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188 - +#172#255'j'#188#175#255#132#195#183#255#144#189#182#255#128#186#177#255'x' - +#194#182#255'|'#188#178#255'j'#197#184#255'g'#204#191#255#0#0#0#0#0#0#0#0'g' - +#179#164#255'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u' - +#194#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201#194#255 - +#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_'#192#176#255 - +#0#0#0#0#0#0#0#0'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183#255 - +#132#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255'K'#165#145#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#181#255'm'#187#172#255#141#201#190 - +#255#159#205#201#255#150#206#198#255#140#209#197#255'q'#188#175#255'a'#176 - +#161#255'X'#182#164#255#0#0#0#0#0#0#0#0']'#175#158#255'p'#179#166#255'v'#190 - +#178#255'~'#191#181#255'i'#199#187#255'_'#196#182#255'^'#169#150#255'C'#157 - +#137#255':'#159#136#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204#192#255'|' - +#195#184#255#141#205#197#255#141#207#198#255#137#203#195#255'}'#203#191#255 - +'`'#186#170#255'c'#173#158#255'i'#175#160#255#0#0#0#0#0#0#0#0'g'#185#170#255 - +#127#193#183#255'l'#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162#255 - +'M'#163#143#255'='#153#131#255'@'#161#139#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#142#214#204#255#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179 - ,#255'i'#188#175#255'Q'#182#164#255'X'#176#159#255'l'#176#163#255#0#0#0#0#0#0 - +#0#0'l'#191#178#255'w'#194#184#255'c'#178#162#255'P'#169#151#255'9'#171#149 - +#255'@'#172#150#255'N'#168#148#255'H'#159#139#255'`'#176#158#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'o'#214#202#255#144#208#198#255#128#207#195#255'a'#192 - +#178#255']'#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187 - +#171#255#0#0#0#0#0#0#0#0'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163 - +#144#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195 - +#181#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G'#199#183#255'_'#193#177#255'\'#197 - +#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194 - +#184#255#128#202#190#255#0#0#0#0#0#0#0#0'\'#176#162#255'I'#179#160#255'G'#172 - +#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm'#191 - +#175#255'q'#197#186#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'5'#181#159#255'B'#180 - +#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255't'#179 - +#169#255#130#194#188#255'{'#200#192#255#0#0#0#0#0#0#0#0'U'#170#153#255'?'#173 - +#152#255'@'#174#152#255'@'#165#143#255'K'#171#151#255'`'#181#164#255'b'#182 - +#164#255'V'#186#168#255'K'#192#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':'#175 - +#155#255'I'#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179 - +#163#255'`'#176#162#255'['#185#173#255'T'#184#171#255#0#0#0#0#0#0#0#0'N'#168 - +#150#255'H'#178#159#255'W'#187#168#255'`'#184#167#255'k'#192#176#255'b'#183 - +#166#255'T'#170#150#255'@'#174#154#255'('#178#156#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'H'#180#162#255'U'#179#163#255'_'#184#169#255'r'#199#186#255'm'#202 - +#187#255'e'#191#176#255'Z'#184#167#255'M'#189#171#255'?'#181#161#255#0#0#0#0 - +#0#0#0#0'R'#174#153#255'V'#187#170#255'e'#193#178#255'm'#196#182#255'k'#201 - +#187#255'a'#182#165#255'N'#162#145#255'5'#156#136#255'('#160#137#238#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#199#188#255#152#201#193#255#146#203#193#255 - +#132#197#186#255'~'#197#185#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#166#227#220#238#142#198#189#255's'#180#166#255'p'#174#160#255'y' - +#183#171#255#133#195#185#255#146#195#186#255#134#191#182#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0'y'#188#177#255#134#194#183#255#138#199#188#255'}'#193#180 - +#255'u'#190#178#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 - +#150#225#217#255#141#196#186#255'p'#175#163#255'l'#174#161#255'z'#188#174#255 - +#132#194#183#255#139#191#181#255'p'#196#185#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'r'#183#171#255#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173 - +#255'm'#184#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#127#207 - +#195#255#131#190#178#255't'#176#164#255'l'#176#162#255#128#191#179#255#133 - +#189#179#255'r'#179#167#255'`'#188#174#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'm' - +#180#167#255'}'#185#174#255#150#202#194#255#143#200#191#255'v'#187#175#255's' - +#186#174#255#146#199#192#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'u'#193 - +#181#255'x'#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185 - +#173#255'c'#172#157#255'c'#175#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183 - +#170#255'~'#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255#135 - +#190#181#255#140#187#178#255#134#195#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'|'#186#176#255#131#194#183#255#139#198#188#255#141#201#191#255#141#200#190 - +#255'w'#179#168#255'b'#167#151#255'a'#169#153#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#130#191#179#255#140#191#182#255#169#214#208#255#168#222#214#255#158#207 - +#201#255#161#195#189#255#142#183#177#255#129#188#179#255#129#192#183#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#138#182#173#255#145#197#188#255#145#206#196#255'~'#202 - +#193#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#145#202#192#255#157#203#196#255#161#217#209#255#146 - +#223#216#255#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255 - +'u'#192#180#255#0#0#0#0#0#0#0#0#0#0#0#0#137#182#171#255#141#189#181#255#129 - +#193#182#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c' - +#169#155#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214#255#179#217#211#255 - +#137#210#199#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180 - +#255'o'#188#175#255'z'#189#178#255'w'#186#175#255#0#0#0#0#0#0#0#0#141#192#184 - +#255#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163 - +#255'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#179#226 - +#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186#255#134 - +#194#183#255'x'#192#179#255'u'#183#172#255#134#183#173#255#134#182#173#255 - ,#135#186#178#255#0#0#0#0#134#204#196#255#142#189#182#255'k'#176#163#255'O' - +#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#144#218#211#255#152#209#200#255's'#192#180#255 - +'r'#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181#255#136#185#175#255 - +#142#186#176#255#136#185#176#255#128#182#173#255's'#189#179#255'n'#201#188 - +#255't'#186#173#255'j'#170#155#255'T'#166#148#255'R'#172#153#255'k'#184#168 - +#255'{'#190#177#255#128#198#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#209 - +#196#255#130#202#190#255'}'#195#183#255'{'#181#171#255'{'#186#174#255'r'#194 - +#180#255#139#197#187#255#163#197#194#255#155#200#196#255#137#200#190#255'p' - +#183#170#255'n'#182#170#255'j'#191#176#255'^'#178#161#255'g'#166#151#255'[' - +#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#255'b'#196#183#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0'b'#194#178#255's'#196#181#255#128#195#183#255 - +#133#184#176#255'}'#186#174#255'w'#194#180#255#142#197#187#255#140#203#197 - +#255#134#212#203#255'}'#207#193#255'a'#188#172#255'p'#180#167#255'n'#182#169 - +#255'\'#178#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170 - +#255'a'#178#162#255'M'#184#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172 - +#255'j'#188#175#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194 - +#182#255'|'#188#178#255'j'#197#184#255'g'#204#191#255'm'#191#178#255'\'#183 - +#166#255#0#0#0#0'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172 - +#255'u'#194#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201 - +#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_'#192 - +#176#255'j'#182#167#255'd'#176#161#255#0#0#0#0'j'#176#163#255's'#188#175#255 - +#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255 - +'K'#165#145#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#181#255'm'#187#172#255 - +#141#201#190#255#159#205#201#255#150#206#198#255#140#209#197#255'q'#188#175 - +#255'a'#176#161#255'X'#182#164#255'g'#179#164#255#0#0#0#0#0#0#0#0'p'#179#166 - +#255'v'#190#178#255'~'#191#181#255'i'#199#187#255'_'#196#182#255'^'#169#150 - +#255'C'#157#137#255':'#159#136#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204 - +#192#255'|'#195#184#255#141#205#197#255#141#207#198#255#137#203#195#255'}' - +#203#191#255'`'#186#170#255'c'#173#158#255'i'#175#160#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#127#193#183#255'l'#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162 - +#255'M'#163#143#255'='#153#131#255'@'#161#139#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#142#214#204#255#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191 - +#179#255'i'#188#175#255'Q'#182#164#255'X'#176#159#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'w'#194#184#255'c'#178#162#255'P'#169#151#255'9'#171#149#255'@'#172 - +#150#255'N'#168#148#255'H'#159#139#255'`'#176#158#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'o'#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']'#179 - +#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'\'#185#172#255'Y'#173#156#255'O'#163#144#255'2'#162#138#255'I'#175 - +#155#255'f'#183#167#255'h'#180#164#255'z'#195#181#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'G'#199#183#255'_'#193#177#255'\'#197#180#255'W'#198#182#255'Y'#186 - +#172#255'c'#174#161#255's'#181#169#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'I'#179#160#255'G'#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255 - +'q'#192#178#255'm'#191#175#255'q'#197#186#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'5'#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255 - +'_'#176#162#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'?'#173#152 - +#255'@'#174#152#255'@'#165#143#255'K'#171#151#255'`'#181#164#255'b'#182#164 - +#255'V'#186#168#255'K'#192#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':'#175#155 - +#255'I'#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#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'H'#178#159#255'W'#187#168#255'`' - +#184#167#255'k'#192#176#255'b'#183#166#255'T'#170#150#255'@'#174#154#255'(' - +#178#156#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'C'#180#157'"U'#179#163#255'_' - +#184#169#255'r'#199#186#255'l'#201#186#170#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0'V'#187#170#255'e'#193#178#255'm'#196#182#255'k'#201 - +#187#255'a'#182#165#255'N'#162#145#255'5'#156#136#255')'#161#138#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#131#198#187#136#152#201#193#255#146#203#193#255 - +#132#197#186#255'~'#197#185#255#128#197#187#255#137#196#187#255#144#195#184 - +#238#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'p'#174#160#255 - ,'y'#183#171#255#133#195#185#255#146#195#186#255#134#191#182#255#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0'y'#188#177#255#134#194#183#255#138#199#188#255'}'#193#180 - +#255'u'#190#178#255't'#190#178#255#139#198#187#255#158#204#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'l'#174#161#255'z'#188#174#255 - +#132#194#183#255#139#191#181#255'p'#196#185#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'r'#183#171#255#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173 - +#255'm'#184#170#255#144#202#193#255#168#217#211#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't'#176#164#255'l'#176#162#255#128#191#179#255#133#189 - +#179#255'r'#179#167#255'`'#188#174#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'm'#180 - +#167#255'}'#185#174#255#150#202#194#255#143#200#191#255'v'#187#175#255's'#186 - +#174#255#146#199#192#255#156#213#207#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0'x'#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185#173 - +#255'c'#172#157#255'c'#175#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#170 - +#255'~'#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255#135#190 - +#181#255#140#187#178#255#134#195#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'|' - +#186#176#255#131#194#183#255#139#198#188#255#141#201#191#255#141#200#190#255 - +'w'#179#168#255'b'#167#151#255'a'#169#153#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#130#191#179#255#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201 - +#255#161#195#189#255#142#183#177#255#129#188#179#255#0#0#0#0#0#0#0#0#0#0#0#0 - +'}'#175#165'f'#138#182#173#255#145#197#188#255#145#206#196#255'~'#202#193#255 - +'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216 - +#255#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255#0#0#0#0#0 - +#0#0#0#0#0#0#0'u'#177#165#255#137#182#171#255#141#189#181#255#129#193#182#255 - +'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c'#169#155#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214#255#179#217#211#255#137#210#199 - +#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o'#188 - +#175#255#0#0#0#0#0#0#0#0'q'#186#172#255'{'#191#178#255#141#192#184#255#141 - +#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163#255'l' - +#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#179#226#221#255 - +#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186#255#134#194#183 - +#255'x'#192#179#255'u'#183#172#255#0#0#0#0#134#182#173#255#135#186#178#255 - +#131#197#188#255#134#204#196#255#142#189#182#255'k'#176#163#255'O'#176#157 - +#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#144#218#211#255#152#209#200#255's'#192#180#255'r'#183 - +#171#255'~'#186#176#255'u'#192#180#255'{'#192#181#255#136#185#175#255#0#0#0#0 - +#136#185#176#255#128#182#173#255's'#189#179#255'n'#201#188#255't'#186#173#255 - +'j'#170#155#255'T'#166#148#255'R'#172#153#255'k'#184#168#255'{'#190#177#255 - +#128#198#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#209#196#255#130#202#190 - +#255'}'#195#183#255'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187 - +#255#163#197#194#255#155#200#196#255#137#200#190#255'p'#183#170#255'n'#182 - +#170#255'j'#191#176#255'^'#178#161#255'g'#166#151#255'['#163#145#255'X'#175 - +#157#255'i'#186#171#255'v'#189#176#255'b'#196#183#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'b'#194#178#255's'#196#181#255#128#195#183#255#133#184#176#255'}'#186 - +#174#255'w'#194#180#255#142#197#187#255#140#203#197#255#134#212#203#255'}' - +#207#193#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p' - +#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a'#178#162#255'M' - +#184#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172#255'j'#188#175#255 - +#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188#178 - +#255'j'#197#184#255#0#0#0#0'm'#191#178#255'\'#183#166#255'g'#179#164#255'k' - +#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194#180#255'h' - +#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'h' - +#188#173#255'k'#189#174#255#142#199#189#255#161#201#194#255#144#196#188#255 - +#130#201#189#255't'#186#175#255'e'#185#172#255#0#0#0#0'j'#182#167#255'd'#176 - +#161#255'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183#255#132#197 - +#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255'K'#165#145#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#181#255'm'#187#172#255#141#201#190#255#159 - +#205#201#255#150#206#198#255#140#209#197#255'q'#188#175#255'a'#176#161#255#0 - +#0#0#0#0#0#0#0'd'#176#161#255']'#175#158#255'p'#179#166#255'v'#190#178#255'~' - +#191#181#255'i'#199#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255':' - +#159#136#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204#192#255'|'#195#184#255 - +#141#205#197#255#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186#170 - +#255'c'#173#158#255#0#0#0#0#0#0#0#0#0#0#0#0'g'#185#170#255#127#193#183#255'l' - +#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'=' - ,#153#131#255'@'#161#139#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#142#214#204#255 - +#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255 - +'Q'#182#164#255'X'#176#159#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#184#255 - +'c'#178#162#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255 - +'H'#159#139#255'`'#176#158#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'o'#214#202#255 - +#144#208#198#255#128#207#195#255'a'#192#178#255']'#179#166#255'c'#177#164#255 - +'Z'#178#162#255'\'#182#165#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'['#185#171#204 - +'Y'#173#156#255'O'#163#144#255'2'#162#138#255'I'#175#155#255'f'#183#167#255 - +'h'#180#164#255'z'#195#181#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G'#199#183#255 - +'_'#193#177#255'\'#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255 - +'s'#181#169#255#131#194#184#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G' - +#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm' - +#191#175#255'q'#197#186#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'5'#181#159#255'B' - +#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255't' - +#179#169#255#130#194#188#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 - +'@'#165#143#255'K'#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255 - +'K'#192#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':'#175#155#255'I'#174#156#255 - +'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179#163#255'`'#176#162#255 - +'['#185#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'k' - +#192#176#255'b'#183#166#255'T'#170#150#255'@'#174#154#255'('#178#156#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0'H'#180#162#255'U'#179#163#255'_'#184#169#255'r' - +#199#186#255'm'#202#187#255'e'#191#176#255'Z'#184#167#255'M'#189#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'i'#195#180'"a'#182#165 - +#255'N'#162#145#255'5'#156#136#255'%'#157#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'p'#202#190#255#132#199#188#255#152#201#193#255#146#203#193#255#131#195#183 - +'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#148#204#194#255#169#228 - +#221#255#167#228#221#255#142#198#189#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'w'#190#180#255'y'#188#177#255#134#194 - +#183#255#138#199#188#255'}'#193#180#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#138#199#189#255#135#216#207#255#150#225#217#255#141#196#186#255'p' - +#175#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 - +'q'#186#174#255'r'#183#171#255#129#188#177#255#138#197#188#255'~'#194#184#255 - +'q'#185#173#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#195#184#255'm' - +#196#183#255#127#207#195#255#131#190#178#255't'#176#164#255'l'#176#162#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'r'#185#172#255'm'#180 - +#167#255'}'#185#174#255#150#202#194#255#143#200#191#255'v'#187#175#255's'#186 - +#174#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#138#189#178#255'q'#184#172#255'u' - +#193#181#255'x'#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#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'~'#189#179#255'r'#183#170#255'~' - +#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255#135#190#181#255 - +#140#187#178#255#0#0#0#0#0#0#0#0#0#0#0#0#140#182#174#255#127#180#170#255'|' - +#186#176#255#131#194#183#255#139#198#188#255#141#201#191#255#141#200#190#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#142#198#189#255#130#191#179 - +#255#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161#195 - +#189#255#142#183#177#255#0#0#0#0#0#0#0#0#0#0#0#0'|'#182#171#255#127#177#167 - +#255#138#182#173#255#145#197#188#255#145#206#196#255'~'#202#193#255'~'#199 - +#190#255'z'#181#168#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#145#204#195 - +#255#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216#255#166#213 - +#210#255#177#199#197#255#139#188#180#255'x'#188#176#255#0#0#0#0#0#0#0#0'f' - +#183#168#255'u'#177#165#255#137#182#171#255#141#189#181#255#129#193#182#255 - +'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#154#212#203#255#172#220#214#255#179#217#211#255#137#210#199 - +#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o'#188 - +#175#255'z'#189#178#255#0#0#0#0'q'#186#172#255'{'#191#178#255#141#192#184#255 - +#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163#255 - +'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0#150#218#210#255#179 - +#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186#255 - +#134#194#183#255'x'#192#179#255'u'#183#172#255#134#183#173#255#134#182#173 - +#255#135#186#178#255#131#197#188#255#134#204#196#255#142#189#182#255'k'#176 - ,#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189 - +#176#255#130#185#172#204#0#0#0#0#0#0#0#0'u'#215#206#255#144#218#211#255#152 - +#209#200#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255'{' - +#192#181#255#136#185#175#255#142#186#176#255#136#185#176#255#128#182#173#255 - +'s'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148#255 - +'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198#188#255#131#192#182#255 - +#0#0#0#0#0#0#0#0'f'#208#194#255'r'#209#196#255#130#202#190#255'}'#195#183#255 - +'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197#194#255 - +#155#200#196#255#137#200#190#255'p'#183#170#255'n'#182#170#255'j'#191#176#255 - +'^'#178#161#255'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186#171#255 - +'v'#189#176#255'b'#196#183#255's'#196#187#255#0#0#0#0#0#0#0#0'_'#196#182#255 - +'b'#194#178#255's'#196#181#255#128#195#183#255#133#184#176#255'}'#186#174#255 - +'w'#194#180#255#142#197#187#255#140#203#197#255#134#212#203#255'}'#207#193 - +#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156 - +#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a'#178#162#255'M'#184#167 - +#255'c'#190#176#255#0#0#0#0#0#0#0#0'_'#188#176#255']'#188#172#255'j'#188#175 - +#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188 - +#178#255'j'#197#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255'g'#179 - +#164#255'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194 - +#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255'['#177#161#255#0#0#0#0 - +#0#0#0#0'x'#191#178#255'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201 - +#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_'#192 - +#176#255#0#0#0#0'd'#176#161#255'`'#176#160#255'j'#176#163#255's'#188#175#255 - +#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255 - +'K'#165#145#255#0#0#0#0#0#0#0#0#0#0#0#0#140#202#191#255'w'#194#181#255'm'#187 - +#172#255#141#201#190#255#159#205#201#255#150#206#198#255#140#209#197#255'q' - +#188#175#255'a'#176#161#255'W'#181#163#238#0#0#0#0'd'#176#161#255']'#175#158 - +#255'p'#179#166#255'v'#190#178#255'~'#191#181#255'i'#199#187#255'_'#196#182 - +#255'^'#169#150#255'C'#157#137#255':'#159#136#255#0#0#0#0#0#0#0#0#0#0#0#0#145 - +#209#199#255#133#204#192#255'|'#195#184#255#141#205#197#255#141#207#198#255 - +#137#203#195#255'}'#203#191#255'`'#186#170#255'c'#173#158#255#0#0#0#0#0#0#0#0 - +'c'#182#167#255'g'#185#170#255#127#193#183#255'l'#184#169#255']'#178#163#255 - +'K'#187#169#255'D'#181#162#255'M'#163#143#255'='#153#131#255#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#136#211#201#255#142#214#204#255#157#210#204#255#149#212#206 - +#255'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255#0#0#0#0#0#0 - +#0#0#0#0#0#0'`'#188#172#255'l'#191#178#255'w'#194#184#255'c'#178#162#255'P' - +#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'['#203#190#255'o'#214#202#255#144#208#198#255#128#207 - +#195#255'a'#192#178#255']'#179#166#255'c'#177#164#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'\'#185#166#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163 - +#144#255'2'#162#138#255'I'#175#155#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'<'#193#175#255'G'#199#183#255'_'#193#177#255'\'#197#180#255'W'#198 - +#182#255'Y'#186#172#255'c'#174#161#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'g'#178 - +#163#255'\'#176#162#255'I'#179#160#255'G'#172#152#255'D'#162#141#255'<'#162 - +#138#255'['#181#164#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'@' - +#186#166#255'5'#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255'X' - +#193#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'i'#173#161#255'U'#170 - +#153#255'?'#173#152#255'@'#174#152#255'@'#165#143#255'K'#171#151#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'D'#181#161#255':'#175#155 - +#255'I'#174#156#255'K'#180#163#255'X'#193#177#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'['#172#156#255'N'#168#150#255'H'#178#159#255'W'#187#168 - +#255'`'#184#167#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'H'#180#162#255'U'#179#163#255'_'#184#169#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'R'#173#154#238'R'#174#153#255'V'#187 - +#170#255'e'#193#178#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#137#196#187#255#145#196#185#255#142#196#184#255#133#193#181#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#133#195#185#255#146#195#186 - +#255#134#191#182#255#130#187#178#170#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - ,#0#0#0#0#0#0#0#0#0#0#0#0't'#190#178#255#139#198#187#255#158#204#195#255#157 - +#202#195#255#148#201#192#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 - +'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185#255'x'#199#188#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'q'#185#173#255'm' - +#184#170#255#144#202#193#255#168#217#211#255#166#214#208#255#168#211#204#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'l'#176#162#255#128#191#179#255#133 - +#189#179#255'r'#179#167#255'`'#188#174#255'n'#191#178#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#143#200#191#255'v'#187#175#255's'#186#174#255 - +#146#199#192#255#156#213#207#255#159#214#208#255#173#208#202#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185 - +#173#255'c'#172#157#255'c'#175#162#255'p'#180#166#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#159#206#198#136#157#211#202#255#133#196#186#255#135#190#181 - +#255#140#187#178#255#134#195#188#255#145#201#195#255#154#194#188#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#130#193#182#204#139#198#188#255#141#201#191#255#141#200#190 - +#255'w'#179#168#255'b'#167#151#255'a'#169#153#255'm'#178#164#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#169#214#208#255#168#222#214#255#158#207#201#255 - +#161#195#189#255#142#183#177#255#129#188#179#255#129#192#183#255'|'#188#177 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#145#197#188#255#145#206#196#255'~'#202#193#255 - +'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255'q'#180#167#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#157#203#196#255#161#217#209#255#146#223#216 - +#255#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255'u'#192 - +#180#255'i'#188#174#255#0#0#0#0#0#0#0#0#137#182#171#255#141#189#181#255#129 - +#193#182#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c' - +#169#155#255'u'#181#170#255#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214#255#179#217 - +#211#255#137#210#199#255's'#208#196#255#153#207#201#255#162#199#192#255#127 - +#191#180#255'o'#188#175#255'z'#189#178#255'w'#186#175#255#0#0#0#0'{'#191#178 - +#255#141#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172 - +#255'j'#178#163#255'l'#172#158#255'n'#177#162#255'|'#183#170#255#0#0#0#0#0#0 - +#0#0#150#218#210#255#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192 - +#178#255#141#195#186#255#134#194#183#255'x'#192#179#255'u'#183#172#255#134 - +#183#173#255#134#182#173#255#135#186#178#255#131#197#188#255#134#204#196#255 - +#142#189#182#255'k'#176#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255 - +'r'#180#165#255'}'#189#176#255#130#186#173#255#0#0#0#0#0#0#0#0'u'#215#206#255 - +#144#218#211#255#152#209#200#255's'#192#180#255'r'#183#171#255'~'#186#176#255 - +'u'#192#180#255'{'#192#181#255#136#185#175#255#142#186#176#255#136#185#176 - +#255#128#182#173#255's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155 - +#255'T'#166#148#255'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198#188 - +#255#131#192#182#255#0#0#0#0#0#0#0#0'f'#208#194#255'r'#209#196#255#130#202 - +#190#255'}'#195#183#255'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197 - +#187#255#163#197#194#255#155#200#196#255#137#200#190#255'p'#183#170#255'n' - +#182#170#255'j'#191#176#255'^'#178#161#255'g'#166#151#255'['#163#145#255'X' - +#175#157#255'i'#186#171#255'v'#189#176#255'b'#196#183#255's'#196#187#255#0#0 - +#0#0#0#0#0#0'_'#196#182#255'b'#194#178#255's'#196#181#255#128#195#183#255#133 - +#184#176#255'}'#186#174#255'w'#194#180#255#142#197#187#255#140#203#197#255 - +#134#212#203#255'}'#207#193#255'a'#188#172#255'p'#180#167#255'n'#182#169#255 - +'\'#178#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255 - +'a'#178#162#255'M'#184#167#255'c'#190#176#255#0#0#0#0#0#0#0#0'_'#188#176#255 - +']'#188#172#255'j'#188#175#255#132#195#183#255#144#189#182#255#128#186#177 - +#255'x'#194#182#255'|'#188#178#255'j'#197#184#255'g'#204#191#255'm'#191#178 - +#255'\'#183#166#255'g'#179#164#255'k'#177#166#255'e'#181#166#255#127#179#166 - +#255#129#184#172#255'u'#194#180#255'h'#183#167#255'U'#171#153#255'P'#172#154 - +#255'['#177#161#255#0#0#0#0#0#0#0#0#0#0#0#0'h'#188#173#255'k'#189#174#255#142 - +#199#189#255#161#201#194#255#144#196#188#255#130#201#189#255't'#186#175#255 - +'e'#185#172#255'_'#192#176#255'j'#182#167#255#0#0#0#0'`'#176#160#255'j'#176 - +#163#255's'#188#175#255#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177 - +#161#255'M'#163#144#255'K'#165#145#255'R'#168#151#255#0#0#0#0#0#0#0#0#0#0#0#0 - +'v'#193#180#136'm'#187#172#255#141#201#190#255#159#205#201#255#150#206#198 - +#255#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179#164 - +#255#0#0#0#0']'#175#158#255'p'#179#166#255'v'#190#178#255'~'#191#181#255'i' - +#199#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255':'#159#136#255'O' - +#167#148#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'|'#195#184#255#141#205#197#255 - +#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186#170#255'c'#173#158#255 - +'i'#175#160#255'l'#181#167#255#0#0#0#0#0#0#0#0#127#193#183#255'l'#184#169#255 - +']'#178#163#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'='#153#131#255 - ,'@'#161#139#255']'#173#156#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#149 - +#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255'X' - +#176#159#255'l'#176#163#255'l'#187#174#255#0#0#0#0#0#0#0#0#0#0#0#0'c'#178#162 - +#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255'H'#159#139 - +#255'`'#176#158#255't'#182#169#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'a'#192#178#255']'#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165 - +#255'e'#187#171#255'e'#193#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'O'#163#144 - +#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195#181 - +#255'z'#188#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'V'#197 - +#181#238'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194#184#255#128#202 - +#190#255's'#196#181#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'D'#162#141#255'<'#162 - +#138#255'['#181#164#255'q'#192#178#255'm'#191#175#255'q'#197#186#255's'#185 - +#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'X'#193#177 - +#255'_'#176#162#255't'#179#169#255#130#194#188#255'{'#200#192#255'o'#185#176 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'K'#171#151#255'`'#181#164#255'b' - +#182#164#255'V'#186#168#255'K'#192#177#255']'#179#167#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'Z'#179#163#255'`'#176#162#255'[' - +#185#173#255'T'#184#171#255'R'#174#159#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'b'#183#166#255'T'#170#150#255'@'#174#154#255'('#178#156#255'N' - +#178#162#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'Z'#184#167#255'M'#189#171#255'?'#181#161#255'?'#168#150'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'N'#162#145#255'5'#156#136#255 - +')'#161#138#255'N'#172#157'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#132#199#188#255#152 - +#201#193#255#146#203#193#255#132#197#186#255'~'#197#185#255#128#197#187#255 - +#137#196#187#255#0#0#0#0#0#0#0#0#133#193#181#255#148#204#194#255#169#228#221 - +#255#167#228#221#255#140#197#187'f'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#188#177#255#134#194#183#255#138#199 - +#188#255'}'#193#180#255'u'#190#178#255't'#190#178#255#139#198#187#255#158#204 - +#195#255#0#0#0#0#148#201#192#255#138#199#189#255#135#216#207#255#150#225#217 - +#255#141#196#186#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'r'#183#171#255#129#188#177#255#138#197#188#255'~' - +#194#184#255'q'#185#173#255'm'#184#170#255#144#202#193#255#168#217#211#255#0 - +#0#0#0#168#211#204#255#132#195#184#255'm'#196#183#255#127#207#195#255#131#190 - +#178#255't'#176#164#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'm'#180#167#255'}'#185#174#255#150#202#194#255#143#200#191 - +#255'v'#187#175#255's'#186#174#255#146#199#192#255#156#213#207#255#0#0#0#0 - +#173#208#202#255#138#189#178#255'q'#184#172#255'u'#193#181#255'x'#188#176#255 - +'z'#183#171#255'|'#188#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'r'#183#170#255'~'#185#174#255#160#208#200#255#157#211#202 - +#255#133#196#186#255#135#190#181#255#140#187#178#255#134#195#188#255#0#0#0#0 - +#154#194#188#255#140#182#174#255#127#180#170#255'|'#186#176#255#131#194#183 - +#255#139#198#188#255#141#201#191#255#140#200#190#204#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#130#191#179#255#140#191#182#255#169#214#208 - +#255#168#222#214#255#158#207#201#255#161#195#189#255#142#183#177#255#129#188 - +#179#255#0#0#0#0'|'#188#177#255'|'#182#171#255#127#177#167#255#138#182#173 - +#255#145#197#188#255#145#206#196#255'~'#202#193#255'~'#199#190#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#145#202#192#255#157#203#196 - +#255#161#217#209#255#146#223#216#255#166#213#210#255#177#199#197#255#139#188 - +#180#255'x'#188#176#255#0#0#0#0'i'#188#174#255'f'#183#168#255'u'#177#165#255 - +#137#182#171#255#141#189#181#255#129#193#182#255'_'#199#187#255'e'#200#187 - +#255'|'#184#169#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#172#220 - +#214#255#179#217#211#255#137#210#199#255's'#208#196#255#153#207#201#255#162 - +#199#192#255#127#191#180#255'o'#188#175#255#0#0#0#0'w'#186#175#255'q'#186#172 - +#255'{'#191#178#255#141#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175 - +#255'R'#188#172#255'j'#178#163#255'l'#172#158#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255 - +#141#195#186#255#134#194#183#255'x'#192#179#255'u'#183#172#255#0#0#0#0#134 - +#182#173#255#135#186#178#255#131#197#188#255#134#204#196#255#142#189#182#255 - +'k'#176#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255 - ,'}'#189#176#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#144#218#211#255#152#209#200 - +#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181 - +#255#136#185#175#255#0#0#0#0#136#185#176#255#128#182#173#255's'#189#179#255 - +'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148#255'R'#172#153#255 - +'k'#184#168#255'{'#190#177#255#128#198#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'r'#209#196#255#130#202#190#255'}'#195#183#255'{'#181#171#255'{'#186#174 - +#255'r'#194#180#255#139#197#187#255#163#197#194#255#0#0#0#0#137#200#190#255 - +'p'#183#170#255'n'#182#170#255'j'#191#176#255'^'#178#161#255'g'#166#151#255 - +'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#255'b'#196#183#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'b'#194#178#255's'#196#181#255#128#195#183#255 - +#133#184#176#255'}'#186#174#255'w'#194#180#255#142#197#187#255#140#203#197 - +#255#0#0#0#0'}'#207#193#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\' - +#178#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a' - +#178#162#255'M'#184#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172#255'j' - +#188#175#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255 - +'|'#188#178#255'j'#197#184#255#0#0#0#0'm'#191#178#255'\'#183#166#255'g'#179 - +#164#255'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194 - +#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201#194#255#144 - +#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255#0#0#0#0'j'#182#167 - +#255'd'#176#161#255'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183 - +#255#132#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#181#255'm'#187#172#255#141#201#190#255 - +#159#205#201#255#150#206#198#255#140#209#197#255'q'#188#175#255'a'#176#161 - +#255#0#0#0#0'g'#179#164#255'd'#176#161#255']'#175#158#255'p'#179#166#255'v' - +#190#178#255'~'#191#181#255'i'#199#187#255'_'#196#182#255'^'#169#150#255'C' - +#157#137#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204#192#255'|'#195 - +#184#255#141#205#197#255#141#207#198#255#137#203#195#255'}'#203#191#255'`' - +#186#170#255'c'#173#158#255#0#0#0#0'l'#181#167#255'c'#182#167#255'g'#185#170 - +#255#127#193#183#255'l'#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162 - +#255'M'#163#143#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#142#214 - +#204#255#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188 - +#175#255'Q'#182#164#255'X'#176#159#255#0#0#0#0'l'#187#174#255'`'#188#172#255 - +'l'#191#178#255'w'#194#184#255'c'#178#162#255'P'#169#151#255'9'#171#149#255 - +'@'#172#150#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'o' - +#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']'#179#166#255'c' - +#177#164#255'Z'#178#162#255'\'#182#165#255#0#0#0#0'e'#193#177#255'\'#185#166 - +#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163#144#255'2'#162#138 - +#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'G'#199 - +#183#255'_'#193#177#255'\'#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174 - +#161#255's'#181#169#255#131#194#184#255#0#0#0#0's'#196#181#255'g'#178#163#255 - +'\'#176#162#255'I'#179#160#255'G'#172#152#255'D'#162#141#255'<'#162#138#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'5'#181#159#255 - +'B'#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255 - +'t'#179#169#255#130#194#188#255#0#0#0#0'o'#185#176#255'i'#173#161#255'U'#170 - +#153#255'?'#173#152#255'@'#174#152#255'@'#165#143#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':'#175#155#255'I'#174#156 - +#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179#163#255'`'#176#162 - +#255'['#185#173#255#0#0#0#0'R'#174#159#255'['#172#156#255'N'#168#150#255'H' - +#178#159#255'W'#187#168#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'H'#180#162#170'U'#179#163#255'_'#184#169#255 - +'r'#199#186#255'm'#202#187#255'e'#191#176#255'Z'#184#167#255#0#0#0#0#0#0#0#0 - +#0#0#0#0'S'#174#155#255'R'#174#153#255'V'#187#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#145#196#185#255#142#196#184 - +#255#133#193#181#255#148#204#194#255#0#0#0#0#165#225#217'"'#142#198#189#255 - +'s'#180#166#255'p'#174#160#255'y'#183#171#255#133#195#185#255#146#195#186#255 - +#134#191#182#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#139#198#187#255#158#204#195#255#157#202#195#255#148#201 - ,#192#255#138#199#189#255#0#0#0#0#150#225#217#255#141#196#186#255'p'#175#163 - +#255'l'#174#161#255'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185 - +#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 - +'m'#184#170#255#144#202#193#255#168#217#211#255#166#214#208#255#168#211#204 - +#255#132#195#184#255#0#0#0#0#127#207#195#255#131#190#178#255't'#176#164#255 - +'l'#176#162#255#128#191#179#255#133#189#179#255'r'#179#167#255'`'#188#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'v'#187#175 - +#255's'#186#174#255#146#199#192#255#156#213#207#255#159#214#208#255#173#208 - +#202#255#138#189#178#255#0#0#0#0'u'#193#181#255'x'#188#176#255'z'#183#171#255 - +'|'#188#174#255#139#197#187#255#127#185#173#255'c'#172#157#255'c'#175#162#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#155#210#200#136#133 - +#196#186#255#135#190#181#255#140#187#178#255#134#195#188#255#145#201#195#255 - +#154#194#188#255#140#182#174#255#0#0#0#0'|'#186#176#255#131#194#183#255#139 - +#198#188#255#141#201#191#255#141#200#190#255'w'#179#168#255'b'#167#151#255'a' - +#169#153#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#168#222 - +#214#255#158#207#201#255#161#195#189#255#142#183#177#255#129#188#179#255#129 - +#192#183#255'|'#188#177#255'|'#182#171#255#0#0#0#0#138#182#173#255#145#197 - +#188#255#145#206#196#255'~'#202#193#255'~'#199#190#255'z'#181#168#255'f'#166 - +#150#255'`'#168#152#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#161 - +#217#209#255#146#223#216#255#166#213#210#255#177#199#197#255#139#188#180#255 - +'x'#188#176#255'u'#192#180#255'i'#188#174#255'f'#183#168#255#0#0#0#0#137#182 - +#171#255#141#189#181#255#129#193#182#255'_'#199#187#255'e'#200#187#255'|'#184 - +#169#255'i'#169#153#255'c'#169#155#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#179#217#211#255#137#210#199#255's'#208#196#255#153#207#201#255#162#199#192 - +#255#127#191#180#255'o'#188#175#255'z'#189#178#255'w'#186#175#255'q'#186#172 - +#255#0#0#0#0#141#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175#255'R' - +#188#172#255'j'#178#163#255'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255 - +#141#195#186#255#134#194#183#255'x'#192#179#255'u'#183#172#255#134#183#173 - +#255#134#182#173#255#135#186#178#255#0#0#0#0#134#204#196#255#142#189#182#255 - +'k'#176#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255 - +'}'#189#176#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#144#218#211#255#152#209#200 - +#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181 - +#255#136#185#175#255#142#186#176#255#136#185#176#255#128#182#173#255#0#0#0#0 - +'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148#255'R'#172#153#255 - +'k'#184#168#255'{'#190#177#255#128#198#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0'r'#209#196#255#130#202#190#255'}'#195#183#255'{'#181#171#255'{'#186#174 - +#255'r'#194#180#255#139#197#187#255#163#197#194#255#155#200#196#255#137#200 - +#190#255'p'#183#170#255#0#0#0#0'j'#191#176#255'^'#178#161#255'g'#166#151#255 - +'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#255'b'#196#183#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'b'#194#178#255's'#196#181#255#128#195#183#255 - +#133#184#176#255'}'#186#174#255'w'#194#180#255#142#197#187#255#140#203#197 - +#255#134#212#203#255'}'#207#193#255'a'#188#172#255#0#0#0#0'n'#182#169#255'\' - +#178#160#255'p'#169#156#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a' - +#178#162#255'M'#184#167#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172#255'j' - +#188#175#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255 - +'|'#188#178#255'j'#197#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255#0 - +#0#0#0'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194 - +#180#255'h'#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0'k'#189#174#255#142#199#189#255#161#201#194#255#144#196#188 - +#255#130#201#189#255't'#186#175#255'e'#185#172#255'_'#192#176#255'j'#182#167 - +#255'd'#176#161#255#0#0#0#0'j'#176#163#255's'#188#175#255#138#191#183#255#132 - +#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255'K'#165#145#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'm'#187#172#255#141#201#190#255#159#205 - +#201#255#150#206#198#255#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182 - +#164#255'g'#179#164#255'd'#176#161#255#0#0#0#0'p'#179#166#255'v'#190#178#255 - +'~'#191#181#255'i'#199#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255 - +':'#159#136#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#141#205#197 - +#255#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186#170#255'c'#173#158 - +#255'i'#175#160#255'l'#181#167#255'c'#182#167#255#0#0#0#0#127#193#183#255'l' - +#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'=' - +#153#131#255'@'#161#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'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255'X'#176#159 - +#255'l'#176#163#255'l'#187#174#255'`'#188#172#255#0#0#0#0'w'#194#184#255'c' - ,#178#162#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255'H' - +#159#139#255'`'#176#158#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']'#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255'e' - +#187#171#255'e'#193#177#255'\'#185#166#255#0#0#0#0'\'#185#172#255'Y'#173#156 - +#255'O'#163#144#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164 - +#255'z'#195#181#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'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194#184#255#128#202 - +#190#255's'#196#181#255'g'#178#163#255#0#0#0#0'I'#179#160#255'G'#172#152#255 - +'D'#162#141#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm'#191#175#255 - +'q'#197#186#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'_'#176#162#255't'#179#169#255#130#194#188#255'{'#200#192#255'o' - +#185#176#255'i'#173#161#255#0#0#0#0'?'#173#152#255'@'#174#152#255'@'#165#143 - +#255'K'#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255'K'#192#177 - +#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'`'#176#162#255'['#185#173#255'T'#184#171#255'R'#174#159#255'['#172 - +#156#255#0#0#0#0'H'#178#159#255'W'#187#168#255'`'#184#167#255'k'#192#176#255 - +'b'#183#166#255'T'#170#150#255'@'#174#154#255'('#178#156#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'M' - +#189#171#255'?'#181#161#255'C'#172#153#255'S'#174#155#255#0#0#0#0#0#0#0#0'e' - +#193#178#255'm'#196#182#255'k'#201#187#255'a'#182#165#255'N'#162#145#255'5' - +#156#136#255''''#159#136#136#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#199#188 - +'5'#152#201#193'S'#146#203#193#232#132#197#186#255'~'#197#185#255#128#197#187 - +#255#137#196#187#255#145#196#185#255#142#196#184#255#133#193#181#255#148#204 - +#194#255#169#228#221#255#167#228#221#255#142#198#189#255's'#180#166#255'p' - +#174#160#255'y'#183#171#255#133#195#185#255#146#195#186#255#134#191#182'#'#0 - +#0#0#0#0#0#0#0#0#0#0#0'w'#190#180'+y'#188#177#255#134#194#183#255#138#199#188 - +#255'}'#193#180#255'u'#190#178#255't'#190#178#255#139#198#187#255#158#204#195 - +#255#157#202#195#255#148#201#192#255#138#199#189#255#135#216#207#255#150#225 - +#217#255#141#196#186#255'p'#175#163#255'l'#174#161#255'z'#188#174#255#132#194 - +#183#255#139#191#181#255'p'#196#185#228'x'#199#188'#'#0#0#0#0#0#0#0#0'q'#186 - +#174'ar'#183#171#255#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185 - +#173#255'm'#184#170#255#144#202#193#255#168#217#211#255#166#214#208#255#168 - +#211#204#255#132#195#184#255'm'#196#183#255#127#207#195#255#131#190#178#255 - +'t'#176#164#255'l'#176#162#255#128#191#179#255#133#189#179#255'r'#179#167#255 - +'`'#188#174#223'n'#191#178'<'#0#0#0#0#0#0#0#0'r'#185#172#255'm'#180#167#255 - +'}'#185#174#255#150#202#194#255#143#200#191#255'v'#187#175#255's'#186#174#255 - +#146#199#192#255#156#213#207#255#159#214#208#255#173#208#202#255#138#189#178 - +#255'q'#184#172#255'u'#193#181#255'x'#188#176#255'z'#183#171#255'|'#188#174 - +#255#139#197#187#255#127#185#173#255'c'#172#157#255'c'#175#162#255'p'#180#166 - +#255#0#0#0#0#0#0#0#0'~'#189#179#255'r'#183#170#255'~'#185#174#255#160#208#200 - +#255#157#211#202#255#133#196#186#255#135#190#181#255#140#187#178#255#134#195 - +#188#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255'|'#186#176#255#131 - +#194#183#255#139#198#188#255#141#201#191#255#141#200#190#255'w'#179#168#255 - +'b'#167#151#255'a'#169#153#255'm'#178#164#255#0#0#0#0#0#0#0#0#142#198#189#255 - +#130#191#179#255#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201 - +#255#161#195#189#255#0#0#255#255#0#0#255#255#0#0#255#255'|'#188#177#255'|' - +#182#171#255#0#0#255#255#0#0#255#255#0#0#255#255#145#206#196#255'~'#202#193 - +#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255'q'#180#167 - +#255#0#0#0#0#0#0#0#0#145#204#195#255#145#202#192#255#157#203#196#255#161#217 - +#209#255#146#223#216#255#166#213#210#255#0#0#255#255#0#0#255#255'x'#188#176 - +#255'u'#192#180#255'i'#188#174#255'f'#183#168#255'u'#177#165#255#137#182#171 - +#255#0#0#255#255#0#0#255#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i' - +#169#153#255'c'#169#155#255'u'#181#170#255#0#0#0#0#0#0#0#0#154#212#203#255 - +#172#220#214#255#179#217#211#255#137#210#199#255's'#208#196#255#0#0#255#255#0 - +#0#255#255#127#191#180#255'o'#188#175#255'z'#189#178#255'w'#186#175#255'q' - +#186#172#255'{'#191#178#255#141#192#184#255#141#185#176#255#0#0#255#255#0#0 - +#255#255'R'#188#172#255'j'#178#163#255'l'#172#158#255'n'#177#162#255'|'#183 - +#170#255#0#0#0#0#0#0#0#0#150#218#210#255#179#226#221#255#177#220#214#255'v' - +#198#184#255'p'#192#178#255#0#0#255#255#134#194#183#255'x'#192#179#255'u'#183 - ,#172#255#134#183#173#255#0#0#255#255#0#0#255#255#131#197#188#255#134#204#196 - +#255#142#189#182#255'k'#176#163#255#0#0#255#255'L'#173#154#255'c'#178#162#255 - +'r'#180#165#255'}'#189#176#255#130#186#173#255#0#0#0#0#0#0#0#0'u'#215#206#255 - +#144#218#211#255#152#209#200#255's'#192#180#255#0#0#255#255#0#0#255#255'u' - +#192#180#255'{'#192#181#255#136#185#175#255#142#186#176#255#0#0#255#255#0#0 - +#255#255's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255#0#0#255 - +#255#0#0#255#255'k'#184#168#255'{'#190#177#255#128#198#188#255#131#192#182 - +#255#0#0#0#0#0#0#0#0'f'#208#194#255'r'#209#196#255#130#202#190#255'}'#195#183 - +#255#0#0#255#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197#194 - +#255#155#200#196#255#0#0#255#255#0#0#255#255'n'#182#170#255'j'#191#176#255'^' - +#178#161#255'g'#166#151#255#0#0#255#255#0#0#255#255'i'#186#171#255'v'#189#176 - +#255'b'#196#183#255's'#196#187#255#0#0#0#0#0#0#0#0'_'#196#182#255'b'#194#178 - +#255's'#196#181#255#128#195#183#255#0#0#255#255'}'#186#174#255'w'#194#180#255 - +#142#197#187#255#140#203#197#255#134#212#203#255#0#0#255#255#0#0#255#255'p' - +#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156#255#0#0#255#255#0#0#255 - +#255'f'#184#170#255'a'#178#162#255'M'#184#167#255'c'#190#176#255#0#0#0#0#0#0 - +#0#0'_'#188#176#255']'#188#172#255'j'#188#175#255#132#195#183#255#0#0#255#255 - +#0#0#255#255'x'#194#182#255'|'#188#178#255'j'#197#184#255'g'#204#191#255#0#0 - +#255#255#0#0#255#255'g'#179#164#255'k'#177#166#255'e'#181#166#255#127#179#166 - +#255#0#0#255#255#0#0#255#255'h'#183#167#255'U'#171#153#255'P'#172#154#255'[' - +#177#161#255#0#0#0#0#0#0#0#0'x'#191#178#255'h'#188#173#255'k'#189#174#255#142 - +#199#189#255#161#201#194#255#0#0#255#255#130#201#189#255't'#186#175#255'e' - +#185#172#255'_'#192#176#255#0#0#255#255#0#0#255#255'`'#176#160#255'j'#176#163 - +#255's'#188#175#255#138#191#183#255#0#0#255#255'x'#201#189#255'g'#177#161#255 - +'M'#163#144#255'K'#165#145#255'R'#168#151#255#0#0#0#0#0#0#0#0#140#202#191#255 - +'w'#194#181#255'm'#187#172#255#141#201#190#255#159#205#201#255#0#0#255#255#0 - +#0#255#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179#164#255'd'#176 - +#161#255']'#175#158#255'p'#179#166#255'v'#190#178#255#0#0#255#255#0#0#255#255 - +'_'#196#182#255'^'#169#150#255'C'#157#137#255':'#159#136#255'O'#167#148#255#0 - +#0#0#0#0#0#0#0#145#209#199#255#133#204#192#255'|'#195#184#255#141#205#197#255 - +#141#207#198#255#137#203#195#255#0#0#255#255#0#0#255#255'c'#173#158#255'i' - +#175#160#255'l'#181#167#255'c'#182#167#255'g'#185#170#255#127#193#183#255#0#0 - +#255#255#0#0#255#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'='#153#131 - +#255'@'#161#139#255']'#173#156#255#0#0#0#0#0#0#0#0#136#211#201#255#142#214 - +#204#255#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188 - +#175#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255 - +#255#0#0#255#255#0#0#255#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N' - +#168#148#255'H'#159#139#255'`'#176#158#255't'#182#169#255#0#0#0#0#0#0#0#0'[' - +#203#190#255'o'#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']' - +#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187#171#204#0#0 - +#255#255#0#0#255#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163#144 - +#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195#181 - +#255'z'#188#174#255#0#0#0#0#0#0#0#0'<'#193#175#255'G'#199#183#255'_'#193#177 - +#255'\'#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169 - +#255#131#194#184#255#128#202#190#255's'#196#181#255'g'#178#163#255'\'#176#162 - +#255'I'#179#160#255'G'#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164 - +#255'q'#192#178#255'm'#191#175#255'q'#197#186#255's'#185#174#255#0#0#0#0#0#0 - +#0#0'@'#186#166'P5'#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255 - +'X'#193#177#255'_'#176#162#255't'#179#169#255#130#194#188#255'{'#200#192#255 - +'o'#185#176#255'i'#173#161#255'U'#170#153#255'?'#173#152#255'@'#174#152#255 - +'@'#165#143#255'K'#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255 - +'K'#192#177#255']'#179#167#152#0#0#0#0#0#0#0#0'D'#181#161'%:'#175#155#159'I' - +#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179#163#255'`' - +#176#162#255'['#185#173#255'T'#184#171#255'R'#174#159#255'['#172#156#255'N' - +#168#150#255'H'#178#159#255'W'#187#168#255'`'#184#167#255'k'#192#176#255'b' - +#183#166#255'T'#170#150#255'@'#174#154#255'('#178#156#209'N'#178#162#29#0#0#0 - +#0#0#0#0#0#0#0#0#0'H'#180#162'+U'#179#163'$_'#184#169#255'r'#199#186#255'm' - +#202#187#255'e'#191#176#255'Z'#184#167#255'M'#189#171#255'?'#181#161#255'C' - +#172#153#255'S'#174#155#255'R'#174#153#255'V'#187#170#255'e'#193#178#255'm' - +#196#182#255'k'#201#187#255'a'#182#165#255'N'#162#145#255'5'#156#136'b)'#161 - +#138#10#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#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'TImage' - +'List'#12'ImageListHot'#6'Height'#2#24#5'Width'#2#24#4'left'#3#180#1#3'top'#3 - ,'p'#1#0#0#10'TImageList'#12'ImageListDis'#6'Height'#2#24#5'Width'#2#24#4'lef' - +'t'#3#216#1#3'top'#3'p'#1#0#0#10'TPopupMenu'#13'PopupMenuTray'#6'Images'#7#15 - +'ImageListNormal'#4'left'#3#248#1#3'top'#3'p'#1#0#9'TMenuItem'#12'itemTrayPr' - +'ev'#7'Caption'#6#14'Previous Track'#11'Bitmap.Data'#10':'#9#0#0'6'#9#0#0'BM' - +'6'#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'H'#180#162#255'U'#179#163#255'_'#184#169#255'r'#199#186#255 - +'m'#202#187#255'e'#191#176#255'Z'#184#167#255'M'#189#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'i'#195#180'"a'#182#165#255'N'#162 - +#145#255'5'#156#136#255'%'#157#135'"'#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0':'#175 - +#155#255'I'#174#156#255'K'#180#163#255'X'#193#177#255'X'#190#172#255'Z'#179 - +#163#255'`'#176#162#255'['#185#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'k'#192#176#255'b'#183#166#255'T'#170#150#255'@'#174#154 - +#255'('#178#156#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'5'#181#159#255'B'#180#161 - +#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255't'#179#169 - +#255#130#194#188#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'@'#165 - +#143#255'K'#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255'K'#192 - +#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G'#199#183#255'_'#193#177#255'\'#197 - +#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194 - +#184#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G'#172#152#255'D'#162#141 - +#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm'#191#175#255'q'#197#186 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'o'#214#202#255#144#208#198#255#128#207 - +#195#255'a'#192#178#255']'#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182 - +#165#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'['#185#171#204'Y'#173#156#255'O'#163 - +#144#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195 - +#181#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#142#214#204#255#157#210#204#255#149 - +#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255'X' - +#176#159#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#184#255'c'#178#162#255'P' - +#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255'H'#159#139#255'`' - +#176#158#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204#192#255'|'#195#184#255 - +#141#205#197#255#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186#170 - +#255'c'#173#158#255#0#0#0#0#0#0#0#0#0#0#0#0'g'#185#170#255#127#193#183#255'l' - +#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'=' - +#153#131#255'@'#161#139#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#181#255'm' - +#187#172#255#141#201#190#255#159#205#201#255#150#206#198#255#140#209#197#255 - +'q'#188#175#255'a'#176#161#255#0#0#0#0#0#0#0#0'd'#176#161#255']'#175#158#255 - +'p'#179#166#255'v'#190#178#255'~'#191#181#255'i'#199#187#255'_'#196#182#255 - +'^'#169#150#255'C'#157#137#255':'#159#136#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201#194#255#144#196#188 - +#255#130#201#189#255't'#186#175#255'e'#185#172#255#0#0#0#0'j'#182#167#255'd' - +#176#161#255'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183#255#132 - +#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144#255'K'#165#145#255#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172#255'j'#188#175#255#132#195#183#255 - +#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188#178#255'j'#197#184#255 - +#0#0#0#0'm'#191#178#255'\'#183#166#255'g'#179#164#255'k'#177#166#255'e'#181 - +#166#255#127#179#166#255#129#184#172#255'u'#194#180#255'h'#183#167#255'U'#171 - +#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'b'#194#178#255's'#196 - +#181#255#128#195#183#255#133#184#176#255'}'#186#174#255'w'#194#180#255#142 - +#197#187#255#140#203#197#255#134#212#203#255'}'#207#193#255'a'#188#172#255'p' - +#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156#255'l'#170#154#255'f' - +#185#169#255'f'#184#170#255'a'#178#162#255'M'#184#167#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0'r'#209#196#255#130#202#190#255'}'#195#183#255'{'#181#171#255'{' - +#186#174#255'r'#194#180#255#139#197#187#255#163#197#194#255#155#200#196#255 - +#137#200#190#255'p'#183#170#255'n'#182#170#255'j'#191#176#255'^'#178#161#255 - +'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#255 - +'b'#196#183#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#144#218#211#255#152#209#200 - +#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181 - +#255#136#185#175#255#0#0#0#0#136#185#176#255#128#182#173#255's'#189#179#255 - +'n'#201#188#255't'#186#173#255'j'#170#155#255'T'#166#148#255'R'#172#153#255 - +'k'#184#168#255'{'#190#177#255#128#198#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186 - +#255#134#194#183#255'x'#192#179#255'u'#183#172#255#0#0#0#0#134#182#173#255 - ,#135#186#178#255#131#197#188#255#134#204#196#255#142#189#182#255'k'#176#163 - +#255'O'#176#157#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214#255#179#217#211#255#137#210 - +#199#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o' - +#188#175#255#0#0#0#0#0#0#0#0'q'#186#172#255'{'#191#178#255#141#192#184#255 - +#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j'#178#163#255 - +'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#145#202#192 - +#255#157#203#196#255#161#217#209#255#146#223#216#255#166#213#210#255#177#199 - +#197#255#139#188#180#255'x'#188#176#255#0#0#0#0#0#0#0#0#0#0#0#0'u'#177#165 - +#255#137#182#171#255#141#189#181#255#129#193#182#255'_'#199#187#255'e'#200 - +#187#255'|'#184#169#255'i'#169#153#255'c'#169#155#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#130#191#179#255#140#191#182#255#169#214#208#255#168#222#214#255#158 - +#207#201#255#161#195#189#255#142#183#177#255#129#188#179#255#0#0#0#0#0#0#0#0 - +#0#0#0#0'}'#175#165'f'#138#182#173#255#145#197#188#255#145#206#196#255'~'#202 - +#193#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#170#255'~'#185#174#255#160#208#200#255#157 - +#211#202#255#133#196#186#255#135#190#181#255#140#187#178#255#134#195#188#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'|'#186#176#255#131#194#183#255#139#198#188 - +#255#141#201#191#255#141#200#190#255'w'#179#168#255'b'#167#151#255'a'#169#153 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'm'#180#167#255'}'#185#174#255#150#202 - +#194#255#143#200#191#255'v'#187#175#255's'#186#174#255#146#199#192#255#156 - +#213#207#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'x'#188#176#255'z'#183 - +#171#255'|'#188#174#255#139#197#187#255#127#185#173#255'c'#172#157#255'c'#175 - +#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#171#255#129#188#177#255#138 - +#197#188#255'~'#194#184#255'q'#185#173#255'm'#184#170#255#144#202#193#255#168 - +#217#211#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't'#176#164#255 - +'l'#176#162#255#128#191#179#255#133#189#179#255'r'#179#167#255'`'#188#174#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#188#177#255#134#194#183#255#138#199#188 - +#255'}'#193#180#255'u'#190#178#255't'#190#178#255#139#198#187#255#158#204#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'l'#174#161#255 - +'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185#255#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#131#198#187#136#152#201#193#255#146#203#193#255#132#197 - +#186#255'~'#197#185#255#128#197#187#255#137#196#187#255#144#195#184#238#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'p'#174#160#255'y'#183#171 - +#255#133#195#185#255#146#195#186#255#134#191#182#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#10'ImageIndex'#2#4#7'OnClick'#7#9'prevClick' - +#0#0#9'TMenuItem'#12'itemTrayNext'#7'Caption'#6#10'Next Track'#11'Bitmap.Dat' - +'a'#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'C'#180#157'"U'#179#163#255'_'#184 - +#169#255'r'#199#186#255'l'#201#186#170#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0'V'#187#170#255'e'#193#178#255'm'#196#182#255'k'#201#187 - +#255'a'#182#165#255'N'#162#145#255'5'#156#136#255')'#161#138#255#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0':'#175#155#255'I'#174#156#255'K'#180#163#255'X'#193#177 - +#255'X'#190#172#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 - +'H'#178#159#255'W'#187#168#255'`'#184#167#255'k'#192#176#255'b'#183#166#255 - +'T'#170#150#255'@'#174#154#255'('#178#156#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'5'#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255 - +'_'#176#162#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'?'#173#152 - +#255'@'#174#152#255'@'#165#143#255'K'#171#151#255'`'#181#164#255'b'#182#164 - +#255'V'#186#168#255'K'#192#177#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'G'#199#183 - +#255'_'#193#177#255'\'#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161 - +#255's'#181#169#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'I'#179#160#255'G' - +#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm' - +#191#175#255'q'#197#186#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'o'#214#202#255 - +#144#208#198#255#128#207#195#255'a'#192#178#255']'#179#166#255'c'#177#164#255 - +'Z'#178#162#255'\'#182#165#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'\'#185#172#255 - +'Y'#173#156#255'O'#163#144#255'2'#162#138#255'I'#175#155#255'f'#183#167#255 - +'h'#180#164#255'z'#195#181#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#142#214#204 - +#255#157#210#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175 - ,#255'Q'#182#164#255'X'#176#159#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'w'#194#184 - +#255'c'#178#162#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148 - +#255'H'#159#139#255'`'#176#158#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#133#204 - +#192#255'|'#195#184#255#141#205#197#255#141#207#198#255#137#203#195#255'}' - +#203#191#255'`'#186#170#255'c'#173#158#255'i'#175#160#255#0#0#0#0#0#0#0#0#0#0 - +#0#0#127#193#183#255'l'#184#169#255']'#178#163#255'K'#187#169#255'D'#181#162 - +#255'M'#163#143#255'='#153#131#255'@'#161#139#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0'w'#194#181#255'm'#187#172#255#141#201#190#255#159#205#201#255#150#206 - +#198#255#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179 - +#164#255#0#0#0#0#0#0#0#0'p'#179#166#255'v'#190#178#255'~'#191#181#255'i'#199 - +#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255':'#159#136#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0'h'#188#173#255'k'#189#174#255#142#199#189#255#161 - +#201#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_' - +#192#176#255'j'#182#167#255'd'#176#161#255#0#0#0#0'j'#176#163#255's'#188#175 - +#255#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177#161#255'M'#163#144 - +#255'K'#165#145#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0']'#188#172#255'j'#188#175 - +#255#132#195#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188 - +#178#255'j'#197#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255#0#0#0#0 - +'k'#177#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194#180#255 - +'h'#183#167#255'U'#171#153#255'P'#172#154#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +'b'#194#178#255's'#196#181#255#128#195#183#255#133#184#176#255'}'#186#174#255 - +'w'#194#180#255#142#197#187#255#140#203#197#255#134#212#203#255'}'#207#193 - +#255'a'#188#172#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156 - +#255'l'#170#154#255'f'#185#169#255'f'#184#170#255'a'#178#162#255'M'#184#167 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#209#196#255#130#202#190#255'}'#195 - +#183#255'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197 - +#194#255#155#200#196#255#137#200#190#255'p'#183#170#255'n'#182#170#255'j'#191 - +#176#255'^'#178#161#255'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186 - +#171#255'v'#189#176#255'b'#196#183#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#144 - +#218#211#255#152#209#200#255's'#192#180#255'r'#183#171#255'~'#186#176#255'u' - +#192#180#255'{'#192#181#255#136#185#175#255#142#186#176#255#136#185#176#255 - +#128#182#173#255's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170#155#255 - +'T'#166#148#255'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198#188#255 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#179#226#221#255#177#220#214#255'v'#198#184 - +#255'p'#192#178#255#141#195#186#255#134#194#183#255'x'#192#179#255'u'#183#172 - +#255#134#183#173#255#134#182#173#255#135#186#178#255#0#0#0#0#134#204#196#255 - +#142#189#182#255'k'#176#163#255'O'#176#157#255'L'#173#154#255'c'#178#162#255 - +'r'#180#165#255'}'#189#176#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#172#220#214 - +#255#179#217#211#255#137#210#199#255's'#208#196#255#153#207#201#255#162#199 - +#192#255#127#191#180#255'o'#188#175#255'z'#189#178#255'w'#186#175#255#0#0#0#0 - +#0#0#0#0#141#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188 - +#172#255'j'#178#163#255'l'#172#158#255'n'#177#162#255#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216#255#166 - +#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255'u'#192#180#255#0 - +#0#0#0#0#0#0#0#0#0#0#0#137#182#171#255#141#189#181#255#129#193#182#255'_'#199 - +#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c'#169#155#255#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#130#191#179#255#140#191#182#255#169#214#208#255#168 - +#222#214#255#158#207#201#255#161#195#189#255#142#183#177#255#129#188#179#255 - +#129#192#183#255#0#0#0#0#0#0#0#0#0#0#0#0#138#182#173#255#145#197#188#255#145 - +#206#196#255'~'#202#193#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`' - +#168#152#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#170#255'~'#185#174#255 - +#160#208#200#255#157#211#202#255#133#196#186#255#135#190#181#255#140#187#178 - +#255#134#195#188#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'|'#186#176#255#131#194 - +#183#255#139#198#188#255#141#201#191#255#141#200#190#255'w'#179#168#255'b' - +#167#151#255'a'#169#153#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'm'#180#167#255'}' - +#185#174#255#150#202#194#255#143#200#191#255'v'#187#175#255's'#186#174#255 - +#146#199#192#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'u'#193#181#255'x' - +#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185#173#255'c' - +#172#157#255'c'#175#162#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'r'#183#171#255 - +#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173#255'm'#184#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#127#207#195#255#131#190#178 - +#255't'#176#164#255'l'#176#162#255#128#191#179#255#133#189#179#255'r'#179#167 - +#255'`'#188#174#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'y'#188#177#255#134#194 - +#183#255#138#199#188#255'}'#193#180#255'u'#190#178#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#150#225#217#255#141#196#186#255'p'#175#163 - +#255'l'#174#161#255'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185 - +#255#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#132#199#188#255#152#201#193#255#146#203 - +#193#255#132#197#186#255'~'#197#185#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#166#227#220#238#142#198#189#255's'#180#166#255'p'#174#160 - +#255'y'#183#171#255#133#195#185#255#146#195#186#255#134#191#182#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#10'ImageIndex'#2#3#7'OnClick' - +#7#9'nextClick'#0#0#9'TMenuItem'#12'itemTrayStop'#7'Caption'#6#4'Stop'#11'Bi' - +'tmap.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'H'#180#162#255'U'#179#163 - +#255'_'#184#169#255'r'#199#186#255'm'#202#187#255'e'#191#176#255'Z'#184#167 - +#255'M'#189#171#255'?'#181#161#255'C'#172#153#255'S'#174#155#255'R'#174#153 - +#255'V'#187#170#255'e'#193#178#255'm'#196#182#255'k'#201#187#255'a'#182#165 - +#255'N'#162#145#255'5'#156#136#255')'#161#138#255#0#0#0#0#0#0#0#0#0#0#0#0'D' - +#181#161#255':'#175#155#255'I'#174#156#255'K'#180#163#255'X'#193#177#255'X' - +#190#172#255'Z'#179#163#255'`'#176#162#255'['#185#173#255'T'#184#171#255'R' - +#174#159#255'['#172#156#255'N'#168#150#255'H'#178#159#255'W'#187#168#255'`' - +#184#167#255'k'#192#176#255'b'#183#166#255'T'#170#150#255'@'#174#154#255'(' - +#178#156#255'N'#178#162#255#0#0#0#0#0#0#0#0'@'#186#166#255'5'#181#159#255'B' - +#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_'#176#162#255't' - +#179#169#255#130#194#188#255'{'#200#192#255'o'#185#176#255'i'#173#161#255'U' - +#170#153#255'?'#173#152#255'@'#174#152#255'@'#165#143#255'K'#171#151#255'`' - +#181#164#255'b'#182#164#255'V'#186#168#255'K'#192#177#255']'#179#167#255#0#0 - +#0#0#0#0#0#0'<'#193#175#255'G'#199#183#255'_'#193#177#255'\'#197#180#255'W' - +#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255#131#194#184#255#128 - +#202#190#255's'#196#181#255'g'#178#163#255'\'#176#162#255'I'#179#160#255'G' - +#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q'#192#178#255'm' - +#191#175#255'q'#197#186#255's'#185#174#255#0#0#0#0#0#0#0#0'['#203#190#255'o' - +#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']'#179#166#255'c' - +#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187#171#255'e'#193#177#255'\' - +#185#166#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163#144#255'2' - +#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195#181#255'z' - +#188#174#255#0#0#0#0#0#0#0#0#136#211#201#255#142#214#204#255#157#210#204#255 - +#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182#164#255 - +'X'#176#159#255'l'#176#163#255'l'#187#174#255'`'#188#172#255'l'#191#178#255 - +'w'#194#184#255'c'#178#162#255'P'#169#151#255'9'#171#149#255'@'#172#150#255 - +'N'#168#148#255'H'#159#139#255'`'#176#158#255't'#182#169#255#0#0#0#0#0#0#0#0 - +#145#209#199#255#133#204#192#255'|'#195#184#255#141#205#197#255#141#207#198 - +#255#137#203#195#255'}'#203#191#255'`'#186#170#255'c'#173#158#255'i'#175#160 - +#255'l'#181#167#255'c'#182#167#255'g'#185#170#255#127#193#183#255'l'#184#169 - +#255']'#178#163#255'K'#187#169#255'D'#181#162#255'M'#163#143#255'='#153#131 - +#255'@'#161#139#255']'#173#156#255#0#0#0#0#0#0#0#0#140#202#191#255'w'#194#181 - +#255'm'#187#172#255#141#201#190#255#159#205#201#255#150#206#198#255#140#209 - +#197#255'q'#188#175#255'a'#176#161#255'X'#182#164#255'g'#179#164#255'd'#176 - +#161#255']'#175#158#255'p'#179#166#255'v'#190#178#255'~'#191#181#255'i'#199 - +#187#255'_'#196#182#255'^'#169#150#255'C'#157#137#255':'#159#136#255'O'#167 - +#148#255#0#0#0#0#0#0#0#0'x'#191#178#255'h'#188#173#255'k'#189#174#255#142#199 - +#189#255#161#201#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e' - +#185#172#255'_'#192#176#255'j'#182#167#255'd'#176#161#255'`'#176#160#255'j' - +#176#163#255's'#188#175#255#138#191#183#255#132#197#187#255'x'#201#189#255'g' - +#177#161#255'M'#163#144#255'K'#165#145#255'R'#168#151#255#0#0#0#0#0#0#0#0'_' - +#188#176#255']'#188#172#255'j'#188#175#255#132#195#183#255#144#189#182#255 - +#128#186#177#255'x'#194#182#255'|'#188#178#255'j'#197#184#255'g'#204#191#255 - +'m'#191#178#255'\'#183#166#255'g'#179#164#255'k'#177#166#255'e'#181#166#255 - +#127#179#166#255#129#184#172#255'u'#194#180#255'h'#183#167#255'U'#171#153#255 - +'P'#172#154#255'['#177#161#255#0#0#0#0#0#0#0#0'_'#196#182#255'b'#194#178#255 - +'s'#196#181#255#128#195#183#255#133#184#176#255'}'#186#174#255'w'#194#180#255 - +#142#197#187#255#140#203#197#255#134#212#203#255'}'#207#193#255'a'#188#172 - +#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156#255'l'#170#154 - ,#255'f'#185#169#255'f'#184#170#255'a'#178#162#255'M'#184#167#255'c'#190#176 - +#255#0#0#0#0#0#0#0#0'f'#208#194#255'r'#209#196#255#130#202#190#255'}'#195#183 - +#255'{'#181#171#255'{'#186#174#255'r'#194#180#255#139#197#187#255#163#197#194 - +#255#155#200#196#255#137#200#190#255'p'#183#170#255'n'#182#170#255'j'#191#176 - +#255'^'#178#161#255'g'#166#151#255'['#163#145#255'X'#175#157#255'i'#186#171 - +#255'v'#189#176#255'b'#196#183#255's'#196#187#255#0#0#0#0#0#0#0#0'u'#215#206 - +#255#144#218#211#255#152#209#200#255's'#192#180#255'r'#183#171#255'~'#186#176 - +#255'u'#192#180#255'{'#192#181#255#136#185#175#255#142#186#176#255#136#185 - +#176#255#128#182#173#255's'#189#179#255'n'#201#188#255't'#186#173#255'j'#170 - +#155#255'T'#166#148#255'R'#172#153#255'k'#184#168#255'{'#190#177#255#128#198 - +#188#255#131#192#182#255#0#0#0#0#0#0#0#0#150#218#210#255#179#226#221#255#177 - +#220#214#255'v'#198#184#255'p'#192#178#255#141#195#186#255#134#194#183#255'x' - +#192#179#255'u'#183#172#255#134#183#173#255#134#182#173#255#135#186#178#255 - +#131#197#188#255#134#204#196#255#142#189#182#255'k'#176#163#255'O'#176#157 - +#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176#255#130#186#173 - +#255#0#0#0#0#0#0#0#0#154#212#203#255#172#220#214#255#179#217#211#255#137#210 - +#199#255's'#208#196#255#153#207#201#255#162#199#192#255#127#191#180#255'o' - +#188#175#255'z'#189#178#255'w'#186#175#255'q'#186#172#255'{'#191#178#255#141 - +#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175#255'R'#188#172#255'j' - +#178#163#255'l'#172#158#255'n'#177#162#255'|'#183#170#255#0#0#0#0#0#0#0#0#145 - +#204#195#255#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216#255 - +#166#213#210#255#177#199#197#255#139#188#180#255'x'#188#176#255'u'#192#180 - +#255'i'#188#174#255'f'#183#168#255'u'#177#165#255#137#182#171#255#141#189#181 - +#255#129#193#182#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153 - +#255'c'#169#155#255'u'#181#170#255#0#0#0#0#0#0#0#0#142#198#189#255#130#191 - +#179#255#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161 - +#195#189#255#142#183#177#255#129#188#179#255#129#192#183#255'|'#188#177#255 - +'|'#182#171#255#127#177#167#255#138#182#173#255#145#197#188#255#145#206#196 - +#255'~'#202#193#255'~'#199#190#255'z'#181#168#255'f'#166#150#255'`'#168#152 - +#255'q'#180#167#255#0#0#0#0#0#0#0#0'~'#189#179#255'r'#183#170#255'~'#185#174 - +#255#160#208#200#255#157#211#202#255#133#196#186#255#135#190#181#255#140#187 - +#178#255#134#195#188#255#145#201#195#255#154#194#188#255#140#182#174#255#127 - +#180#170#255'|'#186#176#255#131#194#183#255#139#198#188#255#141#201#191#255 - +#141#200#190#255'w'#179#168#255'b'#167#151#255'a'#169#153#255'm'#178#164#255 - +#0#0#0#0#0#0#0#0'r'#185#172#255'm'#180#167#255'}'#185#174#255#150#202#194#255 - +#143#200#191#255'v'#187#175#255's'#186#174#255#146#199#192#255#156#213#207 - +#255#159#214#208#255#173#208#202#255#138#189#178#255'q'#184#172#255'u'#193 - +#181#255'x'#188#176#255'z'#183#171#255'|'#188#174#255#139#197#187#255#127#185 - +#173#255'c'#172#157#255'c'#175#162#255'p'#180#166#255#0#0#0#0#0#0#0#0'q'#186 - +#174#255'r'#183#171#255#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185 - +#173#255'm'#184#170#255#144#202#193#255#168#217#211#255#166#214#208#255#168 - +#211#204#255#132#195#184#255'm'#196#183#255#127#207#195#255#131#190#178#255 - +'t'#176#164#255'l'#176#162#255#128#191#179#255#133#189#179#255'r'#179#167#255 - +'`'#188#174#255'n'#191#178#255#0#0#0#0#0#0#0#0'w'#190#180#255'y'#188#177#255 - +#134#194#183#255#138#199#188#255'}'#193#180#255'u'#190#178#255't'#190#178#255 - +#139#198#187#255#158#204#195#255#157#202#195#255#148#201#192#255#138#199#189 - +#255#135#216#207#255#150#225#217#255#141#196#186#255'p'#175#163#255'l'#174 - +#161#255'z'#188#174#255#132#194#183#255#139#191#181#255'p'#196#185#255'x'#199 - +#188#255#0#0#0#0#0#0#0#0#0#0#0#0#132#199#188#255#152#201#193#255#146#203#193 - +#255#132#197#186#255'~'#197#185#255#128#197#187#255#137#196#187#255#145#196 - +#185#255#142#196#184#255#133#193#181#255#148#204#194#255#169#228#221#255#167 - +#228#221#255#142#198#189#255's'#180#166#255'p'#174#160#255'y'#183#171#255#133 - +#195#185#255#146#195#186#255#134#191#182#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#10'ImageIndex'#2#0#7'OnClick'#7#9'stopClick'#0#0#9 - +'TMenuItem'#12'itemTrayPlay'#7'Caption'#6#12'Play / Pause'#11'Bitmap.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'_'#184#169#255'r'#199#186 - +#255'm'#202#187#255'e'#191#176#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'I'#174#156#255'K'#180#163#255'X'#193#177 - +#255'X'#190#172#255'Z'#179#163#255'`'#176#162#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'B'#180#161#255'I'#186#169#255'T'#200 - +#182#255'X'#193#177#255'_'#176#162#255't'#179#169#255#130#194#188#255'{'#200 - +#192#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'_'#193#177#255 - +'\'#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255 - +#131#194#184#255#128#202#190#255's'#196#181#255'f'#177#162'f'#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#144#208#198#255#128#207#195#255'a'#192#178#255']'#179 - +#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187#171#255'e'#193 - +#177#255'\'#185#166#255'`'#182#169#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#157#210 - +#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255'Q'#182 - +#164#255'X'#176#159#255'l'#176#163#255'l'#187#174#255'`'#188#172#255'l'#191 - +#178#255'w'#194#184#255'c'#178#162#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'|'#195#184#255#141#205#197 - +#255#141#207#198#255#137#203#195#255'}'#203#191#255'`'#186#170#255'c'#173#158 - +#255'i'#175#160#255'l'#181#167#255'c'#182#167#255'g'#185#170#255#127#193#183 - +#255'l'#184#169#255']'#178#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#0#0#0#0#0#0#0#0'm'#187#172#255#141#201#190#255#159#205 - +#201#255#150#206#198#255#140#209#197#255'q'#188#175#255'a'#176#161#255'X'#182 - +#164#255'g'#179#164#255'd'#176#161#255']'#175#158#255'p'#179#166#255'v'#190 - +#178#255'~'#191#181#255'i'#199#187#255'_'#196#182#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'k'#189#174#255#142#199#189#255#161 - +#201#194#255#144#196#188#255#130#201#189#255't'#186#175#255'e'#185#172#255'_' - +#192#176#255'j'#182#167#255'd'#176#161#255'`'#176#160#255'j'#176#163#255's' - +#188#175#255#138#191#183#255#132#197#187#255'x'#201#189#255'g'#177#161#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'j'#188#175#255#132#195 - +#183#255#144#189#182#255#128#186#177#255'x'#194#182#255'|'#188#178#255'j'#197 - +#184#255'g'#204#191#255'm'#191#178#255'\'#183#166#255'g'#179#164#255'k'#177 - +#166#255'e'#181#166#255#127#179#166#255#129#184#172#255'u'#194#180#255'h'#183 - +#167#255'U'#171#153#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's' - +#196#181#255#128#195#183#255#133#184#176#255'}'#186#174#255'w'#194#180#255 - +#142#197#187#255#140#203#197#255#134#212#203#255'}'#207#193#255'a'#188#172 - +#255'p'#180#167#255'n'#182#169#255'\'#178#160#255'p'#169#156#255'l'#170#154 - +#255'f'#185#169#255'f'#184#170#255'a'#178#162#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#130#202#190#255'}'#195#183#255'{'#181#171#255'{'#186#174 - +#255'r'#194#180#255#139#197#187#255#163#197#194#255#155#200#196#255#137#200 - +#190#255'p'#183#170#255'n'#182#170#255'j'#191#176#255'^'#178#161#255'g'#166 - +#151#255'['#163#145#255'X'#175#157#255'i'#186#171#255'v'#189#176#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#152#209#200#255's'#192#180#255'r' - +#183#171#255'~'#186#176#255'u'#192#180#255'{'#192#181#255#136#185#175#255#142 - +#186#176#255#136#185#176#255#128#182#173#255's'#189#179#255'n'#201#188#255't' - +#186#173#255'j'#170#155#255'T'#166#148#255'R'#172#153#255'k'#184#168#255'{' - +#190#177#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#177#220#214#255 - +'v'#198#184#255'p'#192#178#255#141#195#186#255#134#194#183#255'x'#192#179#255 - +'u'#183#172#255#134#183#173#255#134#182#173#255#135#186#178#255#131#197#188 - +#255#134#204#196#255#142#189#182#255'k'#176#163#255'O'#176#157#255'L'#173#154 - +#255'c'#178#162#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 - +#179#217#211#255#137#210#199#255's'#208#196#255#153#207#201#255#162#199#192 - +#255#127#191#180#255'o'#188#175#255'z'#189#178#255'w'#186#175#255'q'#186#172 - +#255'{'#191#178#255#141#192#184#255#141#185#176#255'q'#181#167#255'S'#191#175 - +#255'R'#188#172#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#157#203#196#255#161#217#209#255#146#223#216#255#166#213#210#255#177 - +#199#197#255#139#188#180#255'x'#188#176#255'u'#192#180#255'i'#188#174#255'f' - +#183#168#255'u'#177#165#255#137#182#171#255#141#189#181#255#129#193#182#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#140#191#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161#195 - +#189#255#142#183#177#255#129#188#179#255#129#192#183#255'|'#188#177#255'|' - +#182#171#255#127#177#167#255#138#182#173#255#145#197#188#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'~' - +#185#174#255#160#208#200#255#157#211#202#255#133#196#186#255#135#190#181#255 - ,#140#187#178#255#134#195#188#255#145#201#195#255#154#194#188#255#140#182#174 - +#255#127#180#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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0'}'#185#174#255#150#202#194 - +#255#143#200#191#255'v'#187#175#255's'#186#174#255#146#199#192#255#156#213 - +#207#255#159#214#208#255#173#208#202#255#138#189#178#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#129#188#177#255#138#197#188#255'~'#194#184#255'q'#185#173 - +#255'm'#184#170#255#144#202#193#255#168#217#211#255#166#214#208#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#134#194#183#255#138#199#188#255'}' - +#193#180#255'u'#190#178#255't'#190#178#255#139#198#187#255#157#202#195'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#152#201#193#255#146 - +#203#193#255#132#197#186#255'~'#197#185#255#128#197#187#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#10 - +'ImageIndex'#2#1#7'OnClick'#7#17'itemTrayPlayClick'#0#0#9'TMenuItem'#12'item' - +'TrayExit'#7'Caption'#6#4'Exit'#11'Bitmap.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'H'#180#162'+U'#179#163'$_'#184#169#255'r'#199#186#255'm'#202#187#255 - +'e'#191#176#255'Z'#184#167#255'M'#189#171#255'?'#181#161#255'C'#172#153#255 - +'S'#174#155#255'R'#174#153#255'V'#187#170#255'e'#193#178#255'm'#196#182#255 - +'k'#201#187#255'a'#182#165#255'N'#162#145#255'5'#156#136'b)'#161#138#10#0#0#0 - +#0#0#0#0#0#0#0#0#0'D'#181#161'%:'#175#155#159'I'#174#156#255'K'#180#163#255 - +'X'#193#177#255'X'#190#172#255'Z'#179#163#255'`'#176#162#255'['#185#173#255 - +'T'#184#171#255'R'#174#159#255'['#172#156#255'N'#168#150#255'H'#178#159#255 - +'W'#187#168#255'`'#184#167#255'k'#192#176#255'b'#183#166#255'T'#170#150#255 - +'@'#174#154#255'('#178#156#209'N'#178#162#29#0#0#0#0#0#0#0#0'@'#186#166'P5' - +#181#159#255'B'#180#161#255'I'#186#169#255'T'#200#182#255'X'#193#177#255'_' - +#176#162#255't'#179#169#255#130#194#188#255'{'#200#192#255'o'#185#176#255'i' - +#173#161#255'U'#170#153#255'?'#173#152#255'@'#174#152#255'@'#165#143#255'K' - +#171#151#255'`'#181#164#255'b'#182#164#255'V'#186#168#255'K'#192#177#255']' - +#179#167#152#0#0#0#0#0#0#0#0'<'#193#175#255'G'#199#183#255'_'#193#177#255'\' - +#197#180#255'W'#198#182#255'Y'#186#172#255'c'#174#161#255's'#181#169#255#131 - +#194#184#255#128#202#190#255's'#196#181#255'g'#178#163#255'\'#176#162#255'I' - +#179#160#255'G'#172#152#255'D'#162#141#255'<'#162#138#255'['#181#164#255'q' - +#192#178#255'm'#191#175#255'q'#197#186#255's'#185#174#255#0#0#0#0#0#0#0#0'[' - +#203#190#255'o'#214#202#255#144#208#198#255#128#207#195#255'a'#192#178#255']' - +#179#166#255'c'#177#164#255'Z'#178#162#255'\'#182#165#255'e'#187#171#204#0#0 - +#255#255#0#0#255#255'`'#182#169#255'\'#185#172#255'Y'#173#156#255'O'#163#144 - +#255'2'#162#138#255'I'#175#155#255'f'#183#167#255'h'#180#164#255'z'#195#181 - +#255'z'#188#174#255#0#0#0#0#0#0#0#0#136#211#201#255#142#214#204#255#157#210 - +#204#255#149#212#206#255'z'#201#189#255'q'#191#179#255'i'#188#175#255#0#0#255 - +#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255#0#0#255#255 - +#0#0#255#255'P'#169#151#255'9'#171#149#255'@'#172#150#255'N'#168#148#255'H' - +#159#139#255'`'#176#158#255't'#182#169#255#0#0#0#0#0#0#0#0#145#209#199#255 - +#133#204#192#255'|'#195#184#255#141#205#197#255#141#207#198#255#137#203#195 - +#255#0#0#255#255#0#0#255#255'c'#173#158#255'i'#175#160#255'l'#181#167#255'c' - +#182#167#255'g'#185#170#255#127#193#183#255#0#0#255#255#0#0#255#255'K'#187 - +#169#255'D'#181#162#255'M'#163#143#255'='#153#131#255'@'#161#139#255']'#173 - +#156#255#0#0#0#0#0#0#0#0#140#202#191#255'w'#194#181#255'm'#187#172#255#141 - +#201#190#255#159#205#201#255#0#0#255#255#0#0#255#255'q'#188#175#255'a'#176 - +#161#255'X'#182#164#255'g'#179#164#255'd'#176#161#255']'#175#158#255'p'#179 - +#166#255'v'#190#178#255#0#0#255#255#0#0#255#255'_'#196#182#255'^'#169#150#255 - +'C'#157#137#255':'#159#136#255'O'#167#148#255#0#0#0#0#0#0#0#0'x'#191#178#255 - +'h'#188#173#255'k'#189#174#255#142#199#189#255#161#201#194#255#0#0#255#255 - +#130#201#189#255't'#186#175#255'e'#185#172#255'_'#192#176#255#0#0#255#255#0#0 - +#255#255'`'#176#160#255'j'#176#163#255's'#188#175#255#138#191#183#255#0#0#255 - +#255'x'#201#189#255'g'#177#161#255'M'#163#144#255'K'#165#145#255'R'#168#151 - ,#255#0#0#0#0#0#0#0#0'_'#188#176#255']'#188#172#255'j'#188#175#255#132#195#183 - +#255#0#0#255#255#0#0#255#255'x'#194#182#255'|'#188#178#255'j'#197#184#255'g' - +#204#191#255#0#0#255#255#0#0#255#255'g'#179#164#255'k'#177#166#255'e'#181#166 - +#255#127#179#166#255#0#0#255#255#0#0#255#255'h'#183#167#255'U'#171#153#255'P' - +#172#154#255'['#177#161#255#0#0#0#0#0#0#0#0'_'#196#182#255'b'#194#178#255's' - +#196#181#255#128#195#183#255#0#0#255#255'}'#186#174#255'w'#194#180#255#142 - +#197#187#255#140#203#197#255#134#212#203#255#0#0#255#255#0#0#255#255'p'#180 - +#167#255'n'#182#169#255'\'#178#160#255'p'#169#156#255#0#0#255#255#0#0#255#255 - +'f'#184#170#255'a'#178#162#255'M'#184#167#255'c'#190#176#255#0#0#0#0#0#0#0#0 - +'f'#208#194#255'r'#209#196#255#130#202#190#255'}'#195#183#255#0#0#255#255'{' - +#186#174#255'r'#194#180#255#139#197#187#255#163#197#194#255#155#200#196#255#0 - +#0#255#255#0#0#255#255'n'#182#170#255'j'#191#176#255'^'#178#161#255'g'#166 - +#151#255#0#0#255#255#0#0#255#255'i'#186#171#255'v'#189#176#255'b'#196#183#255 - +'s'#196#187#255#0#0#0#0#0#0#0#0'u'#215#206#255#144#218#211#255#152#209#200 - +#255's'#192#180#255#0#0#255#255#0#0#255#255'u'#192#180#255'{'#192#181#255#136 - +#185#175#255#142#186#176#255#0#0#255#255#0#0#255#255's'#189#179#255'n'#201 - +#188#255't'#186#173#255'j'#170#155#255#0#0#255#255#0#0#255#255'k'#184#168#255 - +'{'#190#177#255#128#198#188#255#131#192#182#255#0#0#0#0#0#0#0#0#150#218#210 - +#255#179#226#221#255#177#220#214#255'v'#198#184#255'p'#192#178#255#0#0#255 - +#255#134#194#183#255'x'#192#179#255'u'#183#172#255#134#183#173#255#0#0#255 - +#255#0#0#255#255#131#197#188#255#134#204#196#255#142#189#182#255'k'#176#163 - +#255#0#0#255#255'L'#173#154#255'c'#178#162#255'r'#180#165#255'}'#189#176#255 - +#130#186#173#255#0#0#0#0#0#0#0#0#154#212#203#255#172#220#214#255#179#217#211 - +#255#137#210#199#255's'#208#196#255#0#0#255#255#0#0#255#255#127#191#180#255 - +'o'#188#175#255'z'#189#178#255'w'#186#175#255'q'#186#172#255'{'#191#178#255 - +#141#192#184#255#141#185#176#255#0#0#255#255#0#0#255#255'R'#188#172#255'j' - +#178#163#255'l'#172#158#255'n'#177#162#255'|'#183#170#255#0#0#0#0#0#0#0#0#145 - +#204#195#255#145#202#192#255#157#203#196#255#161#217#209#255#146#223#216#255 - +#166#213#210#255#0#0#255#255#0#0#255#255'x'#188#176#255'u'#192#180#255'i'#188 - +#174#255'f'#183#168#255'u'#177#165#255#137#182#171#255#0#0#255#255#0#0#255 - +#255'_'#199#187#255'e'#200#187#255'|'#184#169#255'i'#169#153#255'c'#169#155 - +#255'u'#181#170#255#0#0#0#0#0#0#0#0#142#198#189#255#130#191#179#255#140#191 - +#182#255#169#214#208#255#168#222#214#255#158#207#201#255#161#195#189#255#0#0 - +#255#255#0#0#255#255#0#0#255#255'|'#188#177#255'|'#182#171#255#0#0#255#255#0 - +#0#255#255#0#0#255#255#145#206#196#255'~'#202#193#255'~'#199#190#255'z'#181 - +#168#255'f'#166#150#255'`'#168#152#255'q'#180#167#255#0#0#0#0#0#0#0#0'~'#189 - +#179#255'r'#183#170#255'~'#185#174#255#160#208#200#255#157#211#202#255#133 - +#196#186#255#135#190#181#255#140#187#178#255#134#195#188#255#0#0#255#255#0#0 - +#255#255#0#0#255#255#0#0#255#255'|'#186#176#255#131#194#183#255#139#198#188 - +#255#141#201#191#255#141#200#190#255'w'#179#168#255'b'#167#151#255'a'#169#153 - +#255'm'#178#164#255#0#0#0#0#0#0#0#0'r'#185#172#255'm'#180#167#255'}'#185#174 - +#255#150#202#194#255#143#200#191#255'v'#187#175#255's'#186#174#255#146#199 - +#192#255#156#213#207#255#159#214#208#255#173#208#202#255#138#189#178#255'q' - +#184#172#255'u'#193#181#255'x'#188#176#255'z'#183#171#255'|'#188#174#255#139 - +#197#187#255#127#185#173#255'c'#172#157#255'c'#175#162#255'p'#180#166#255#0#0 - +#0#0#0#0#0#0'q'#186#174'ar'#183#171#255#129#188#177#255#138#197#188#255'~' - +#194#184#255'q'#185#173#255'm'#184#170#255#144#202#193#255#168#217#211#255 - +#166#214#208#255#168#211#204#255#132#195#184#255'm'#196#183#255#127#207#195 - +#255#131#190#178#255't'#176#164#255'l'#176#162#255#128#191#179#255#133#189 - +#179#255'r'#179#167#255'`'#188#174#223'n'#191#178'<'#0#0#0#0#0#0#0#0'w'#190 - +#180'+y'#188#177#255#134#194#183#255#138#199#188#255'}'#193#180#255'u'#190 - +#178#255't'#190#178#255#139#198#187#255#158#204#195#255#157#202#195#255#148 - +#201#192#255#138#199#189#255#135#216#207#255#150#225#217#255#141#196#186#255 - +'p'#175#163#255'l'#174#161#255'z'#188#174#255#132#194#183#255#139#191#181#255 - +'p'#196#185#228'x'#199#188'#'#0#0#0#0#0#0#0#0#0#0#0#0#132#199#188'5'#152#201 - +#193'S'#146#203#193#232#132#197#186#255'~'#197#185#255#128#197#187#255#137 - +#196#187#255#145#196#185#255#142#196#184#255#133#193#181#255#148#204#194#255 - +#169#228#221#255#167#228#221#255#142#198#189#255's'#180#166#255'p'#174#160 - +#255'y'#183#171#255#133#195#185#255#146#195#186#255#134#191#182'#'#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 - +#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#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#9#7'OnClick' - +#7#17'itemTrayExitClick'#0#0#0#0 -]); diff --git a/applications/cactusjukebox/source/mainform.pas b/applications/cactusjukebox/source/mainform.pas index f39774a68..d13111159 100644 --- a/applications/cactusjukebox/source/mainform.pas +++ b/applications/cactusjukebox/source/mainform.pas @@ -34,7 +34,7 @@ Uses Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, Buttons, ExtCtrls, ComCtrls, StdCtrls, Menus,{$ifdef fmod} fmodplayer,{$endif} -ActnList, mediacol, dos, SimpleIPC, functions, EditBtn, last_fm, debug, config, +ActnList, FileUtil, mediacol, dos, SimpleIPC, functions, EditBtn, last_fm, debug, config, playlist, playerclass, mplayer, mp3file, Messages, LMessages, cj_interfaces; resourcestring @@ -87,9 +87,12 @@ rsTrack = 'Track'; Type + TCactusFlags = (cfTrayIconPressed, cfProgHide); + { TMain } TMain = Class(TForm) + ApplicationProperties1: TApplicationProperties; ArtistTree: TTreeView; artistsearch: TEdit; Button1: TButton; @@ -104,6 +107,7 @@ Type ImageListHot: TImageList; ImageListDis: TImageList; itemPlugins: TMenuItem; + lblPath: TLabel; Mainmenu1: TMainMenu; MenuItem12: TMenuItem; Menuitem21: TMenuItem; @@ -249,6 +253,7 @@ Type Trackinfo: TSpeedButton; TrayIcon: TTrayIcon; Volumebar: TProgressBar; + procedure ApplicationProperties1Minimize(Sender: TObject); Procedure ArtistTreeClick(Sender: TObject); Procedure ArtistTreeDblClick(Sender: TObject); Procedure ArtistTreeEndDrag(Sender, Target: TObject; X, Y: Integer); @@ -260,14 +265,12 @@ Type Procedure ArtistTreeStartDrag(Sender: TObject; Var DragObject: TDragObject); Procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); - procedure checkmobileStartTimer(Sender: TObject); Procedure CoverImageMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); Procedure DeviceModeBtnClick(Sender: TObject); procedure FormCloseQuery(Sender: TObject; var CanClose: boolean); Procedure FormMouseDown(Sender: TOBject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); - Procedure FormResize(Sender: TObject); procedure itemTrayExitClick(Sender: TObject); procedure itemTrayPlayClick(Sender: TObject); Procedure LibModeBtnClick(Sender: TObject); @@ -301,7 +304,6 @@ Type procedure pnlPlaytimeClick(Sender: TObject); procedure PopupMenuTrayPopup(Sender: TObject); procedure randomcheckChange(Sender: TObject); - procedure scan(Sender: TObject); Procedure SearchPanelClick(Sender: TObject); Procedure PlayerControlsPanelClick(Sender: TObject); Procedure PauseButtonImgClick(Sender: TObject); @@ -323,7 +325,6 @@ Type Procedure MenuItem11Click(Sender: TObject); Procedure MenuItem14Click(Sender: TObject); Procedure MenuItem16Click(Sender: TObject); - Procedure MenuItem19Click(Sender: TObject); Procedure MenuItem20Click(Sender: TObject); Procedure MenuItem26Click(Sender: TObject); Procedure MenuItem27Click(Sender: TObject); @@ -343,6 +344,7 @@ Type Shift: TShiftState; X, Y: Integer); Procedure SettingsItemClick(Sender: TObject); Procedure SimpleIPCServer1Message(Sender: TObject); + procedure skinmenuClick(Sender: TObject); Procedure SpeedButton1Click(Sender: TObject); Procedure Splitter1Moved(Sender: TObject); @@ -350,8 +352,6 @@ Type Procedure SrchArtItemClick(Sender: TObject); Procedure SrchFileItemClick(Sender: TObject); Procedure SrchTitleItemClick(Sender: TObject); - Procedure srch_buttonKeyUp(Sender: TObject; Var Key: Word; - Shift: TShiftState); Procedure StopButtonImgClick(Sender: TObject); Procedure StopButtonImgMouseDown(Sender: TOBject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); @@ -404,7 +404,6 @@ Type Procedure MenuItem33Click(Sender: TObject); Procedure rm_artist_playeritemClick(Sender: TObject); Procedure searchstrClick(Sender: TObject); - Procedure skinmenuClick(Sender: TObject); Procedure syncplayeritem(Sender: TObject); Procedure MenuItem3Click(Sender: TObject); Procedure MenuItem22aClick(Sender: TObject); @@ -431,7 +430,7 @@ Type Shift: TShiftState; X, Y: Integer); Procedure trackbarMouseUp(Sender: TOBject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); - procedure TrayIconDblClick(Sender: TObject); + procedure TrayIconClick(Sender: TObject); Procedure undoSyncItemClick(Sender: TObject); Procedure loadskin(Sender: TObject); @@ -452,10 +451,12 @@ Type bPnlPlaytimeNegated: boolean; oldWindowState :TWindowState; fromTrayDBLClick :Boolean; + FFlags: set of TCactusFlags; Procedure MoveNode(TargetNode, SourceNode : TTreeNode); Procedure ApplicationIdle(Sender: TObject; Var Done: Boolean); Procedure update_player_display; Function LoadFile(path: String): boolean; + procedure MinimizeMe(Data: Ptrint); Public player_connected, playermode: boolean; @@ -478,7 +479,6 @@ Type Procedure update_artist_view; { public declarations } - procedure WMSize(var Message: TLMSize); message LM_Size; //Test Plugins....cut in future procedure SayHello(Sender :TCJ_MenuItem); @@ -554,6 +554,8 @@ Implementation Uses editid3, status, settings, player, directories, skin, cdrip, translations, bigcoverimg, streamcol, addradio, CleanLibrary, global_vars, cj_pluginslist, cj_interfaces_impl, LCLType; +{$R *.lfm} + {$i cactus_const.inc} Var sizediff: int64; @@ -1182,7 +1184,7 @@ Begin If MediaCollection.items[i].title<>'' Then ListItem.SubItems.Add(MediaCollection.items [i].Artist) - Else ListItem.SubItems.Add(extractfilename(MediaCollection.items[i].path)); + Else ListItem.SubItems.Add(SysToUTF8(extractfilename(MediaCollection.items[i].path))); ListItem.SubItems.Add (MediaCollection.items[i].title); ListItem.SubItems.Add (MediaCollection.items[i].album); ListItem.SubItems.Add (MediaCollection.items[i].Track); @@ -1227,11 +1229,6 @@ Begin End; -procedure TMain.checkmobileStartTimer(Sender: TObject); -begin - -end; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.CoverImageMouseUp(Sender: TObject; Button: TMouseButton; @@ -1313,44 +1310,6 @@ End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -Procedure TMain.FormResize(Sender: TObject); -Begin - Panel4.Width := oldSplitterWidth; - Panel1.Width := Width-oldSplitterWidth-8; -End; - - -procedure TMain.WMSize(var Message: TLMSize); -begin - if not (csDesigning in ComponentState) then - begin - case (Message.SizeType and not SIZE_SourceIsInterface) of - SIZEICONIC:begin - if not(fromTrayDBLClick) then - begin - Visible :=False; - oldWindowState :=Self.WindowState; - exit; - end; - fromTrayDBLClick :=False; - end; - end; - end; - inherited WMSize(Message); -end; - -procedure TMain.TrayIconDblClick(Sender: TObject); -begin - if not(Self.Visible) then - begin - //Avoid handling on OnWindowStateChange - Self.fromTrayDBLClick :=True; -// Self.WindowState:=oldWindowState; - Self.Visible:=True; - Self.BringToFront; - end; -end; - procedure TMain.itemTrayExitClick(Sender: TObject); begin Close; @@ -1682,11 +1641,6 @@ begin PlayerObj.Playlist.reset_random; end; -procedure TMain.scan(Sender: TObject); -begin - -end; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.SearchPanelClick(Sender: TObject); @@ -1792,7 +1746,7 @@ Begin DebugOutLn('ERROR saving playlist', 2); end else if PlayerObj.Playlist.Count=0 then DeleteFile(CactusConfig.ConfigPrefix+'lib'+DirectorySeparator+'last.m3u'); - If (MediaCollection.ItemCount>1) Then + If (MediaCollection.ItemCount>0) Then Begin MediaCollection.SaveToFile(CactusConfig.ConfigPrefix+'lib'+DirectorySeparator+'last.mlb'); CactusConfig.LastLib := MediaCollection.savepath; @@ -2223,6 +2177,12 @@ Begin Application.ProcessMessages; End; +procedure TMain.MinimizeMe(Data: Ptrint); +begin + Include(FFlags, cfProgHide); + Hide; +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -2315,8 +2275,8 @@ Begin With artnode Do Begin MakeVisible; - ImageIndex := MediaCollection.Items[i].Action; - SelectedIndex := MediaCollection.Items[i].Action; + ImageIndex := 6; //MediaCollection.Items[i].Action; + SelectedIndex := 6; //MediaCollection.Items[i].Action; Data := MediaCollection.items[i]; Expanded:=false; End; @@ -2328,8 +2288,8 @@ Begin Begin MakeVisible; MedFileObj:=TMediaFileClass(AlbumList.Objects[z]); - ImageIndex := MedFileObj.Action; - SelectedIndex := MedFileObj.Action; + ImageIndex := 7;//MedFileObj.Action; + SelectedIndex := 7;//MedFileObj.Action; Data := AlbumList.Objects[z]; End; End; @@ -2502,11 +2462,6 @@ Begin End; End; -procedure TMain.MenuItem19Click(Sender: TObject); -begin - -end; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.MenuItem20Click(Sender: TObject); @@ -2874,6 +2829,11 @@ Begin Writeln('IPC end'); End; +procedure TMain.skinmenuClick(Sender: TObject); +begin + // JRA +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.SpeedButton1Click(Sender: TObject); @@ -2910,12 +2870,6 @@ Begin SrchTitleItem.Checked := Not SrchTitleItem.Checked; End; -Procedure TMain.srch_buttonKeyUp(Sender: TObject; Var Key: Word; - Shift: TShiftState); -Begin - -End; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.StopButtonImgClick(Sender: TObject); @@ -3079,6 +3033,7 @@ Procedure TMain.TitleTreeSelectItem(Sender: TObject; Item: TListItem; Begin // reanable the popupmenu in case ist was disabled in TMain.TitleTreeMouseDown TitleTree.PopupMenu.AutoPopup := true; + lblPath.Caption:=TMediaFileClass(Item.data).Path; End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -3227,7 +3182,7 @@ End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -Procedure TMain.MenuItem10Click(Sender: TObject); +procedure TMain.Menuitem10Click(Sender: TObject); Var MedFileObj: TMediaFileClass; Begin @@ -3621,6 +3576,9 @@ Procedure TMain.playlistSelectItem(Sender: TObject; Item: TListItem; Begin // reanable the popupmenu in case ist was disabled in TMain.playlistMouseDown playlist.PopupMenu.AutoPopup := true; + if (Item.Data<>nil) then begin + lblPath.Caption := TMediaFileClass(Item.data).Path; + end; End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -3646,8 +3604,7 @@ Begin MedFileObj := TMediaFileClass(playlist.Items[PlayerObj.CurrentTrack].Data); If (MedFileObj.album<>'') Then Begin - MedFileObj.CoverPath := CactusConfig.ConfigPrefix+DirectorySeparator+'covercache'+ - DirectorySeparator+MedFileObj.Artist+'_'+MedFileObj.album+'.jpeg'; + MedFileObj.CoverPath := CactusConfig.GetCoverPath(MedFileObj.GetCoverFile); If (FileExists(MedFileObj.CoverPath)=false) Then Begin CoverImage.Picture.Clear; @@ -3717,6 +3674,11 @@ Begin // if ArtistTree.Selected<>nil then update_title_view; End; +procedure TMain.ApplicationProperties1Minimize(Sender: TObject); +begin + Application.QueueAsyncCall(@MinimizeMe, 0); +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.ArtistTreeKeyUp(Sender: TObject; Var Key: Word; @@ -3948,11 +3910,6 @@ End; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -Procedure TMain.skinmenuClick(Sender: TObject); -Begin - -End; - //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.syncplayeritem(Sender: TObject); @@ -4171,6 +4128,16 @@ Begin If PlayerObj.playing Then playtimer.enabled := true; End; +procedure TMain.TrayIconClick(Sender: TObject); +begin + if not Visible then begin + Show; + BringToFront; + end else begin + Hide; + end; +end; + //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Procedure TMain.undoSyncItemClick(Sender: TObject); @@ -4430,7 +4397,7 @@ Begin curalbum := lowercase(MedFileObj.album); DebugOut(curartist, 2); - i := MedColObj.getTracks(MedFileObj.Artist, MedFileObj.index); + i := MedColObj.getTracks(MedFileObj.Artist, 0{MedFileObj.index}); Repeat Begin @@ -4445,13 +4412,13 @@ Begin If MedColObj.items[i].title<>'' Then ListItem.SubItems.Add((MedColObj.items[i].Artist)) - Else ListItem.SubItems.Add(extractfilename(MedColObj.items[i].path)); + Else ListItem.SubItems.Add(SysToUTF8(extractfilename(MedColObj.items[i].path))); ListItem.SubItems.Add((MedColObj.items[i].title)); ListItem.SubItems.Add((MedColObj.items[i].album)); ListItem.SubItems.Add(MedColObj.items[i].track); ListItem.SubItems.Add(ID3Genre[MedColObj.items[i].GenreID]); - ListItem.SubItems.Add(ExtractFileName(MedColObj.items[i].Path)); + ListItem.SubItems.Add(SysToUTF8(ExtractFileName(MedColObj.items[i].Path))); ListItem.SubItems.Add(MedColObj.items[i].playtime); End; @@ -4606,7 +4573,4 @@ begin CJ_Interface.GetSignals.Signal(1, 24, 50, msgHandled); end; -initialization - {$I mainform.lrs} - End. diff --git a/applications/cactusjukebox/source/mediacol.pas b/applications/cactusjukebox/source/mediacol.pas index 2f3314d36..09463b6df 100644 --- a/applications/cactusjukebox/source/mediacol.pas +++ b/applications/cactusjukebox/source/mediacol.pas @@ -20,7 +20,7 @@ Interface Uses Classes, SysUtils, //Tagreader: -WMAfile, OggVorbis, FLACfile, mp3file, debug, lconvencoding, guesstag; +WMAfile, OggVorbis, FLACfile, mp3file, debug, LCLProc, lconvencoding, guesstag; Type // PMediaCollectionClass = ^TMediaCollectionClass; @@ -40,6 +40,7 @@ Type FStreamUrl: string; FMediaType: TMediaType; + function StrToUTF8(s:string): string; Procedure read_tag_ogg; Procedure read_tag_flac; Procedure read_tag_wma; @@ -59,7 +60,8 @@ Type Collection: TMediaCollectionClass; Comment: ansistring; GenreID: Byte; - Year, Track: string[4]; + Year: string[4]; + Track: string[10]; // ####/#### Filetype: string[5]; Size: int64; ID, Bitrate, Samplerate, Playlength, Action: longint; @@ -77,6 +79,7 @@ Type Function FullPathNameFromTag_dryrun(var strFormat: string): string; Function move2path(strFilePath: string): Boolean; Function LibraryPath(): string; + function GetCoverFile: string; property Artist: string read FArtist write SetArtist; property Album: string read FAlbum write SetAlbum; @@ -272,10 +275,18 @@ Begin savepath := path; sortState := FSorted; linecount:=0; - Try - system.assign(lfile,path); - reset(lfile); + system.assign(lfile,path); + {$i-} + reset(lfile); + {$i+} + if IoResult<>0 then begin + result := false; + writeln('unable to open file ', path); + exit; + end; + + try readln(lfile, tmps); readln(lfile, tmps); @@ -343,6 +354,7 @@ Begin writeln('library sucessfully loaded'); result := true; Except + close(lfile); fsorted := sortState; writeln('lib seems corupted'); write('exception at entry '); @@ -812,6 +824,26 @@ Begin result := i; End; +function TMediaFileClass.StrToUTF8(s: string): string; +var + w: Word; +begin + if length(s)>2 then begin + W := PWord(@S[1])^; + if (W=$FFFE) or (W=$FEFF) then begin + s := copy(s, 3, length(s)-2); + if (W=$FFFE) then + result := UCS2BEToUTF8(s) + else + result := UCS2LEToUTF8(s); + exit; + end + end; + if FindInvalidUTF8Character(pchar(s), Length(s), false)>=0 then + result := ISO_8859_1ToUTF8(s) + else + result := S; +end; //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ { TMediaFileClass } @@ -943,14 +975,14 @@ Begin begin // writeln(path); MP3File.ReadTag(Path); - artist := ISO_8859_1ToUTF8(MP3File.Artist); - title := ISO_8859_1ToUTF8(MP3File.Title); - album := ISO_8859_1ToUTF8(MP3File.Album); + artist := StrToUTF8(MP3File.Artist); + title := StrToUTF8(MP3File.Title); + album := StrToUTF8(MP3File.Album); Bitrate := MP3File.BitRate; - Year := MP3File.Year; + Year := StrToUTF8(MP3File.Year); Samplerate := MP3File.SampleRate; - Comment := ISO_8859_1ToUTF8(MP3File.Comment); - Track := (MP3File.Track); + Comment := StrToUTF8(MP3File.Comment); + Track := StrToUTF8(MP3File.Track); Playlength := round(MP3File.Playlength); Playtime := SecondsToFmtStr(Playlength); GenreID := (MP3File.GenreID); @@ -1304,5 +1336,10 @@ begin end; end; +function TMediaFileClass.GetCoverFile: string; +begin + result := Artist+'_'+album+'.jpeg' +end; + End. diff --git a/applications/cactusjukebox/source/mp3proj.lpi b/applications/cactusjukebox/source/mp3proj.lpi index 045486c96..0a3a66f3f 100755 --- a/applications/cactusjukebox/source/mp3proj.lpi +++ b/applications/cactusjukebox/source/mp3proj.lpi @@ -10,6 +10,7 @@ <UseXPManifest Value="True"/> + <Icon Value="0"/> </General> <VersionInfo> <AutoIncrementBuild Value="True"/> @@ -17,9 +18,6 @@ <RevisionNr Value="5"/> <BuildNr Value="737"/> </VersionInfo> - <MacroValues Count="1"> - <Macro1 Name="LCLWidgetType" Value="gtk2"/> - </MacroValues> <BuildModes Count="1"> <Item1 Name="default" Default="True"/> </BuildModes> @@ -35,21 +33,25 @@ <LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/> </local> </RunParams> - <RequiredPackages Count="4"> + <RequiredPackages Count="5"> <Item1> - <PackageName Value="lnetbase"/> + <PackageName Value="LCLBase"/> + <MinVersion Valid="True"/> </Item1> <Item2> - <PackageName Value="laz_synapse"/> + <PackageName Value="lnetbase"/> </Item2> <Item3> - <PackageName Value="LCL"/> - <MinVersion Major="1" Valid="True"/> + <PackageName Value="synapse"/> </Item3> <Item4> - <PackageName Value="FCL"/> + <PackageName Value="LCL"/> <MinVersion Major="1" Valid="True"/> </Item4> + <Item5> + <PackageName Value="FCL"/> + <MinVersion Major="1" Valid="True"/> + </Item5> </RequiredPackages> <Units Count="32"> <Unit0> @@ -240,7 +242,6 @@ <SearchPaths> <OtherUnitFiles Value="fmodintf;tagreader;plugin/sdk;plugin/impl"/> <UnitOutputDirectory Value="../source/obj"/> - <SrcPath Value="/home/daseeb/devel/units/synapse/source/lib/"/> </SearchPaths> <Parsing> <SyntaxOptions> @@ -265,6 +266,9 @@ <ShowHintsForUnusedUnitsInMainSrc Value="True"/> </Verbosity> <WriteFPCLogo Value="False"/> + <CompilerMessages> + <UseMsgFile Value="True"/> + </CompilerMessages> <CustomOptions Value="-dCactusDebug"/> <CompilerPath Value="$(CompPath)"/> </Other> diff --git a/applications/cactusjukebox/source/mp3proj.lpr b/applications/cactusjukebox/source/mp3proj.lpr index 8353b658f..4aa3b127b 100755 --- a/applications/cactusjukebox/source/mp3proj.lpr +++ b/applications/cactusjukebox/source/mp3proj.lpr @@ -23,10 +23,12 @@ uses {$ifdef linux} cthreads, {$endif} - global_vars, Interfaces, SysUtils, Forms, status, settings, player, graphics, - editid3, directories, skin, cdrip, mediacol, BigCoverImg, mainform, cddb, - debug, config, addradio, streamcol, playerclass, CleanLibrary, laz_synapse, - lnetbase, guesstag; + global_vars, + Interfaces,SysUtils, + Forms, status, settings, player, graphics, editid3, directories, skin, + cdrip, mediacol, BigCoverImg, mainform, cddb, + debug, config, {imagesforlazarus,} addradio, streamcol, + playerclass, CleanLibrary, lnetbase, synapse{, plugininterfaces}, guesstag; var invalid_param, skip_config: boolean; @@ -35,9 +37,7 @@ var {$i cactus_const.inc} -{$IFDEF WINDOWS}{$R mp3proj.rc}{$ENDIF} - -{$R mp3proj.res} +{$R *.res} begin Application.Title:='cactus'; diff --git a/applications/cactusjukebox/source/mp3proj.res b/applications/cactusjukebox/source/mp3proj.res new file mode 100644 index 000000000..6cba0c51a Binary files /dev/null and b/applications/cactusjukebox/source/mp3proj.res differ diff --git a/applications/cactusjukebox/source/mplayer.pas b/applications/cactusjukebox/source/mplayer.pas index b80f750be..7ba54343c 100644 --- a/applications/cactusjukebox/source/mplayer.pas +++ b/applications/cactusjukebox/source/mplayer.pas @@ -111,7 +111,10 @@ begin AStringList:=TStringList.Create; try if GetMPlayerPlaying then AStringList.LoadFromStream(MPlayerProcess.Output); - Result:=AStringList.Strings[0]; + if AStringList.Count>0 then + Result:=AStringList.Strings[0] + else + Result := ''; // writeln(Result); except writeln('EXCEPTION reading mplayer output');result:=''; diff --git a/applications/cactusjukebox/source/tagreader/mp3file.pas b/applications/cactusjukebox/source/tagreader/mp3file.pas index ef4e71633..be06095b4 100644 --- a/applications/cactusjukebox/source/tagreader/mp3file.pas +++ b/applications/cactusjukebox/source/tagreader/mp3file.pas @@ -45,6 +45,7 @@ TMP3File = class FGenreID: byte; FFileName: string; procedure ReadHeader; + function GetId3V1Track: Integer; public constructor create; function ReadTag(Filename: string):boolean; @@ -138,6 +139,20 @@ begin Else writeln(FFileName+' -> no valid mpeg header found'); end; +function TMP3File.GetId3V1Track: Integer; +begin + result := pos('/', FTrack); + if result>0 then + result := StrToIntDef(Copy(FTrack, 1, result-1), 0) + else + result := StrToIntDef(FTrack, 0); + if result>255 then + result := 255 + else + if result<0 then + result := 0; +end; + constructor TMP3File.create; begin @@ -154,6 +169,17 @@ Var i, z, tagpos: integer; artistv2, albumv2, titlev2, commentv2, yearv2, trackv2: string; bufstr: string; mp3filehandle: longint; + iso: boolean; + + function GetID3TagStr: string; + begin + result := copy(bufstr,i+11,buf[i+7]-1); + iso := bufstr[i+10]=#0; + if bufstr[i+10] in [#0,#3] then + // string is ISO-8859-1 or UTF-8 (2.4) encoded, can be trimmed + result := TrimRight(result); + end; + Begin FFileName:=Filename; ReadHeader; @@ -165,7 +191,7 @@ Begin fileread(mp3filehandle,buf,high(buf)); bufstr := ''; For i:= 1 To high(buf) Do - If (buf[i]<>0) and (buf[i]<>10) Then bufstr := bufstr+char(buf[i]) + If {(buf[i]<>0) and }(buf[i]<>10) Then bufstr := bufstr+char(buf[i]) Else bufstr := bufstr+' '; // filter #10 and 0, replace by ' ' {id3v2} @@ -177,39 +203,40 @@ Begin If pos('ID3',bufstr)<> 0 Then Begin i := pos('TPE1',bufstr); - If i<> 0 Then artistv2 := copy(bufstr,i+11,buf[i+7]-1); + If i<> 0 Then artistv2 := GetID3TagStr; i := pos('TP1',bufstr); If i<> 0 Then artistv2 := copy(bufstr,i+7,buf[i+5]-1); i := pos('TIT2',bufstr); - If i<> 0 Then titlev2 := copy(bufstr,i+11,buf[i+7]-1); + If i<> 0 Then titlev2 := GetID3TagStr; i := pos('TT2',bufstr); If i<> 0 Then titlev2 := copy(bufstr,i+7,buf[i+5]-1); + i := pos('TRCK',bufstr); - If i<> 0 Then trackv2 := copy(bufstr,i+11,buf[i+7]-1); - + If i<> 0 Then + trackv2 := GetID3TagStr; i := pos('TRK',bufstr); - If i<> 0 Then trackv2 := copy(bufstr,i+7,buf[i+5]-1); - - If length(trackv2)>3 Then trackv2 := ''; + If i<> 0 Then begin + trackv2 := copy(bufstr,i+7,buf[i+5]-1); + If length(trackv2)>3 Then + trackv2 := ''; + end; i := pos('TAL',bufstr); If i<> 0 Then albumv2 := copy(bufstr,i+7,buf[i+5]-1); i := pos('TALB',bufstr); - If i<> 0 Then albumv2 := copy(bufstr,i+11,buf[i+7]-1); + If i<> 0 Then albumv2 := GetID3TagStr; i := pos('TYE',bufstr); If i<> 0 Then yearv2 := copy(bufstr,i+7,buf[i+5]-1); i := pos('TYER',bufstr); - If i<> 0 Then yearv2 := copy(bufstr,i+11,buf[i+7]-1); - artistv2 := (artistv2); - titlev2 := (titlev2); - albumv2 := (albumv2); - yearv2 := (yearv2); - trackv2 := (trackv2); - If length(yearv2)>5 Then yearv2 := ''; + If i<> 0 Then begin + yearv2 := GetID3TagStr; + If iso and (length(yearv2)>5) Then + yearv2 := ''; + end; End; except WriteLn(Filename+' -> exception while reading id3v2 tag... skipped!!'); end; {id3v1} @@ -230,42 +257,29 @@ Begin tagpos := pos('TAG',bufstr)+3; If tagpos<>3 Then Begin - ftitle := (copy(bufstr,tagpos,30)); - fartist := (copy(bufstr,tagpos+30,30)); - falbum := (copy(bufstr,tagpos+60,30)); - fyear := copy(bufstr,tagpos+90,4); + ftitle := TrimRight(copy(bufstr,tagpos,30)); + fartist := TrimRight(copy(bufstr,tagpos+30,30)); + falbum := TrimRight(copy(bufstr,tagpos+60,30)); + fyear := TrimRight(copy(bufstr,tagpos+90,4)); FGenreID := buf[tagpos+124]; if FGenreID>high(ID3Genre) then FGenreID:=0; If buf[125]<>0 Then {check for id3v1.1} - fcomment := (copy(bufstr,tagpos+94,30)) + fcomment := TrimRight(copy(bufstr,tagpos+94,30)) Else Begin - fcomment := (copy(bufstr,tagpos+94,28)); + fcomment := TrimRight(copy(bufstr,tagpos+94,28)); If (buf[tagpos+123])<>0 Then ftrack := IntToStr(buf[tagpos+123]) Else ftrack := ''; End; End; // else writeln('no id3v1 tag'); except WriteLn(Filename+' -> exception while reading id3v1 tag... skipped!!'); end; - If ((artistv2<>'')) And (CactusConfig.id3v2_prio Or (artist='')) Then Fartist := TrimRight( - artistv2); - If ((titlev2<>'')) And (CactusConfig.id3v2_prio Or (title='')) Then Ftitle := TrimRight( - titlev2); - If ((albumv2<>'')) And (CactusConfig.id3v2_prio Or (album='')) Then Falbum := TrimRight( - albumv2); - If ((commentv2<>'')) And (CactusConfig.id3v2_prio Or (comment='')) Then Fcomment := TrimRight - ( - commentv2 - ); - If ((yearv2<>'')) And (CactusConfig.id3v2_prio Or (year='')) Then Fyear := TrimRight(yearv2); - If ((trackv2<>'')) And (CactusConfig.id3v2_prio Or (track='')) Then ftrack := TrimRight( - trackv2); - - Fartist := TrimRight(Fartist); - Ftitle := TrimRight(Ftitle); - Falbum := TrimRight(FAlbum); - Fcomment := TrimRight(FComment); - Fyear := TrimRight(FYear); + If ((artistv2<>'')) And (CactusConfig.id3v2_prio Or (artist='')) Then Fartist := artistv2; + If ((titlev2<>'')) And (CactusConfig.id3v2_prio Or (title='')) Then Ftitle := titlev2; + If ((albumv2<>'')) And (CactusConfig.id3v2_prio Or (album='')) Then Falbum := albumv2; + If ((commentv2<>'')) And (CactusConfig.id3v2_prio Or (comment='')) Then Fcomment := commentv2; + If ((yearv2<>'')) And (CactusConfig.id3v2_prio Or (year='')) Then Fyear := yearv2; + If ((trackv2<>'')) And (CactusConfig.id3v2_prio Or (track='')) Then ftrack := trackv2; fileclose(mp3filehandle); end; @@ -277,7 +291,7 @@ Var bufstr, tmptag, tmps: string; i, z: integer; id3v1str: string[31]; - mp3filehandle: longint; + mp3filehandle: THandle; Begin {id3v2} mp3filehandle := fileopen(Filename,fmOpenRead); @@ -473,7 +487,7 @@ Begin If length(track)>0 Then Begin buf[126] := 0; - buf[127] := StrToInt(track); + buf[127] := GetId3V1Track; End; mp3filehandle := fileopen(Filename,fmOpenWrite);