-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDPM.Creator.MainForm.dfm
1114 lines (1114 loc) · 39.1 KB
/
DPM.Creator.MainForm.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object DSpecCreatorForm: TDSpecCreatorForm
Left = 0
Top = 0
Caption = '.dspec Creator'
ClientHeight = 441
ClientWidth = 871
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Menu = MainMenu
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
TextHeight = 15
object PageControl: TPageControl
Left = 0
Top = 0
Width = 871
Height = 441
ActivePage = tsTemplates
Align = alClient
TabOrder = 0
object tsInfo: TTabSheet
Caption = 'Package Info'
object lblId: TLabel
Left = 70
Top = 32
Width = 13
Height = 15
Caption = 'Id:'
end
object lblVersion: TLabel
Left = 42
Top = 61
Width = 41
Height = 15
Caption = 'Version:'
end
object lblDescription: TLabel
Left = 20
Top = 99
Width = 63
Height = 15
Caption = 'Description:'
end
object lblProjectURL: TLabel
Left = 19
Top = 226
Width = 64
Height = 15
Caption = 'Project URL:'
end
object lblRepositoryURL: TLabel
Left = 0
Top = 255
Width = 83
Height = 15
Caption = 'Repository URL:'
end
object lblLicense: TLabel
Left = 41
Top = 287
Width = 42
Height = 15
Caption = 'License:'
end
object lblTags: TLabel
Left = 57
Top = 327
Width = 26
Height = 15
Caption = 'Tags:'
end
object lblAuthor: TLabel
Left = 41
Top = 194
Width = 40
Height = 15
Caption = 'Author:'
end
object edtId: TEdit
Left = 89
Top = 29
Width = 376
Height = 23
TabOrder = 0
Text = 'edtId'
OnChange = edtIdChange
end
object edtVersion: TEdit
Left = 89
Top = 58
Width = 376
Height = 23
TabOrder = 1
OnChange = edtVersionChange
end
object mmoDescription: TMemo
Left = 89
Top = 96
Width = 376
Height = 89
Lines.Strings = (
'mmoDescription')
TabOrder = 2
OnChange = mmoDescriptionChange
end
object edtProjectURL: TEdit
Left = 89
Top = 223
Width = 376
Height = 23
TabOrder = 3
OnChange = edtProjectURLChange
end
object edtRepositoryURL: TEdit
Left = 89
Top = 252
Width = 376
Height = 23
TabOrder = 4
OnChange = edtRepositoryURLChange
end
object cboLicense: TComboBox
Left = 89
Top = 284
Width = 376
Height = 23
TabOrder = 5
Text = 'cboLicense'
OnChange = cboLicenseChange
Items.Strings = (
'Apache 2.0'
'GNU General Public License v3.0'
'GNU General Public License v2.0'
'MIT License'
'BSD 2-Clause "Simplified" License'
'BSD 3-Clause "New" or "Revised" License'
'Boost Software License 1.0'
'Creative Commons Zero v1.0 Universal'
'Eclipse Public License 2.0'
'GNU Affero General Public License v3.0'
'GNU Lesser General Public License v2.1'
'Mozilla Public License 2.0'
'The Unlicense')
end
object edtTags: TEdit
Left = 89
Top = 324
Width = 376
Height = 23
TabOrder = 6
OnChange = edtTagsChange
end
object edtAuthor: TEdit
Left = 89
Top = 191
Width = 376
Height = 23
TabOrder = 7
OnChange = edtAuthorChange
end
end
object tsPlatforms: TTabSheet
Caption = 'Platforms'
ImageIndex = 1
object lblTemplate: TLabel
Left = 256
Top = 203
Width = 48
Height = 15
Caption = 'Template'
end
object lblCompilers: TLabel
Left = 72
Top = 27
Width = 54
Height = 15
Caption = 'Compilers'
end
object lblPlatform: TLabel
Left = 256
Top = 27
Width = 46
Height = 15
Caption = 'Platform'
end
object clbCompilers: TCheckListBox
Left = 72
Top = 48
Width = 161
Height = 329
ItemHeight = 17
Items.Strings = (
'XE2'
'XE3'
'XE4'
'XE5'
'XE6'
'XE7'
'XE8'
'10.0'
'10.1'
'10.2'
'10.3'
'10.4'
'11.0'
'12.0')
TabOrder = 0
OnClick = clbCompilersClick
OnClickCheck = clbCompilersClickCheck
OnDblClick = clbCompilersClick
end
object cboTemplate: TComboBox
Left = 256
Top = 224
Width = 161
Height = 23
Style = csDropDownList
TabOrder = 1
OnChange = cboTemplateChange
end
object clbPlatforms: TCheckListBox
Left = 256
Top = 48
Width = 161
Height = 137
DoubleBuffered = True
ItemHeight = 17
Items.Strings = (
'Win32'
'Win64'
'Linux'
'Android'
'Android64'
'IOS'
'OSX64')
ParentDoubleBuffered = False
TabOrder = 2
OnClickCheck = clbPlatformsClickCheck
end
object VariablesList: TValueListEditor
Left = 256
Top = 253
Width = 297
Height = 145
DoubleBuffered = True
KeyOptions = [keyEdit, keyAdd, keyDelete, keyUnique]
ParentDoubleBuffered = False
TabOrder = 3
TitleCaptions.Strings = (
'Variable Name'
'Value')
OnStringsChange = VariablesListStringsChange
ColWidths = (
150
141)
end
end
object tsTemplates: TTabSheet
Caption = 'Templates'
ImageIndex = 2
DesignSize = (
863
411)
object lblTemplateView: TLabel
Left = 3
Top = 36
Width = 76
Height = 15
Caption = 'Template View'
end
object btnAddTemplate: TButton
Left = 3
Top = 328
Width = 86
Height = 25
Caption = 'Add Template'
TabOrder = 0
OnClick = btnAddTemplateClick
end
object btnDeleteTemplate: TButton
Left = 95
Top = 328
Width = 98
Height = 25
Caption = 'Delete Template'
TabOrder = 1
OnClick = btnDeleteTemplateClick
end
object tvTemplates: TTreeView
Left = 3
Top = 57
Width = 319
Height = 265
AutoExpand = True
DoubleBuffered = True
HideSelection = False
Images = ImageList1
Indent = 19
ParentDoubleBuffered = False
PopupMenu = PopupMenu
RightClickSelect = True
TabOrder = 2
OnChange = tvTemplatesChange
OnCollapsing = tvTemplatesCollapsing
OnContextPopup = tvTemplatesContextPopup
OnCreateNodeClass = tvTemplatesCreateNodeClass
OnEdited = tvTemplatesEdited
OnEditing = tvTemplatesEditing
end
object CardPanel: TCardPanel
Left = 328
Top = 3
Width = 532
Height = 342
Anchors = [akLeft, akTop, akRight, akBottom]
ActiveCard = crdSource
Caption = 'CardPanel'
TabOrder = 3
object crdSource: TCard
Left = 1
Top = 1
Width = 530
Height = 340
Caption = 'crdSource'
CardIndex = 0
TabOrder = 0
DesignSize = (
530
340)
object lblSrc: TLabel
Left = 48
Top = 48
Width = 19
Height = 15
Caption = 'Src:'
end
object lblDest: TLabel
Left = 41
Top = 100
Width = 26
Height = 15
Caption = 'Dest:'
end
object edtFileEntrySource: TEdit
Left = 74
Top = 45
Width = 376
Height = 23
CustomHint = BalloonHint1
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 0
Text = 'edtFileEntrySource'
OnChange = edtFileEntrySourceChange
end
object chkFileEntryFlatten: TCheckBox
Left = 74
Top = 74
Width = 97
Height = 17
Caption = 'Flatten'
TabOrder = 1
end
object edtFileEntryDest: TEdit
Left = 73
Top = 97
Width = 376
Height = 23
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Edit1'
OnChange = edtFileEntryDestChange
end
object lbFileEntryExclude: TListBox
Left = 74
Top = 126
Width = 376
Height = 97
Anchors = [akLeft, akTop, akRight]
ItemHeight = 15
TabOrder = 3
end
object btnAddExclude: TButton
Left = 192
Top = 229
Width = 75
Height = 25
Caption = 'Add Exclude'
TabOrder = 4
OnClick = btnAddExcludeClick
end
object btnDeleteExclude: TButton
Left = 273
Top = 229
Width = 88
Height = 25
Caption = 'Delete Exclude'
TabOrder = 5
OnClick = btnDeleteExcludeClick
end
end
object crdSearchPaths: TCard
Left = 1
Top = 1
Width = 530
Height = 340
Caption = 'crdSearchPaths'
CardIndex = 1
TabOrder = 1
object lblSearchPaths: TLabel
Left = 64
Top = 32
Width = 67
Height = 15
Caption = 'Search Paths'
end
object edtSearchPath: TEdit
Left = 64
Top = 53
Width = 401
Height = 23
TabOrder = 0
Text = 'edtSearchPath'
OnChange = edtSearchPathChange
end
end
object crdBuild: TCard
Left = 1
Top = 1
Width = 530
Height = 340
Caption = 'crdBuild'
CardIndex = 2
TabOrder = 2
DesignSize = (
530
340)
object lblBuild: TLabel
Left = 40
Top = 16
Width = 27
Height = 15
Caption = 'Build'
end
object lblBuildId: TLabel
Left = 40
Top = 48
Width = 40
Height = 15
Caption = 'BuildId:'
end
object lblProject: TLabel
Left = 40
Top = 77
Width = 40
Height = 15
Caption = 'Project:'
end
object lblConfiguration: TLabel
Left = 3
Top = 106
Width = 77
Height = 15
Caption = 'Configuration:'
end
object edtBuildId: TEdit
Left = 96
Top = 45
Width = 417
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'edtBuildId'
OnChange = edtBuildIdChange
end
object edtProject: TEdit
Left = 96
Top = 74
Width = 417
Height = 23
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = 'Edit1'
OnChange = edtProjectChange
end
object edtConfiguration: TEdit
Left = 96
Top = 103
Width = 417
Height = 23
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'edtConfiguration'
OnChange = edtConfigurationChange
end
object chkBuildForDesign: TCheckBox
Left = 96
Top = 144
Width = 113
Height = 17
Caption = 'Build For Design'
TabOrder = 3
OnClick = chkBuildForDesignClick
end
object chkDesignOnly: TCheckBox
Left = 96
Top = 167
Width = 113
Height = 17
Caption = 'Design Only'
TabOrder = 4
OnClick = chkDesignOnlyClick
end
end
object crdRuntimeOrDesignBpl: TCard
AlignWithMargins = True
Left = 4
Top = 4
Width = 524
Height = 334
Caption = 'crdRuntime'
CardIndex = 3
TabOrder = 3
DesignSize = (
524
334)
object lblRuntime: TLabel
Left = 64
Top = 32
Width = 45
Height = 15
Caption = 'Runtime'
end
object lblRuntimeBuildId: TLabel
Left = 37
Top = 72
Width = 43
Height = 15
Caption = 'Build Id:'
end
object lblRuntimeSrc: TLabel
Left = 61
Top = 112
Width = 19
Height = 15
Caption = 'Src:'
end
object edtBPLEntryBuildId: TEdit
Left = 86
Top = 69
Width = 419
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = edtBPLEntryBuildIdOnChange
end
object edtBPLEntrySrc: TEdit
Left = 86
Top = 109
Width = 419
Height = 23
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnChange = edtBPLEntrySrcChange
end
object chkCopyLocal: TCheckBox
Left = 86
Top = 144
Width = 97
Height = 17
Caption = 'Copy Local'
TabOrder = 2
OnClick = chkCopyLocalClick
end
object chkInstall: TCheckBox
Left = 86
Top = 167
Width = 97
Height = 17
Caption = 'Install'
TabOrder = 3
OnClick = chkDesignInstallClick
end
end
object crdDependencies: TCard
Left = 1
Top = 1
Width = 530
Height = 340
Caption = 'crdDependencies'
CardIndex = 4
TabOrder = 4
DesignSize = (
530
340)
object Label1: TLabel
Left = 48
Top = 85
Width = 41
Height = 15
Caption = 'Version:'
end
object lblDependencyId: TLabel
Left = 48
Top = 56
Width = 13
Height = 15
Caption = 'Id:'
end
object edtDependencyId: TEdit
Left = 104
Top = 53
Width = 417
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
Text = 'edtBuildId'
OnChange = edtDependencyIdChange
end
object edtDependencyVersion: TEdit
Left = 104
Top = 82
Width = 417
Height = 23
Anchors = [akLeft, akTop, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = 'Edit1'
OnChange = edtDependencyVersionChange
end
end
object crdTemplates: TCard
Left = 1
Top = 1
Width = 530
Height = 340
Caption = 'crdTemplates'
CardIndex = 6
TabOrder = 6
object lblTemplateName: TLabel
Left = 72
Top = 40
Width = 83
Height = 15
Caption = 'Template Name'
end
object edtTemplateName: TEdit
Left = 72
Top = 61
Width = 401
Height = 23
TabOrder = 0
OnChange = edtTemplateNameChange
end
end
end
object btnDuplicateTemplate: TButton
Left = 200
Top = 328
Width = 122
Height = 25
Caption = 'Duplicate Template'
TabOrder = 4
OnClick = btnDuplicateTemplateClick
end
end
object tsGenerate: TTabSheet
Caption = 'Generate'
ImageIndex = 3
object GridPanel1: TGridPanel
Left = 0
Top = 0
Width = 863
Height = 411
Align = alClient
Caption = 'GridPanel1'
ColumnCollection = <
item
Value = 100.000000000000000000
end>
ControlCollection = <
item
Column = 0
Control = Panel1
Row = 0
end
item
Column = 0
Control = Memo1
Row = 1
end>
RowCollection = <
item
Value = 16.666666666666670000
end
item
Value = 83.333333333333330000
end>
TabOrder = 0
object Panel1: TPanel
Left = 1
Top = 1
Width = 861
Height = 68
Align = alClient
TabOrder = 0
object Label2: TLabel
Left = 136
Top = 24
Width = 115
Height = 15
Caption = 'Package Output Path:'
end
object btnBuildPackages: TButton
Left = 16
Top = 22
Width = 97
Height = 25
Caption = 'Build Packages'
TabOrder = 0
OnClick = btnBuildPackagesClick
end
object edtPackageOutputPath: TEdit
Left = 257
Top = 21
Width = 354
Height = 23
TabOrder = 1
Text = 'D:\Programming\components\DPM\Packages'
end
end
object Memo1: TMemo
Left = 1
Top = 69
Width = 861
Height = 341
Align = alClient
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 1
end
end
end
object tsLogging: TTabSheet
Caption = 'Logging'
ImageIndex = 4
object Memo2: TMemo
Left = 0
Top = 0
Width = 863
Height = 411
Align = alClient
TabOrder = 0
end
end
end
object MainMenu: TMainMenu
Left = 44
Top = 386
object File1: TMenuItem
Caption = '&File'
object miNew: TMenuItem
Caption = '&New'
ShortCut = 16462
OnClick = miNewClick
end
object miOpen: TMenuItem
Caption = '&Open...'
ShortCut = 16463
OnClick = miOpenClick
end
object miSave: TMenuItem
Caption = '&Save'
ShortCut = 16467
OnClick = miSaveClick
end
object miSaveAs: TMenuItem
Caption = 'Save &As...'
OnClick = miSaveAsClick
end
object N2: TMenuItem
Caption = '-'
end
object miPrint: TMenuItem
Caption = '&Print...'
end
object miPrintSetup: TMenuItem
Caption = 'P&rint Setup...'
end
object N1: TMenuItem
Caption = '-'
end
object miExit: TMenuItem
Caption = 'E&xit'
OnClick = miExitClick
end
end
object miOptions: TMenuItem
Caption = 'Options'
OnClick = miOptionsClick
end
end
object OpenDialog: TOpenDialog
DefaultExt = '*.dspec'
Filter = 'Delphi Package Manager Spec Files|*.dspec'
Left = 372
Top = 370
end
object SaveDialog: TSaveDialog
DefaultExt = '*.dspec'
Filter = 'Delphi Package Manager Spec Files|*.dspec'
Left = 460
Top = 362
end
object PopupMenu: TPopupMenu
Left = 84
Top = 122
end
object BalloonHint1: TBalloonHint
Left = 389
Top = 286
end
object ImageList1: TImageList
Left = 405
Top = 214
Bitmap = {
494C010107000800040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
0000000000003600000028000000400000002000000001002000000000000020
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000A1A1A10053535300505050005151
5100515151005151510051515100515151005151510051515100515151005151
5100515151004E4E4E0047474700A9A9A9001F1F1F0043434300424242001111
1100424242003D3D3D001818180043434300272727002C2C2C00434343001313
1300414141004343430022222200404040000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000007F7F7F00E2E3E300DEDEDE00DBDB
DB00DBDBDB00D9DADA00DADBDB00D9D9D900D7D7D700D6D6D600D5D5D500D4D4
D400D3D3D300E0E0E000999999004949490042424200000000FF000000FF4141
4100000000FF000000FF77787800000000FF96969600A9A9A900000000FF6B6B
6B00000000FFCECECE003B3B3B00000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000008282820076767600767676000000
000000000000000000000000000000000000ABABAB00FCFBFB00F0EEEE00F0EF
EF00ECEBEB00ECEBEB00E5E2E200E6E2E200E9E7E700E8E7E700EAEAEA00E8E9
E900E6E6E600F5F4F400C6C6C6004E4E4E0042424200000000FF000000FFCACA
CA00000000FF000000FF000000FF000000FFDBDDDD00000000FF000000FF0000
00FFCECECE003B3B3B00000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000858585004343430087878700878787000000
000000000000000000000000000000000000A9A9A900F7F5F500DEDADA00DAD3
D300DAD4D400DFDCDC00D8D3D300D7D2D200D3CDCD00D6D1D100DEDBDB00DBD9
D900DBD9D900ECEDED00BDBDBD004F4F4F001D1D1D0065656500CECECE000000
00FF91919100848484008484840084848400BABABA00000000FF000000FFCECE
CE003B3B3B00000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000AAAAAA00F4F2F200DAD4D400DCD5
D500E5E3E300E9E9E900E5E3E300E3E1E100E1DFDF00DEDCDC00E0DEDE00DFDD
DD00DEDDDD00EEEEEE00C0C0C0004F4F4F003A3A3A00DCDCDC00000000FF0000
00FF30303000BABABA00A7A7A7001E1E1E00C2C4C400000000FFCBCBCB003B3B
3B00000000FF000000FFDBDBDB00AFAFAF000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000ABABAB00F9F7F700E0DADA00DBD5
D500DFDADA00E1DDDD00E1DDDD00E2DDDD00E4E2E200DDDADA00DFDDDD00E0DF
DF00E1E1E100EFF0F000C1C1C1004F4F4F0042424200000000FF000000FF0000
00FF41414100000000FF40404000BDBDBD00000000FFCBCCCC003A3A3A00DFE0
E0007E7E7E00363636005C5C5C002E2E2E000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000AEAEAE00F1ECEC00D4CBCB00E0DA
DA00E9E7E700E2DFDF00EBEAEA00EDEEEE00EAEAEA00E8E9E900E6E7E700E7E6
E600E3E4E400F0F0F000C3C2C200505050001515150064646400000000FF0000
00FF313131003F3F3F00C5C5C500000000FFCBCBCB003C3C3C00000000FF7172
72007070700039393900AFAFAF00676767000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000076767600767676003A3A3A003A3A3A0076767600767676000000
000000000000000000000000000000000000AEAFAF00FAF9F900DFDADA00E1DB
DB00E6E3E300E9E8E800E1DCDC00E5E3E300E4E2E200E3E0E000E2E0E000DEDA
DA00DDDADA00F1F1F100C5C5C5005050500042424200000000FF000000FF0000
00FF14141400C5C5C500000000FFCFCFCF0039393900000000FF7A7A7A007A7A
7A00000000FFDADADA001E1E1E00A1A1A1000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000008787870087878700434343004343430087878700878787000000
000000000000000000000000000000000000AFAFAF00FEFEFE00ECEAEA00E4E1
E100E5E1E100E9E6E600DFDBDB00DED9D900E3DFDF00DFDCDC00E0DCDC00E4E3
E300E3E2E200F2F3F300C6C7C7005050500036363600CBCBCB00000000FF0000
00FF000000FF000000FFCECECE003B3B3B00000000FF85858500717171009C9C
9C0067676700B9B9B90044444400000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000B2B2B200F8F6F600E8E5E500EDEB
EB00EBEAEA00E9E6E600EEEDED00E6E4E400E4E1E100E9E8E800EBEAEA00EAEB
EB00E7E7E700F4F4F400C8C8C800505050002121210076767600D2D2D2000000
00FF000000FFCECECE003B3B3B00000000FF9191910062626200ACACAC005151
5100C0C0C00041414100000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000B3B4B400F6F3F300DCD5D500E9E6
E600ECEAEA00EAE6E600EEEDED00E8E4E400E5E1E100EBEAEA00EDEDED00EAEA
EA00E8E8E800F5F5F500C9C9C9005050500042424200000000FF000000FF0000
00FFCFCFCF003A3A3A00000000FF9D9D9D005F5F5F00B8B8B80049494900C8C8
C8003D3F3F00000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000007E7E7E007E7E7E0000000000000000000000
000000000000000000000000000000000000B3B3B300FFFFFF00F3F5F800F7FB
FD00F9FEFF00F7FDFF00F5FBFE00F5FAFE00F3FAFD00F1F7FB00F0F5F900EEF4
F700ECF2F600F9FFFF00CBCCCC00525252002525250098989800000000FFCECE
CE003B3B3B00000000FFA1A1A10055555500C1C1C10043434300C6C6C6003939
3900000000FF000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000858585003A3A3A0076767600767676000000
000000000000000000000000000000000000B5B4B400FCE6D800EFD2BD00EDD2
BF00EACEBD00E9CCBB00E8CAB800E6C8B500E5C6B300E2C3B200E1C1AF00DFBF
AD00DCB9A600EBCBB900CBC6C2005355550032323200CACACA00CECECE003B3B
3B00000000FFAAAAAA0015151500000000FF6B6B6B00C8C8C8003A3A3A000000
00FF000000FF000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000008A8A8A0087878700878787000000
000000000000000000000000000000000000B9B9B700EDB48F00D6885300D88C
5B00D6885500D3845100D17F4D00CE7B4800CC784500CA744100C7703C00C56D
3900C1602B00D2794800CABBB20055585B0042424200CFCFCF003A3A3A000000
00FF000000FF36363600ABABAB0049494900D0D0D00039393900000000FF0000
00FF000000FF000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000BBBCBC00FBD8BE00EEB89300EEBA
9800ECB79400EAB49100E8B18E00E6AE8B00E5AB8900E3A88500E1A58100DFA3
7F00DC997500EBAE8E00D3C9C40054565800232323003B3B3B00000000FF0000
00FF000000FF34343400000000FF9A9A9A001C1C1C00DCDCDC00000000FF0000
00FF000000FF000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000093949400C1C2C200C2C1C000C1C0
BF00C1C0BF00C0BFBE00C0BFBF00C0BFBF00C0BFBF00BFBFBE00C0BFBE00C0BF
BE00C1C0BF00C9C7C7008E8E8E009E9E9E004C4C4C00000000FF000000FF0000
00FF000000FFC7C7C700393939003D3D3D00D7D7D700000000FF000000FF0000
00FF000000FF000000FF000000FF000000FF0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000D1D1D8009495AA009394A8009394
A8009394A8009192A5009394A8009495AA009496AB009496AB009394A7009496
AB009496AB009496AB009496AB00D1D1D8000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000ECE0D600000000009A9CB3006474EC006373EA006879
FA006779FA006972B0006779FA006879FA00687AFE00697BFF006A73B2006474
EB00697BFF00697BFF00697BFF009A9CB3000000000000000000000000000000
0000000000000000000000000000F2F0D300E8E38D00E6E07F00E4DF7600E8E2
8700F2EFBF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000D3B59900AD733D00EBDED2009A9CB3006474EB00697BFF00687A
FE006879FA00717AC1006779FA006779FA006879FA00687AFE006A73B200697B
FF00697BFF00697BFF00697BFF009A9CB3000000000000000000F4F7D300E2EC
8400E2EA8F0000000000E8E4A000E6E39A000000000000000000000000000000
0000F0EDB600E7E3870000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000DAF0FB004ABBF30043BBF60042BA
F50042B8F20042B8F10041B5EE0040AFE60040AFE70040B1EA0040B2EB0040B2
EB0078929300AD733D00A29C8D00000000009598AA006266A200767BD0006269
A000656EAA006971A800656EA800626AA100626AA100656EA8005D638C00666E
AB0062699E00666EAB00666EAB009799AC000000000000000000000000000000
000000000000EDEAB600EAE8AD00000000000000000000000000000000000000