-
Notifications
You must be signed in to change notification settings - Fork 8
/
UServer.Main.dfm
17472 lines (17472 loc) · 940 KB
/
UServer.Main.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 FormMain: TFormMain
Left = 0
Top = 0
Caption = #1059#1087#1088#1072#1074#1083#1077#1085#1080#1077' '#1089#1077#1088#1074#1077#1088#1086#1084' Unturned'
ClientHeight = 785
ClientWidth = 1233
Color = 2171169
Constraints.MinHeight = 467
Constraints.MinWidth = 683
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDefault
ShowHint = True
StyleElements = [seClient, seBorder]
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object PanelClient: TPanel
AlignWithMargins = True
Left = 38
Top = 0
Width = 1195
Height = 785
Margins.Left = 38
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object SplitterMainLog: TSplitter
Left = 0
Top = 635
Width = 1195
Height = 2
Cursor = crVSplit
Align = alBottom
AutoSnap = False
Color = 4539717
ParentColor = False
ResizeStyle = rsUpdate
ExplicitTop = 628
ExplicitWidth = 1107
end
object PanelPlayers: TPanel
Left = 932
Top = 0
Width = 263
Height = 635
Align = alRight
BevelEdges = [beLeft]
BevelOuter = bvNone
TabOrder = 0
object PanelPlayerInfo: TPanel
AlignWithMargins = True
Left = 7
Top = 7
Width = 249
Height = 190
Margins.Left = 7
Margins.Top = 7
Margins.Right = 7
Margins.Bottom = 0
Align = alTop
BevelOuter = bvNone
Color = 3355443
ParentBackground = False
ShowCaption = False
TabOrder = 0
DesignSize = (
249
190)
object SpeedButtonPlayerCtrl: TSpeedButton
Left = 226
Top = 49
Width = 23
Height = 22
Anchors = [akTop, akRight]
ImageIndex = 5
Images = ImageList16
Flat = True
OnClick = SpeedButtonPlayerCtrlClick
ExplicitLeft = 228
end
object EditPlayerSteamID: TEdit
Left = 6
Top = 50
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 0
TextHint = 'SteamID'
OnChange = EditPlayerSteamIDChange
end
object EditPlayerSteamNick: TEdit
Left = 6
Top = 26
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 1
TextHint = #1053#1080#1082' '#1074' Steam'
end
object EditPlayerNick: TEdit
Left = 6
Top = 2
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 2
TextHint = #1053#1080#1082' '#1074' '#1080#1075#1088#1077
end
object PanelPlayerCtrl: TPanel
Left = 0
Top = 73
Width = 249
Height = 119
Align = alCustom
Anchors = [akLeft, akTop, akRight, akBottom]
BevelOuter = bvNone
Color = 3355443
ParentBackground = False
TabOrder = 3
object EditPlayerIP: TEdit
Left = 6
Top = 1
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 0
TextHint = 'IP-'#1072#1076#1077#1088#1089
end
object EditPlayerReg: TEdit
Left = 6
Top = 25
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 1
TextHint = #1044#1072#1090#1072' '#1088#1077#1075#1080#1089#1090#1088#1072#1094#1080#1080
end
object EditPlayerPlayTime: TEdit
Left = 6
Top = 49
Width = 218
Height = 21
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 2
TextHint = #1042#1088#1077#1084#1103' '#1080#1075#1088#1099
OnChange = EditPlayerSteamIDChange
end
object EditPlayerGeo: TEdit
Left = 6
Top = 72
Width = 218
Height = 20
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 3
TextHint = #1052#1077#1089#1090#1086#1085#1072#1093#1086#1078#1076#1077#1085#1080#1077
OnChange = EditPlayerSteamIDChange
end
object Panel25: TPanel
Left = 0
Top = 94
Width = 249
Height = 25
Align = alBottom
BevelOuter = bvNone
TabOrder = 4
object SpeedButtonPCBan: TSpeedButton
Left = 0
Top = 0
Width = 23
Height = 25
Hint = #1047#1072#1073#1072#1085#1080#1090#1100' '#1080#1075#1088#1086#1082#1072' ('#1085#1077#1086#1073#1093#1086#1076#1080#1084#1086' '#1091#1082#1072#1079#1072#1090#1100' '#1074#1088#1077#1084#1103' '#1080' '#1087#1088#1080#1095#1080#1085#1091')'
Align = alLeft
ImageIndex = 6
Images = ImageList16
Flat = True
OnClick = SpeedButtonExeBanClick
ExplicitLeft = 28
ExplicitTop = 3
ExplicitHeight = 22
end
object SpeedButtonPCKick: TSpeedButton
Left = 23
Top = 0
Width = 23
Height = 25
Hint = #1050#1080#1082#1085#1091#1090#1100' '#1080#1075#1088#1086#1082#1072' '#1089' '#1089#1077#1088#1074#1077#1088#1072
Align = alLeft
ImageIndex = 7
Images = ImageList16
Flat = True
OnClick = SpeedButtonPCKickClick
ExplicitLeft = 51
ExplicitTop = 3
ExplicitHeight = 22
end
object SpeedButtonPCKill: TSpeedButton
Left = 46
Top = 0
Width = 23
Height = 25
Hint = #1059#1073#1080#1090#1100' '#1087#1077#1089#1088#1086#1085#1072#1078#1072' '#1080#1075#1088#1086#1082#1072
Align = alLeft
ImageIndex = 16
Images = ImageList16
Flat = True
OnClick = SpeedButtonPCKillClick
ExplicitLeft = 74
ExplicitTop = 3
ExplicitHeight = 22
end
object SpeedButtonCurSteamInfo: TSpeedButton
Left = 226
Top = 0
Width = 23
Height = 25
Hint = #1048#1085#1092#1086#1088#1072#1094#1080#1103' '#1087#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1103' Steam'
Align = alRight
ImageIndex = 17
Images = ImageList16
Flat = True
OnClick = ActionSteamInfoExecute
ExplicitLeft = 13
ExplicitTop = 3
ExplicitHeight = 22
end
object SpeedButtonTPTarget: TSpeedButton
Left = 96
Top = 0
Width = 23
Height = 25
Hint = #1059#1089#1090#1072#1085#1086#1074#1080#1090#1100' '#1082#1072#1082' '#1094#1077#1083#1100' '#1076#1083#1103' '#1058#1055
Align = alLeft
ImageIndex = 29
Images = ImageList16
Flat = True
OnClick = SpeedButtonTPTargetClick
ExplicitLeft = 126
ExplicitTop = -8
end
object SpeedButtonPCPerm: TSpeedButton
Left = 203
Top = 0
Width = 23
Height = 25
Hint = #1055#1088#1080#1074#1077#1083#1077#1075#1080#1080
Align = alRight
ImageIndex = 30
Images = ImageList16
Flat = True
OnClick = ButtonGetPlayerPClick
ExplicitLeft = 120
ExplicitTop = 3
ExplicitHeight = 22
end
object SpeedButtonPCMute: TSpeedButton
Left = 69
Top = 0
Width = 23
Height = 25
Hint = #1047#1072#1087#1088#1077#1090#1080#1090#1100' '#1095#1072#1090
Align = alLeft
ImageIndex = 34
Images = ImageList16
Flat = True
OnClick = SpeedButtonPCMuteClick
ExplicitLeft = 143
ExplicitTop = 3
ExplicitHeight = 22
end
object Shape9: TShape
AlignWithMargins = True
Left = 93
Top = 5
Width = 2
Height = 15
Margins.Left = 1
Margins.Top = 5
Margins.Right = 1
Margins.Bottom = 5
Align = alLeft
Brush.Color = 4539717
Pen.Color = 4539717
ExplicitLeft = 118
ExplicitTop = 3
ExplicitHeight = 19
end
object SpeedButtonPInfo: TSpeedButton
Left = 180
Top = 0
Width = 23
Height = 25
Hint = #1042#1089#1077' '#1076#1072#1085#1085#1099#1077
Align = alRight
ImageIndex = 20
Images = ImageList16
Flat = True
OnClick = SpeedButtonPInfoClick
ExplicitLeft = 120
ExplicitTop = 3
ExplicitHeight = 22
end
end
end
end
object PanelFastChat: TPanel
AlignWithMargins = True
Left = 7
Top = 430
Width = 249
Height = 200
Margins.Left = 7
Margins.Top = 0
Margins.Right = 7
Margins.Bottom = 5
Align = alBottom
BevelOuter = bvNone
Locked = True
ShowCaption = False
TabOrder = 1
object PanelFastChatSend: TPanel
Left = 0
Top = 170
Width = 249
Height = 30
Align = alBottom
BevelOuter = bvNone
Color = 4539717
ParentBackground = False
TabOrder = 0
object SpeedButtonFastChatSend: TSpeedButton
AlignWithMargins = True
Left = 221
Top = 0
Width = 25
Height = 30
Margins.Left = 0
Margins.Top = 0
Margins.Bottom = 0
Align = alRight
Flat = True
Glyph.Data = {
36090000424D3609000000000000360000002800000018000000180000000100
2000000000000009000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000006F6F6F178787877BA3A3
A3C7AFAFAFE9B4B4B4FAB4B4B4FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AADADADEEC9C9C9FFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC9C9C9FFADADADEE8C8C
8C7A555555060000000000000000000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFB6B6B6FFB0B0B0FFB0B0B0FFB0B0
B0FFB0B0B0FFB0B0B0FFB0B0B0FFB0B0B0FFB0B0B0FFB0B0B0FFB0B0B0FFB5B5
B5FFCACACAFFC2C2C2FE8C8C8C7A000000000000000000000000000000000000
00006F6F6F17ADADADEECACACAFFBBBBBBFF656565FF636363FF636363FF6363
63FF636363FF636363FF636363FF636363FF636363FF636363FF636363FF6565
65FFB6B6B6FFCACACAFFADADADEE6F6F6F170000000000000000000000000000
00008787877BC9C9C9FECBCBCBFFB3B3B3FF636363FF636363FF636363FF6363
63FF636363FF636363FF636363FF636363FF636363FF636363FF636363FF6363
63FFAEAEAEFFCBCBCBFFC9C9C9FF8787877B0000000000000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFB3B3B3FF636363FF636363FF636363FF6363
63FF636363FF636363FF636363FF636363FF636363FF636363FF636363FF6363
63FFAEAEAEFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFB3B3B3FF636363FF636363FF636363FF6363
63FF636363FF636363FF636363FF636363FF636363FF636363FF636363FF6363
63FFAEAEAEFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFB3B3B3FF636363FF636363FF636363FF6363
63FF6E6E6EFFA5A5A5FFA7A7A7FF707070FF636363FF636363FF636363FF6363
63FFAEAEAEFFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFB3B3B3FF636363FF636363FF656565FF9090
90FFC1C1C1FF9F9F9FFF9C9C9CFFC1C1C1FF929292FF666666FF636363FF6363
63FFAEAEAEFFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFB3B3B3FF636363FF797979FFB2B2B2FFB3B3
B3FF7B7B7BFF636363FF636363FF797979FFB1B1B1FFB4B4B4FF7C7C7CFF6363
63FFAEAEAEFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFB3B3B3FF696969FFBBBBBBFF929292FF6565
65FF636363FF636363FF636363FF636363FF646464FF8F8F8FFFBCBCBCFF6C6C
6CFFAEAEAEFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000000000
00008787877BC9C9C9FECBCBCBFFB6B6B6FF656565FF6C6C6CFF636363FF6363
63FF636363FF636363FF636363FF636363FF636363FF636363FF6B6B6BFF6666
66FFB1B1B1FFCBCBCBFFC9C9C9FF8787877B0000000000000000000000000000
000074747416ABABABEECACACAFFC9C9C9FF9F9F9FFF979797FF979797FF9797
97FF979797FF979797FF979797FF979797FF979797FF979797FF979797FF9D9D
9DFFC9C9C9FFCACACAFFABABABEE6F6F6F170000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFC2C2C2FE8A8A8A7A000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AABABABEEC9C9C9FECACA
CAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC9C9C9FEADADADEE8A8A
8A7A555555060000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000747474168787877BA3A3
A3C7AFAFAFE9B5B5B5FAB5B5B5FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000}
OnClick = SpeedButtonFastChatSendClick
ExplicitLeft = 225
end
object SpeedButtonFastChatDown: TSpeedButton
Left = 196
Top = 0
Width = 25
Height = 30
Margins.Left = 0
Margins.Top = 0
Margins.Bottom = 0
Align = alRight
Flat = True
Glyph.Data = {
36090000424D3609000000000000360000002800000018000000180000000100
2000000000000009000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000006F6F6F178787877BA3A3
A3C7AFAFAFE9B4B4B4FAB4B4B4FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AADADADEEC9C9C9FFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC9C9C9FFADADADEE8C8C
8C7A555555060000000000000000000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFC2C2C2FE8C8C8C7A000000000000000000000000000000000000
00006F6F6F17ADADADEECACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCACACAFFADADADEE6F6F6F170000000000000000000000000000
00008787877BC9C9C9FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCACACAFFCACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFC9C9C9FF8787877B0000000000000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCACACAFFA4A4A4FFA1A1A1FFCACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACA
CAFFA3A3A3FF686868FF686868FF9F9F9FFFCACACAFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFA4A4
A4FF686868FF9D9D9DFFA2A2A2FF686868FFA0A0A0FFCACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFA7A7A7FF6666
66FFA0A0A0FFCBCBCBFFCBCBCBFFA4A4A4FF666666FFA2A2A2FFCACACAFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFB7B7B7FFA4A4
A4FFCACACAFFCBCBCBFFCBCBCBFFCACACAFFA6A6A6FFB3B3B3FFCACACAFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000000000
00008787877BC9C9C9FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFC9C9C9FF8787877B0000000000000000000000000000
000074747416ABABABEECACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCACACAFFABABABEE6F6F6F170000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFC2C2C2FE8A8A8A7A000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AABABABEEC9C9C9FECACA
CAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC9C9C9FEADADADEE8A8A
8A7A555555060000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000747474168787877BA3A3
A3C7AFAFAFE9B5B5B5FAB5B5B5FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000}
OnClick = SpeedButtonFastChatDownClick
ExplicitLeft = 197
end
object ShapeFastChatColor: TLabelEx
AlignWithMargins = True
Left = 172
Top = 0
Width = 22
Height = 30
Cursor = crHandPoint
Margins.Left = 0
Margins.Top = 0
Margins.Right = 2
Margins.Bottom = 0
Align = alRight
Brush.Color = clSilver
Pen.Color = 7566195
Shape = stCircle
OnMouseUp = ShapeMiniChatColorMouseUp
Caption = ''
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter, tfWordBreak, tfWordEllipsis]
IgnorBounds = True
EllipseRectVertical = False
ExplicitLeft = 169
ExplicitTop = 3
end
object EditSendChatFast: TEdit
AlignWithMargins = True
Left = 3
Top = 6
Width = 168
Height = 23
Margins.Top = 6
Margins.Right = 1
Margins.Bottom = 1
Align = alClient
BevelEdges = [beLeft, beRight, beBottom]
BevelInner = bvNone
BevelOuter = bvRaised
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 0
TextHint = #1053#1072#1087#1080#1096#1080#1090#1077' '#1089#1086#1086#1073#1097#1077#1085#1080#1077'...'
OnKeyDown = EditSendChatFastKeyDown
OnKeyPress = EditSendChatFastKeyPress
end
end
object TableExFastChat: TTableEx
Left = 0
Top = 0
Width = 249
Height = 170
Align = alClient
BevelInner = bvNone
BorderStyle = bsNone
Color = 3355443
DefaultRowHeight = 25
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
StyleElements = [seBorder]
OnMouseUp = TableExMiniChatMouseUp
OnDrawCellData = TableExFastChatDrawCellData
ItemIndex = -1
OnItemClick = TableExMiniChatItemClick
GetData = TableExFastChatGetData
OnEdit = TableExFastChatEdit
Columns = <>
ShowScrollBar = False
CanNoSelect = False
ItemCount = 2
LineColor = 3355443
LineColorXor = 3355443
LineHotColor = 6052956
LineSelColor = 6710886
FontHotLine.Charset = DEFAULT_CHARSET
FontHotLine.Color = clSilver
FontHotLine.Height = -11
FontHotLine.Name = 'Tahoma'
FontHotLine.Style = []
FontLine.Charset = DEFAULT_CHARSET
FontLine.Color = clSilver
FontLine.Height = -11
FontLine.Name = 'Tahoma'
FontLine.Style = []
FontSelLine.Charset = DEFAULT_CHARSET
FontSelLine.Color = clSilver
FontSelLine.Height = -11
FontSelLine.Name = 'Tahoma'
FontSelLine.Style = []
ShowColumns = False
ColumnsFont.Charset = DEFAULT_CHARSET
ColumnsFont.Color = 2631720
ColumnsFont.Height = -11
ColumnsFont.Name = 'Tahoma'
ColumnsFont.Style = []
LastColumnAutoSize = False
end
end
object PanelOnline: TPanel
AlignWithMargins = True
Left = 7
Top = 206
Width = 249
Height = 215
Margins.Left = 7
Margins.Top = 9
Margins.Right = 7
Margins.Bottom = 9
Align = alClient
BevelOuter = bvNone
Locked = True
ShowCaption = False
TabOrder = 2
object ListBoxExPlayers: TTableEx
Left = 0
Top = 0
Width = 249
Height = 190
Margins.Left = 0
Margins.Top = 0
Margins.Right = 1
Margins.Bottom = 0
Align = alClient
BorderStyle = bsNone
Color = 3355443
DefaultRowHeight = 30
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
StyleElements = [seBorder]
OnStartDrag = ListBoxExPlayersStartDrag
OnMouseDown = ListBoxExPlayersMouseDown
OnDrawCellData = ListBoxExPlayersDrawCellData
ItemIndex = -1
OnItemClick = ListBoxExPlayersItemClick
Columns = <>
DefaultDataDrawing = False
ShowScrollBar = False
CanNoSelect = False
ItemCount = 4
LineColor = 3355443
LineColorXor = 3355443
LineHotColor = 6052956
LineSelColor = 6710886
ColumnsColor = 6052956
FontHotLine.Charset = DEFAULT_CHARSET
FontHotLine.Color = 2631720
FontHotLine.Height = -11
FontHotLine.Name = 'Tahoma'
FontHotLine.Style = []
FontLine.Charset = DEFAULT_CHARSET
FontLine.Color = 2631720
FontLine.Height = -11
FontLine.Name = 'Tahoma'
FontLine.Style = []
FontSelLine.Charset = DEFAULT_CHARSET
FontSelLine.Color = clWhite
FontSelLine.Height = -11
FontSelLine.Name = 'Tahoma'
FontSelLine.Style = []
ShowColumns = False
ColumnsFont.Charset = DEFAULT_CHARSET
ColumnsFont.Color = clSilver
ColumnsFont.Height = -11
ColumnsFont.Name = 'Tahoma'
ColumnsFont.Style = [fsBold]
LastColumnAutoSize = False
end
object PanelPlayersInfo: TPanel
Left = 0
Top = 190
Width = 249
Height = 25
Align = alBottom
BevelEdges = [beLeft, beRight, beBottom]
BevelOuter = bvNone
Color = 4539717
ParentBackground = False
TabOrder = 1
object LabelPlayers: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 103
Height = 19
Align = alLeft
Caption = #1050#1086#1083'-'#1074#1086' '#1080#1075#1088#1086#1082#1086#1074':'
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
ExplicitHeight = 14
end
object SpeedButtonPlayersUpdate: TSpeedButton
Left = 226
Top = 0
Width = 23
Height = 25
Action = ActionPlayersUpdate
Align = alRight
Images = ImageList16
Flat = True
ExplicitLeft = 186
ExplicitTop = 3
ExplicitHeight = 30
end
end
end
end
object PanelBottom: TPanel
Left = 0
Top = 637
Width = 1195
Height = 148
Margins.Top = 0
Margins.Right = 5
Margins.Bottom = 0
Align = alBottom
BevelEdges = [beTop]
BevelOuter = bvNone
ShowCaption = False
TabOrder = 1
object Splitter1: TSplitter
Left = 717
Top = 0
Width = 2
Height = 118
Align = alRight
Color = 4539717
ParentColor = False
ResizeStyle = rsUpdate
ExplicitLeft = 691
ExplicitTop = 6
end
object PanelCommandExe: TPanel
Left = 0
Top = 118
Width = 1195
Height = 30
Align = alBottom
BevelOuter = bvNone
Color = 4539717
ParentBackground = False
TabOrder = 0
object SpeedButtonCommandExe: TSpeedButton
AlignWithMargins = True
Left = 3
Top = 0
Width = 27
Height = 30
Margins.Top = 0
Margins.Bottom = 0
Align = alLeft
Flat = True
Glyph.Data = {
36090000424D3609000000000000360000002800000018000000180000000100
2000000000000009000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000006F6F6F178787877BA3A3
A3C7AFAFAFE9B4B4B4FAB4B4B4FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AADADADEEC9C9C9FFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC9C9C9FFADADADEE8C8C
8C7A555555060000000000000000000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFC2C2C2FE8C8C8C7A000000000000000000000000000000000000
00006F6F6F17ADADADEECACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC6C6
C6FFCACACAFFCBCBCBFFCBCBCBFFCACACAFFC6C6C6FFCACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCACACAFFADADADEE6F6F6F170000000000000000000000000000
00008787877BC9C9C9FECBCBCBFFCBCBCBFFCBCBCBFFCACACAFFB8B8B8FF7575
75FFB8B8B8FFCBCBCBFFCBCBCBFFBBBBBBFF767676FFB5B5B5FFCACACAFFCBCB
CBFFCBCBCBFFCBCBCBFFC9C9C9FF8787877B0000000000000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFCBCBCBFFCBCBCBFFB5B5B5FF6C6C6CFF8B8B
8BFFC8C8C8FFCBCBCBFFCBCBCBFFC8C8C8FF909090FF6A6A6AFFB1B1B1FFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFCBCBCBFFB5B5B5FF6E6E6EFF898989FFC8C8
C8FFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC8C8C8FF8E8E8EFF6D6D6DFFB1B1
B1FFCACACAFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFC6C6C6FF6D6D6DFF7A7A7AFFC7C7C7FFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFC8C8C8FF7F7F7FFF6B6B
6BFFC3C3C3FFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000007272
721DB5B5B5FACBCBCBFFCBCBCBFFCBCBCBFFA4A4A4FF686868FF9D9D9DFFCACA
CAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFA2A2A2FF686868FFA0A0
A0FFCACACAFFCBCBCBFFCBCBCBFFB4B4B4FA7272721D00000000000000006D6D
6D15AFAFAFE9CBCBCBFFCBCBCBFFCBCBCBFFCACACAFFA3A3A3FF686868FF9F9F
9FFFCACACAFFCBCBCBFFCBCBCBFFCACACAFFA4A4A4FF686868FF9F9F9FFFCACA
CAFFCBCBCBFFCBCBCBFFCBCBCBFFAFAFAFE96D6D6D1500000000000000006666
6605A3A3A3C7CACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFA4A4A4FF6868
68FFB6B6B6FFCBCBCBFFCBCBCBFFBABABAFF696969FFA0A0A0FFCACACAFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFA3A3A3C76666660500000000000000000000
00008787877BC9C9C9FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFBCBC
BCFFCACACAFFCBCBCBFFCBCBCBFFCACACAFFBCBCBCFFCACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFC9C9C9FF8787877B0000000000000000000000000000
000074747416ABABABEECACACAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCACACAFFABABABEE6F6F6F170000000000000000000000000000
0000000000008A8A8A7AC2C2C2FECBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFC2C2C2FE8A8A8A7A000000000000000000000000000000000000
00000000000055555506969696AAC6C6C6FFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCB
CBFFC6C6C6FF969696AA55555506000000000000000000000000000000000000
0000000000000000000071717112969696AAC2C2C2FECACACAFFCBCBCBFFCBCB
CBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC2C2
C2FE969696AA7171711200000000000000000000000000000000000000000000
0000000000000000000000000000555555068A8A8A7AABABABEEC9C9C9FECACA
CAFFCBCBCBFFCBCBCBFFCBCBCBFFCBCBCBFFCACACAFFC9C9C9FEADADADEE8A8A
8A7A555555060000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000747474168787877BA3A3
A3C7AFAFAFE9B5B5B5FAB5B5B5FAAFAFAFE9A3A3A3C78787877B6F6F6F170000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000006666
66056D6D6D157272721D7272721D6D6D6D156666660500000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000}
OnClick = SpeedButtonCommandExeClick
ExplicitLeft = 816
ExplicitTop = 1
ExplicitHeight = 23
end
object LabelLastAction: TLabel
AlignWithMargins = True
Left = 524
Top = 3
Width = 668
Height = 24
Margins.Left = 10
Align = alRight
AutoSize = False
Caption = #1055#1086#1089#1083#1077#1076#1085#1077#1077' '#1076#1077#1081#1089#1090#1074#1080#1077
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Layout = tlCenter
ExplicitLeft = 527
ExplicitTop = 0
ExplicitHeight = 30
end
object EditCommandSend: TEdit
AlignWithMargins = True
Left = 38
Top = 6
Width = 475
Height = 23
Margins.Left = 5
Margins.Top = 6
Margins.Right = 1
Margins.Bottom = 1
Align = alClient
BevelEdges = [beLeft, beRight, beBottom]
BevelInner = bvNone
BevelOuter = bvRaised
BorderStyle = bsNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
TabOrder = 0
TextHint = #1053#1072#1087#1080#1096#1080#1090#1077' '#1082#1086#1084#1072#1085#1076#1091'...'
OnKeyDown = EditCommandSendKeyDown
OnKeyPress = EditCommandSendKeyPress
end
end
object TableExLogGamePlay: TTableEx
Left = 719
Top = 0
Width = 476
Height = 118
Align = alRight
BevelInner = bvNone
BorderStyle = bsNone
Color = 3355443
DefaultRowHeight = 25
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
StyleElements = [seBorder]
ItemIndex = -1
GetData = TableExLogGamePlayGetData
Columns = <>
ShowScrollBar = False
CanNoSelect = False
ItemCount = 2
LineColor = 3355443
LineColorXor = 3355443
LineHotColor = 6052956
LineSelColor = 6710886
FontHotLine.Charset = DEFAULT_CHARSET
FontHotLine.Color = clSilver
FontHotLine.Height = -11
FontHotLine.Name = 'Tahoma'