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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
|
//
// This file was automatically generated by wxrc, do not edit by hand.
//
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include <wx/filesys.h>
#include <wx/fs_mem.h>
#include <wx/xrc/xmlres.h>
#include <wx/xrc/xh_all.h>
#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805
#define XRC_ADD_FILE(name, data, size, mime) \
wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime)
#else
#define XRC_ADD_FILE(name, data, size, mime) \
wxMemoryFSHandler::AddFile(name, data, size)
#endif
static size_t xml_res_size_0 = 745;
static unsigned char xml_res_file_0[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,5,74,0,0,5,74,1,26,195,117,109,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,102,73,68,65,84,88,133,197,150,75,72,
84,97,20,199,127,103,102,156,33,74,90,132,74,11,117,81,11,55,209,46,40,
92,70,16,173,130,137,220,4,81,164,102,20,61,209,76,131,102,132,80,202,116,
72,68,72,138,194,136,202,6,162,218,84,20,49,6,69,155,22,46,196,213,140,
211,131,194,77,77,249,184,119,230,107,49,134,58,119,30,247,53,117,224,194,
229,255,125,247,156,31,255,115,248,238,39,74,41,114,67,66,31,166,128,245,
134,5,19,177,153,25,105,33,58,122,246,226,237,78,51,251,125,5,244,26,187,
0,62,210,28,151,123,231,7,122,210,158,147,93,99,29,165,246,123,236,20,41,
21,1,52,218,212,131,246,193,80,211,149,255,2,0,224,71,163,77,198,207,68,
66,251,251,77,1,200,133,215,143,165,243,85,66,186,99,113,144,74,171,5,79,
51,102,208,42,208,105,147,241,83,67,225,125,131,37,1,80,108,4,169,37,173,
215,161,207,91,118,230,170,12,112,142,59,6,221,71,154,22,162,39,134,67,
193,235,197,1,86,134,174,129,190,96,149,129,62,137,112,128,103,121,33,154,
37,122,108,36,28,28,54,7,224,0,162,83,110,18,99,171,65,247,146,225,8,209,
214,27,225,189,35,230,0,28,64,52,242,145,23,108,99,134,26,146,84,243,137,
42,62,83,197,87,54,176,155,137,230,222,240,193,107,127,247,22,58,7,86,67,
0,248,2,150,32,118,242,158,30,14,211,173,90,243,45,111,111,95,122,49,55,
108,54,157,232,98,148,203,50,84,116,143,249,105,183,9,209,193,45,250,36,
82,112,189,116,11,114,33,32,111,59,166,168,71,80,75,15,8,217,127,140,160,
8,242,146,36,213,68,104,114,8,80,4,162,65,61,180,156,10,236,30,197,186,
6,250,162,173,79,221,1,128,44,128,11,16,206,126,70,46,64,24,102,96,77,133,
135,254,93,181,150,146,60,79,204,241,104,250,183,59,0,62,143,208,88,183,
206,82,146,169,217,249,172,19,62,191,115,128,159,11,105,182,12,79,90,78,
180,156,209,26,132,187,23,18,27,51,225,254,141,200,34,132,161,5,107,253,
30,238,7,55,57,98,120,19,79,209,251,110,214,84,59,202,118,39,52,235,132,
193,129,95,139,25,246,220,157,118,15,2,138,58,81,62,7,86,66,20,113,162,
252,0,37,32,12,45,168,12,120,121,123,168,193,81,189,137,153,20,173,79,226,
171,197,180,150,65,72,226,245,43,132,47,5,1,244,140,34,150,72,57,2,152,
252,62,103,20,85,38,165,46,237,168,207,149,13,0,115,90,134,163,79,227,185,
114,217,226,223,204,64,145,88,118,64,152,69,201,183,178,85,18,249,145,79,
254,3,152,12,212,147,138,121,230,178,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_1 = 2807;
static unsigned char xml_res_file_1[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,128,0,0,0,128,8,6,0,
0,0,195,62,97,203,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,17,24,0,0,17,24,1,91,182,80,54,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,10,116,73,68,65,84,120,156,237,157,95,
76,20,219,29,199,191,203,46,186,182,122,21,146,251,71,175,212,127,81,180,
86,139,127,22,227,195,173,32,75,8,4,255,36,64,241,133,91,77,205,250,36,
229,193,122,235,67,233,109,140,9,189,185,241,134,135,210,94,131,9,166,149,
4,171,209,162,137,197,69,121,88,16,21,173,232,2,137,90,96,193,191,88,47,
18,244,226,229,239,233,195,58,148,101,103,103,102,103,103,230,204,46,191,
79,114,18,216,61,115,230,55,231,247,217,157,217,51,103,102,0,130,32,8,130,
32,8,130,32,8,130,32,8,130,32,8,130,32,136,240,89,196,59,0,66,25,86,157,
218,237,3,240,19,0,119,1,188,209,105,29,132,137,25,3,192,0,12,3,248,22,
192,167,124,195,33,140,70,16,64,40,67,0,190,1,240,9,207,160,8,227,152,46,
128,80,126,128,255,27,97,33,191,208,8,35,8,37,128,80,190,7,240,53,128,143,
120,5,72,232,203,164,0,9,9,9,108,246,236,217,161,68,120,11,224,43,0,31,
242,10,148,208,135,73,1,178,179,179,89,111,111,47,43,46,46,102,118,187,
93,74,132,114,208,49,66,204,16,32,128,64,24,34,124,204,43,112,66,27,68,
5,16,232,233,233,97,197,197,197,114,187,6,18,33,138,145,20,32,12,17,222,
0,40,3,144,200,107,67,8,117,40,18,64,192,231,243,49,151,203,197,108,54,
155,156,8,9,188,54,136,8,143,176,4,32,17,98,15,85,2,8,116,119,119,203,137,
48,8,18,193,212,68,36,128,10,17,22,240,218,80,66,28,77,4,16,232,234,234,
34,17,162,12,77,5,16,232,236,236,100,46,151,139,89,173,214,80,34,124,7,
224,75,0,243,57,109,55,241,30,93,4,16,232,232,232,96,69,69,69,82,34,188,
2,137,192,21,93,5,80,33,194,7,156,250,97,198,98,136,0,2,237,237,237,114,
34,252,23,36,130,161,24,42,128,64,91,91,27,137,96,18,184,8,48,93,132,184,
184,56,41,17,190,0,240,35,94,29,20,235,112,21,64,192,235,245,178,130,130,
2,102,177,88,66,137,240,18,36,130,46,152,66,0,129,251,247,239,43,21,97,
14,175,14,139,53,76,37,128,128,2,17,250,64,34,104,130,41,5,16,184,119,239,
30,137,160,51,166,22,64,32,12,17,236,188,58,50,90,137,10,1,4,90,91,91,229,
68,232,5,240,27,144,8,138,137,42,1,4,154,155,155,89,110,110,110,40,9,72,
132,48,136,74,1,4,20,136,208,3,191,8,179,57,245,175,233,137,106,1,4,174,
95,191,78,34,168,36,98,1,70,71,71,89,127,127,127,64,25,26,26,210,36,177,
211,219,237,239,239,103,131,131,131,33,235,55,53,53,201,137,224,3,137,16,
64,196,2,120,60,158,160,142,62,124,248,176,218,156,79,114,228,200,145,160,
118,103,205,154,197,46,93,186,36,187,108,99,99,163,18,17,92,0,108,198,118,
183,249,48,165,0,229,229,229,65,109,90,173,86,86,83,83,19,118,108,25,25,
25,82,34,116,99,134,139,96,58,1,78,157,58,21,244,51,207,98,177,176,202,
202,74,213,109,122,60,30,182,125,251,118,18,65,4,83,9,112,254,252,249,160,
249,132,22,139,133,85,84,84,168,106,79,44,86,25,17,186,48,195,68,48,141,
0,245,245,245,162,87,30,149,149,149,169,138,75,46,230,244,244,116,37,34,
232,117,107,30,211,96,10,1,110,220,184,193,230,206,157,27,212,78,105,105,
169,170,152,148,226,241,120,88,90,90,154,148,8,29,0,62,71,12,139,192,93,
0,175,215,203,18,19,19,131,218,56,120,240,160,170,120,212,224,241,120,216,
182,109,219,102,164,8,92,5,232,236,236,100,11,23,46,12,90,126,239,222,189,
108,98,98,66,85,60,145,224,118,187,89,106,106,170,148,8,237,224,36,66,156,
209,43,212,155,151,47,95,34,59,59,27,207,159,63,15,120,61,63,63,31,149,
149,149,176,88,44,134,199,228,116,58,113,243,230,77,184,221,110,164,166,
166,138,85,249,41,128,83,0,238,193,96,17,98,74,128,129,129,1,100,101,101,
225,225,195,135,1,175,239,220,185,19,213,213,213,176,90,249,126,211,78,
21,193,225,112,136,85,89,139,64,17,116,207,79,204,8,48,52,52,132,220,220,
92,180,182,182,6,188,158,145,145,129,154,154,26,196,199,199,115,138,44,
24,167,211,137,91,183,110,193,237,118,99,243,230,205,98,85,166,138,80,0,
64,183,175,173,169,2,204,210,107,37,122,51,50,50,130,188,188,60,52,53,53,
5,188,190,117,235,86,92,184,112,1,118,187,57,207,222,58,157,78,180,180,
180,72,137,240,51,0,103,0,220,135,206,34,0,192,127,16,249,52,40,43,128,
76,0,19,120,127,128,179,116,233,82,86,87,87,199,70,71,71,195,58,112,82,
122,16,56,54,54,198,10,10,10,130,234,166,164,164,176,254,254,126,173,142,
227,12,193,237,118,179,77,155,54,73,29,44,202,137,176,17,192,31,1,252,29,
192,63,1,252,5,192,30,0,115,149,36,111,240,253,74,212,78,131,218,6,160,
45,84,240,107,214,172,97,87,175,94,85,220,25,74,4,152,152,152,96,251,247,
239,15,170,151,156,156,204,94,188,120,161,117,126,12,97,98,98,130,213,214,
214,178,141,27,55,74,137,48,125,215,176,2,64,157,68,253,151,240,15,64,41,
18,64,40,225,204,126,217,11,96,84,34,0,6,128,217,108,54,118,226,196,9,69,
29,161,68,128,67,135,14,5,213,89,177,98,5,123,250,244,169,30,185,49,20,
65,132,13,27,54,200,137,112,4,254,107,32,37,251,254,125,249,43,36,118,35,
211,5,80,42,194,47,0,140,40,12,128,89,173,86,86,95,95,47,219,1,114,2,28,
61,122,52,232,253,197,139,23,179,174,174,46,61,243,98,56,10,69,8,167,124,
17,174,0,66,17,155,253,18,7,255,45,225,195,10,34,57,57,89,246,152,64,74,
128,138,138,138,160,247,18,19,19,217,131,7,15,140,200,9,23,198,199,199,
89,109,109,45,75,73,73,137,84,128,119,0,146,212,8,32,38,66,134,218,64,46,
95,190,44,185,193,161,4,168,174,174,22,189,230,47,46,46,142,157,59,119,
206,160,116,240,99,124,124,156,157,57,115,134,173,90,181,42,18,9,254,16,
137,0,66,241,1,248,151,218,32,74,74,74,36,55,84,76,0,135,195,193,226,227,
227,67,182,57,103,206,28,214,220,220,108,80,42,248,114,246,236,217,72,4,
184,46,36,61,146,129,160,37,0,178,212,46,220,211,211,19,246,50,45,45,45,
24,29,29,157,252,127,250,200,222,187,119,239,176,99,199,14,60,122,244,72,
109,88,81,195,227,199,143,35,89,124,137,240,7,183,145,192,72,199,228,75,
74,74,112,250,244,105,196,197,5,110,194,171,87,175,144,149,149,133,190,
190,190,136,218,55,59,17,246,31,19,254,136,68,128,30,248,127,123,170,98,
201,146,37,242,149,66,176,111,223,62,28,63,126,28,133,133,133,40,43,43,
11,122,191,187,187,27,185,185,185,120,251,246,173,234,117,152,157,164,36,
209,227,56,165,136,126,253,170,57,8,76,87,184,76,80,169,171,171,147,220,
199,137,29,3,0,96,121,121,121,108,108,108,44,160,110,73,73,137,104,221,
156,156,156,176,71,32,205,142,70,7,129,191,87,35,64,168,159,129,255,14,
55,128,213,171,87,171,250,25,152,158,158,206,70,70,70,68,59,37,63,63,95,
116,93,7,14,28,208,43,23,134,162,225,207,192,33,132,249,51,80,110,32,232,
51,132,49,16,100,179,217,216,181,107,215,100,55,56,220,9,33,195,195,195,
33,167,106,31,59,118,76,203,92,24,138,48,16,164,65,226,133,242,219,16,121,
140,104,40,248,115,37,18,216,108,54,118,242,228,73,69,27,174,102,70,208,
192,192,0,91,191,126,125,208,114,22,139,133,85,85,85,105,145,15,195,80,
56,2,216,10,224,119,240,223,243,72,73,242,43,160,96,40,248,5,212,157,12,
250,12,254,179,85,162,43,95,187,118,45,107,104,104,80,220,1,106,167,132,
61,121,242,132,37,37,37,5,45,27,31,31,47,123,220,97,6,84,158,12,90,6,224,
178,68,253,62,0,191,150,75,160,22,167,131,227,224,31,29,156,60,29,188,108,
217,50,118,229,202,149,160,3,55,57,34,153,19,232,245,122,217,130,5,11,130,
150,159,55,111,30,187,123,247,174,154,188,232,142,194,196,203,157,14,78,
129,127,148,239,111,0,46,0,248,51,128,95,2,248,177,146,228,105,57,33,132,
251,172,224,134,134,6,209,235,1,22,45,90,196,124,62,159,170,152,244,66,
131,121,0,170,153,58,14,48,162,117,227,60,73,75,75,67,85,85,85,208,64,209,
179,103,207,144,147,147,131,215,175,95,115,138,236,255,212,215,215,195,
225,112,32,51,51,19,119,238,220,17,171,210,6,255,39,248,231,0,254,1,191,
12,154,18,51,115,2,197,216,179,103,143,232,64,81,71,71,7,118,239,222,141,
225,225,97,14,81,249,19,159,154,154,138,204,204,76,220,190,125,91,172,74,
59,128,95,65,199,196,235,13,247,93,192,84,66,13,20,21,22,22,178,241,241,
113,85,109,170,193,237,118,51,135,195,33,245,85,223,134,24,185,80,196,84,
2,72,13,20,105,113,207,1,57,204,124,97,136,94,152,74,0,198,252,3,69,161,
174,224,45,47,47,87,221,174,20,110,183,155,109,217,178,101,70,37,94,192,
116,2,48,22,122,160,72,235,201,36,209,116,113,168,105,175,87,183,219,237,
88,190,124,121,192,107,137,137,145,61,63,114,254,252,249,184,120,241,34,
118,237,218,133,193,193,193,128,247,74,75,75,177,110,221,58,172,92,185,
82,117,251,141,141,141,40,45,45,69,67,67,67,168,42,93,0,254,4,224,36,128,
113,213,43,138,2,98,226,46,97,74,9,227,190,0,166,253,192,105,205,140,16,
128,238,12,18,154,152,22,128,110,18,37,79,76,10,208,216,216,200,156,78,
167,84,226,125,152,225,137,23,136,41,1,20,222,40,146,18,63,133,152,16,128,
110,21,171,158,168,22,128,18,31,57,81,41,0,221,46,94,59,162,74,0,225,129,
17,160,196,107,70,84,8,160,224,73,33,143,65,137,87,133,169,5,160,135,70,
233,143,41,5,160,199,198,25,135,169,4,160,7,71,26,143,41,4,8,227,209,177,
148,120,141,225,42,128,215,235,149,123,120,52,61,51,88,103,184,62,62,94,
230,169,225,95,2,152,199,169,95,102,12,134,10,208,222,222,206,138,138,138,
152,213,106,149,75,252,7,156,250,99,198,97,136,0,10,18,255,10,148,120,46,
232,42,64,71,71,135,210,196,207,231,180,253,51,30,93,4,232,236,236,100,
46,151,75,42,241,223,129,18,111,10,52,21,160,171,171,139,185,92,174,160,
7,63,77,41,131,0,202,0,44,224,181,193,68,32,154,8,64,137,143,94,34,18,160,
187,187,155,18,31,229,168,18,32,140,196,39,240,218,48,66,25,97,9,224,243,
249,228,18,255,6,148,248,168,66,145,0,62,159,143,21,23,23,139,222,200,1,
129,137,143,236,146,32,194,112,36,5,232,233,233,81,146,248,114,0,31,243,
218,0,34,50,68,5,232,237,237,149,75,252,91,80,226,99,130,0,1,132,196,219,
237,118,185,196,127,194,43,96,66,91,38,5,72,72,72,144,251,196,127,5,224,
67,94,129,18,250,48,41,64,136,242,61,128,175,1,124,196,43,64,66,95,66,9,
240,3,128,111,1,44,228,23,26,97,4,211,5,24,2,240,13,104,31,63,99,16,4,24,
134,255,19,191,136,111,56,132,209,12,193,159,248,79,121,7,66,240,129,62,
241,4,65,16,4,65,16,4,65,16,4,65,16,4,65,16,4,65,16,38,224,127,0,16,175,
20,218,109,78,242,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_2 = 499;
static unsigned char xml_res_file_2[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,2,35,0,0,2,35,1,65,239,211,26,0,0,0,25,116,69,88,116,83,111,
102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,
111,114,103,155,238,60,26,0,0,1,112,73,68,65,84,56,141,165,145,59,107,194,
96,20,134,95,77,200,80,219,46,78,46,118,42,226,104,28,34,116,53,155,14,
130,155,16,39,41,217,234,146,12,237,218,201,198,161,63,160,253,27,173,184,
8,109,71,131,83,64,161,117,136,16,147,144,161,160,161,169,228,116,169,165,
23,181,94,30,56,240,13,231,125,248,206,57,192,142,48,223,222,73,0,33,128,
96,43,1,207,243,167,133,66,225,134,227,184,164,105,154,79,155,138,192,243,
188,98,89,22,57,142,67,138,162,244,179,217,236,53,128,195,141,5,115,108,
219,38,85,85,251,153,76,102,165,232,107,132,68,34,113,82,169,84,68,223,
247,161,235,58,210,233,52,38,147,73,92,150,101,33,22,139,149,167,211,233,
177,101,89,143,0,222,86,10,60,207,67,167,211,129,109,219,112,93,23,162,
40,34,159,207,199,75,165,146,192,48,76,121,54,155,29,141,70,163,7,0,239,
243,236,45,128,51,142,227,76,73,146,200,48,12,42,22,139,84,175,215,105,
17,166,105,146,44,203,207,44,203,122,0,46,163,0,8,128,31,134,97,52,18,137,
0,0,82,169,20,124,223,71,175,215,91,181,54,250,172,159,75,52,12,131,154,
205,38,5,65,64,213,106,149,134,195,33,17,17,141,199,99,82,85,181,47,8,194,
21,128,189,127,175,176,238,53,216,101,255,115,28,7,154,166,13,90,173,214,
157,174,235,23,0,94,23,245,253,17,184,174,139,70,163,49,104,183,219,247,
221,110,247,124,89,112,225,8,181,90,237,37,151,203,105,0,246,215,10,253,
34,9,224,96,155,224,78,124,0,2,99,224,75,202,65,61,93,0,0,0,0,73,69,78,
68,174,66,96,130};
static size_t xml_res_size_3 = 6687;
static unsigned char xml_res_file_3[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,0,0,0,1,0,8,6,0,0,0,
92,114,168,102,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,72,
89,115,0,0,34,36,0,0,34,36,1,228,91,10,25,0,0,0,25,116,69,88,116,83,111,
102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,
111,114,103,155,238,60,26,0,0,25,156,73,68,65,84,120,156,237,221,121,112,
21,101,186,6,240,39,39,202,166,178,95,217,101,199,40,32,42,107,197,148,
160,38,133,48,128,12,78,24,161,6,102,80,47,92,239,173,73,244,90,35,163,
130,65,64,72,24,52,9,16,106,142,227,202,0,215,202,120,101,36,200,148,38,
44,86,18,194,38,91,88,36,200,34,92,23,178,176,132,132,228,4,146,239,254,
113,104,132,67,146,211,203,215,219,57,207,175,170,255,73,117,190,126,187,
207,121,159,116,206,233,254,26,32,34,34,34,34,34,34,34,34,34,34,34,34,34,
34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,
34,34,34,34,34,34,34,34,34,34,34,162,176,246,123,0,183,219,93,4,17,217,
195,7,224,20,128,153,0,110,179,183,20,34,178,154,15,128,184,182,156,2,131,
128,40,172,220,24,0,202,114,18,12,2,162,176,80,95,0,48,8,136,194,68,99,
1,160,44,39,192,32,32,10,73,106,2,64,89,142,0,152,10,192,99,75,165,68,36,
157,150,0,80,150,195,0,166,3,136,180,161,94,34,146,72,79,0,48,8,136,66,
132,145,0,80,150,131,0,226,193,127,13,136,92,71,70,0,220,24,4,60,35,32,
114,17,153,1,16,24,4,60,35,32,114,184,6,3,32,54,54,86,116,233,210,197,72,
16,236,3,48,17,64,132,133,251,67,68,26,52,24,0,233,233,233,194,231,243,
9,175,215,107,52,8,14,192,255,25,1,131,128,200,97,26,13,0,133,18,4,157,
59,119,102,16,16,133,16,85,1,32,57,8,246,131,65,64,228,8,154,2,64,81,93,
93,45,188,94,175,232,212,169,19,131,128,200,197,116,5,128,162,178,178,82,
164,165,165,25,13,130,125,96,16,16,217,194,80,0,40,42,42,42,68,90,90,154,
232,216,177,163,145,32,40,0,48,222,202,157,39,10,119,82,2,128,65,64,228,
78,82,3,32,48,8,58,116,232,96,36,8,182,129,65,64,100,42,83,2,64,113,233,
210,37,25,65,144,15,6,1,145,41,76,13,128,27,131,32,57,57,89,180,109,219,
214,72,16,228,129,65,64,36,149,37,1,16,24,4,109,218,180,49,26,4,79,88,121,
144,136,66,149,165,1,192,32,32,114,22,91,2,64,81,94,94,46,43,8,30,183,242,
160,17,133,10,91,3,32,48,8,90,183,110,109,52,8,30,179,242,224,17,185,157,
35,2,192,132,32,24,101,225,49,36,114,45,71,5,128,162,172,172,76,36,37,37,
137,86,173,90,25,13,130,145,86,30,76,34,183,113,100,0,40,74,75,75,101,4,
65,54,128,225,86,30,84,34,183,112,116,0,40,148,32,104,217,178,165,209,32,
24,102,229,193,37,114,58,87,4,128,162,164,164,68,86,16,12,181,242,32,19,
57,149,171,2,64,193,32,32,146,195,149,1,160,40,41,41,17,179,103,207,22,
45,90,180,48,26,4,67,172,60,232,68,78,225,234,0,80,20,23,23,203,10,130,
193,86,30,124,34,187,133,68,0,40,148,32,104,222,188,185,222,16,168,3,144,
5,224,97,43,95,4,34,187,132,84,0,40,206,158,61,203,32,32,82,33,36,3,64,
33,49,8,30,178,242,69,33,178,74,72,7,128,66,9,130,102,205,154,233,13,130,
90,248,131,224,65,43,95,28,34,179,133,69,0,40,78,159,62,45,18,18,18,100,
4,193,32,43,95,36,114,23,62,20,211,161,186,117,235,134,244,244,116,20,21,
21,33,33,33,1,205,154,53,211,58,132,7,192,56,0,123,0,100,2,136,146,93,35,
185,31,3,192,225,148,32,56,122,244,40,18,18,18,208,180,105,83,173,67,120,
224,127,150,193,33,248,131,224,94,217,53,146,123,49,0,92,226,158,123,238,
185,233,140,192,64,16,28,6,131,128,174,97,0,184,140,18,4,18,206,8,148,32,
232,39,187,70,114,15,6,128,75,117,239,222,253,122,16,204,156,57,19,183,
221,118,155,214,33,148,32,56,2,127,16,244,149,93,35,57,31,3,192,229,186,
119,239,14,175,215,139,99,199,142,25,13,130,111,193,32,8,59,12,128,16,209,
163,71,15,89,65,112,8,192,42,0,125,100,215,72,206,195,0,8,49,74,16,20,21,
21,233,13,130,219,1,76,131,255,51,2,6,65,136,99,0,132,168,158,61,123,222,
20,4,145,145,145,90,135,8,12,130,222,178,107,36,251,49,0,66,156,196,32,
56,2,127,16,244,146,93,35,217,135,1,16,38,122,245,234,5,175,215,139,194,
194,66,76,155,54,141,65,64,0,24,0,97,231,190,251,238,195,170,85,171,112,
224,192,1,189,65,208,4,191,4,129,23,64,87,217,53,146,117,24,0,97,234,254,
251,239,151,17,4,51,1,28,135,63,8,186,200,174,145,204,199,0,8,115,74,16,
236,223,191,31,211,166,77,131,199,163,249,45,161,4,193,9,48,8,92,135,1,
64,0,128,254,253,251,203,14,130,206,178,107,36,249,24,0,116,147,1,3,6,92,
15,130,248,248,120,68,68,68,104,29,34,48,8,58,201,174,145,228,97,0,80,189,
6,12,24,128,204,204,76,35,65,208,20,254,32,248,14,64,58,24,4,142,196,0,
160,70,13,28,56,16,153,153,153,216,183,111,159,222,32,104,1,32,1,192,49,
248,131,160,163,236,26,73,63,6,0,169,242,192,3,15,24,13,130,59,224,15,2,
229,140,128,65,224,0,12,0,210,68,9,130,189,123,247,202,10,130,14,178,107,
36,245,24,0,164,203,160,65,131,144,153,153,137,130,130,2,140,27,55,78,207,
16,74,16,28,7,131,192,54,12,0,50,100,248,240,225,200,202,202,146,17,4,223,
1,72,6,208,86,102,125,212,56,205,247,138,18,80,93,93,141,170,170,170,160,
235,181,110,221,90,207,41,178,116,66,8,92,184,112,65,245,250,205,154,53,
67,243,230,205,53,109,99,196,136,17,215,131,96,209,162,69,216,176,97,131,
214,50,239,4,48,27,192,127,1,200,0,176,4,192,57,173,131,80,232,114,204,
115,1,22,47,94,172,106,110,254,226,226,98,75,235,106,200,75,47,189,164,
250,121,2,221,186,117,19,39,79,158,52,188,205,252,252,124,49,110,220,56,
189,207,52,16,0,46,193,127,70,208,198,172,55,20,241,95,128,144,151,148,
148,132,212,212,84,85,235,222,125,247,221,200,206,206,70,143,30,61,12,111,
55,58,58,26,89,89,89,200,207,207,215,251,175,129,114,70,240,61,24,4,166,
97,0,132,176,140,140,12,204,159,63,95,213,186,237,219,183,199,230,205,155,
113,239,189,114,103,11,87,130,32,47,47,15,177,177,177,122,134,184,11,55,
7,65,107,153,245,133,59,6,64,136,90,189,122,53,18,18,18,84,173,219,178,
101,75,252,235,95,255,66,255,254,253,77,171,231,145,71,30,65,118,118,54,
114,115,115,241,196,19,79,232,25,66,9,130,211,96,16,72,195,0,8,65,235,215,
175,199,140,25,51,80,87,87,23,116,221,22,45,90,32,43,43,11,67,134,12,177,
160,50,32,38,38,6,57,57,57,200,205,205,197,227,143,63,174,103,8,37,8,142,
3,152,7,160,149,196,242,194,14,3,32,196,108,217,178,5,191,253,237,111,113,
245,234,213,160,235,54,105,210,4,159,126,250,41,30,125,244,81,11,42,187,
89,76,76,12,54,109,218,132,220,220,92,60,246,216,99,122,134,104,11,32,9,
12,2,67,24,0,33,100,215,174,93,120,234,169,167,80,93,93,29,116,221,200,
200,72,172,94,189,26,99,198,140,177,160,178,134,197,196,196,96,243,230,
205,200,205,205,197,168,81,163,244,12,209,14,12,2,221,24,0,33,162,168,168,
8,227,198,141,195,165,75,151,130,174,235,241,120,176,106,213,42,196,199,
199,91,80,153,58,49,49,49,216,178,101,11,114,115,115,49,114,228,72,61,67,
4,6,65,75,137,229,133,44,6,64,8,56,115,230,12,226,226,226,80,92,92,28,116,
221,136,136,8,172,92,185,18,83,167,78,181,160,50,237,98,98,98,176,117,235,
86,100,103,103,99,248,240,225,122,134,96,16,104,192,0,112,185,146,146,18,
196,197,197,225,244,233,211,170,214,79,73,73,193,172,89,179,76,174,202,
184,216,216,88,108,223,190,29,217,217,217,24,54,108,152,158,33,218,227,
151,32,152,13,255,109,201,20,128,1,224,98,23,47,94,196,232,209,163,113,
244,232,81,85,235,207,159,63,31,127,250,211,159,76,174,74,174,216,216,88,
236,216,177,3,217,217,217,24,58,116,168,158,33,218,195,255,181,225,41,48,
8,110,193,0,112,169,170,170,42,140,31,63,30,123,247,238,85,181,126,98,98,
34,230,206,157,107,114,85,230,137,141,141,197,206,157,59,141,4,193,191,
225,230,32,208,118,179,67,136,98,0,184,208,149,43,87,240,155,223,252,6,
185,185,185,170,214,127,246,217,103,85,95,14,236,116,55,6,129,206,107,23,
24,4,55,96,0,184,76,93,93,29,166,79,159,142,141,27,55,170,90,255,119,191,
251,29,254,246,183,191,57,226,174,68,153,98,99,99,177,107,215,46,100,103,
103,99,240,224,193,122,134,184,27,12,2,6,128,155,8,33,240,194,11,47,224,
147,79,62,81,181,254,196,137,19,241,225,135,31,234,153,226,219,53,148,32,
88,191,126,61,30,126,248,97,61,67,4,6,65,51,137,229,57,94,232,190,51,66,
208,171,175,190,138,119,223,125,87,213,186,113,113,113,248,228,147,79,244,
60,30,220,117,34,34,34,48,126,252,120,236,222,189,91,70,16,20,1,72,68,152,
4,1,3,192,37,210,211,211,145,146,146,162,106,221,232,232,104,172,91,183,
14,77,155,54,53,185,42,103,9,12,130,135,30,122,72,207,48,221,0,164,33,76,
130,128,1,224,2,31,127,252,49,94,122,233,37,85,235,62,248,224,131,248,226,
139,47,112,199,29,119,152,92,149,115,41,65,240,205,55,223,96,253,250,245,
120,240,193,7,245,12,163,4,193,81,248,131,32,36,211,148,1,224,112,235,214,
173,195,243,207,63,15,33,68,208,117,7,14,28,136,156,156,28,180,110,205,
59,101,129,91,131,96,208,160,65,122,134,185,7,55,159,17,132,84,16,48,0,
28,44,39,39,7,83,166,76,81,117,103,95,159,62,125,240,229,151,95,162,93,
187,118,22,84,230,46,30,143,7,227,199,143,199,158,61,123,144,153,153,137,
168,168,40,61,195,40,65,16,82,103,4,12,0,135,218,177,99,7,126,253,235,95,
195,231,243,5,93,183,91,183,110,200,206,206,70,167,78,124,250,86,99,60,
30,15,226,227,227,113,232,208,33,100,102,102,234,157,253,168,59,126,9,130,
153,112,249,196,186,12,0,7,42,44,44,196,216,177,99,81,81,81,17,116,93,153,
243,248,133,11,37,8,14,31,62,108,52,8,188,240,63,242,204,181,65,192,0,112,
152,227,199,143,99,244,232,209,56,119,46,248,140,216,102,205,227,23,46,
2,131,160,95,191,126,122,134,233,1,23,7,65,125,1,192,39,180,216,228,199,
31,127,68,92,92,28,126,250,233,167,160,235,90,49,143,95,184,80,130,224,
200,145,35,50,130,160,8,46,10,130,250,2,96,7,128,85,0,122,91,92,139,110,
106,254,79,118,186,178,178,50,196,197,197,225,228,201,147,65,215,181,122,
30,191,112,17,24,4,125,251,246,213,51,76,79,200,15,130,190,0,198,95,27,
239,5,0,255,14,96,236,181,109,73,247,3,252,15,102,168,129,63,8,122,153,
177,17,149,238,0,48,11,192,215,104,228,33,18,30,143,71,68,71,71,139,229,
203,151,139,139,23,47,26,126,168,69,48,178,31,12,82,89,89,41,162,163,163,
85,141,217,164,73,19,177,113,227,70,147,247,144,132,16,162,166,166,70,124,
252,241,199,162,79,159,62,70,30,112,114,28,254,198,141,212,248,222,143,
6,240,62,128,159,131,140,127,6,192,10,0,186,174,122,170,143,18,0,202,226,
131,245,65,224,1,48,29,192,143,208,120,192,219,181,107,39,146,147,147,69,
85,85,149,105,111,12,153,1,224,243,249,196,232,209,163,85,141,23,25,25,
41,50,51,51,77,219,47,170,159,164,32,56,124,237,61,29,44,8,238,7,144,169,
115,27,89,240,159,45,24,18,24,0,55,6,129,23,64,87,163,27,8,162,55,128,253,
13,212,160,122,233,215,175,159,56,116,232,144,41,111,8,89,1,112,245,234,
85,17,31,31,175,106,44,143,199,35,214,172,89,99,202,254,144,58,74,16,244,
238,221,219,200,123,243,16,234,15,2,15,128,197,0,106,13,190,247,107,0,188,
162,173,229,110,214,80,0,4,6,65,23,35,27,105,64,12,128,179,65,182,175,122,
185,235,174,187,196,63,255,249,79,233,111,4,25,1,80,87,87,39,158,123,238,
57,85,227,68,68,68,136,191,254,245,175,210,247,131,244,81,130,160,87,175,
94,178,130,224,78,0,235,100,189,239,175,45,255,3,157,183,56,7,11,0,179,
130,96,36,26,121,0,168,222,37,50,50,82,100,101,101,73,125,3,200,8,128,151,
95,126,89,245,62,44,89,178,68,106,253,36,135,207,231,147,21,4,69,178,223,
247,215,150,13,208,254,217,131,234,0,8,12,130,206,90,55,116,131,30,0,138,
53,110,87,245,114,215,93,119,137,194,194,66,105,47,188,209,0,120,243,205,
55,85,215,62,127,254,124,105,117,147,57,124,62,159,240,122,189,162,107,
215,174,166,188,127,13,46,234,110,33,189,129,214,0,80,150,106,232,11,130,
72,0,123,37,239,244,45,75,191,126,253,68,117,117,181,148,23,220,72,0,100,
100,100,168,174,57,49,49,81,74,189,100,13,37,8,186,116,233,98,119,211,7,
46,79,105,105,72,189,1,16,24,4,106,47,76,127,206,170,3,145,154,154,42,229,
133,214,27,0,107,214,172,17,30,143,71,213,239,62,251,236,179,162,174,174,
78,74,189,100,45,7,6,193,81,0,183,171,236,71,195,1,160,44,149,0,210,209,
120,16,52,135,255,105,175,150,28,136,54,109,218,136,178,178,50,195,47,176,
158,0,200,202,202,18,183,223,126,187,170,223,123,242,201,39,69,109,109,
173,225,58,201,94,74,16,116,238,220,217,238,0,16,0,254,179,190,6,52,243,
94,128,22,0,18,224,191,70,58,29,64,199,122,214,153,2,255,196,11,150,56,
127,254,60,254,254,247,191,91,181,185,235,182,109,219,134,103,158,121,6,
87,174,92,81,181,254,215,95,127,141,29,59,118,152,92,21,153,173,73,147,
38,152,57,115,38,78,156,56,1,175,215,139,206,157,141,124,76,102,216,127,
3,80,53,51,172,172,51,128,192,165,2,183,6,193,87,38,109,171,193,101,248,
240,225,134,147,93,203,25,192,190,125,251,68,235,214,173,53,215,217,190,
125,123,81,84,84,36,225,239,16,57,69,117,117,181,240,122,189,162,77,155,
54,118,157,5,220,242,136,37,43,239,6,188,3,254,51,130,239,224,15,130,110,
240,127,239,111,169,221,187,119,227,194,133,11,150,108,235,216,177,99,24,
61,122,180,174,237,149,150,150,98,204,152,49,170,158,247,71,238,208,180,
105,83,204,156,57,19,83,166,76,177,171,132,184,192,31,216,113,59,176,18,
4,223,194,134,185,216,107,107,107,113,224,192,1,75,182,245,212,83,79,225,
236,217,179,186,127,255,248,241,227,152,56,113,34,170,170,170,36,86,69,
118,43,44,44,180,107,211,183,220,47,96,231,124,0,182,61,163,237,248,241,
227,150,108,167,180,180,212,240,24,5,5,5,152,60,121,50,106,107,107,37,84,
68,78,112,226,196,9,187,54,125,203,29,190,97,57,33,136,85,255,2,52,230,
206,59,239,84,189,238,134,13,27,240,226,139,47,154,88,13,89,169,188,188,
220,174,77,183,10,252,65,88,6,128,221,18,19,19,81,80,80,160,105,246,222,
21,43,86,224,47,127,249,139,137,85,81,56,10,203,0,176,115,218,236,63,252,
225,15,72,77,77,197,128,1,3,52,63,188,99,246,236,217,182,124,141,73,114,
181,108,217,210,174,77,95,12,252,129,157,1,112,217,174,13,247,238,109,207,
100,71,147,38,77,194,123,239,189,119,253,65,157,163,70,141,194,71,31,125,
164,250,217,125,66,8,60,255,252,243,200,201,201,49,179,76,50,89,175,94,
182,205,177,115,203,135,95,118,4,64,37,128,101,0,162,0,88,254,241,118,100,
100,36,30,120,224,1,171,55,139,184,184,56,172,93,187,22,145,145,55,223,
156,245,204,51,207,96,209,162,69,170,199,169,169,169,193,211,79,63,109,
217,55,25,36,223,192,129,3,237,218,244,30,53,43,153,125,33,208,141,147,
142,126,105,210,182,26,92,70,140,24,97,248,130,14,181,23,2,41,75,116,116,
180,168,168,168,104,116,204,196,196,68,77,99,118,233,210,69,156,62,125,
218,240,190,144,117,42,43,43,69,90,90,154,104,219,182,173,93,23,2,13,189,
165,219,235,33,59,0,234,187,2,80,49,195,234,131,144,158,158,110,248,133,
212,18,0,131,6,13,18,231,207,159,15,58,102,109,109,173,120,250,233,167,
53,237,203,128,1,3,84,141,77,246,82,174,0,236,212,169,147,93,141,47,224,
191,0,207,210,75,129,27,107,124,69,51,0,223,91,117,16,218,183,111,47,46,
92,184,96,248,5,85,27,0,125,251,246,21,63,255,252,179,234,113,171,170,170,
68,76,76,140,166,125,26,53,106,148,180,219,156,73,46,135,221,12,244,31,
141,244,225,77,140,6,128,154,187,0,111,100,217,89,128,140,191,254,66,168,
15,128,35,71,142,104,30,187,172,172,76,68,69,69,105,218,175,233,211,167,
243,214,97,7,113,88,227,11,88,116,59,176,214,121,0,20,145,240,127,56,97,
234,65,184,247,222,123,133,207,231,147,242,2,203,158,22,60,208,153,51,103,
52,207,46,51,103,206,28,41,251,70,250,57,112,30,0,101,25,175,165,33,237,
152,18,172,59,36,78,6,26,184,56,109,74,48,53,14,28,56,160,249,46,194,21,
43,86,72,219,71,82,207,225,83,130,37,107,109,70,173,147,130,202,186,201,
121,36,76,154,20,116,195,134,13,82,95,112,43,2,64,8,33,54,111,222,44,154,
54,109,170,105,95,215,173,91,39,105,47,41,24,73,141,111,246,164,160,154,
191,234,231,180,224,65,88,21,0,66,8,177,118,237,90,17,17,17,161,122,159,
155,55,111,46,10,10,10,36,236,37,53,196,164,105,193,63,147,245,190,191,
182,172,133,228,105,193,173,122,48,72,79,72,152,36,52,42,42,74,215,135,
112,106,88,25,0,90,182,167,44,156,76,196,28,22,60,24,100,33,128,171,6,223,
251,62,0,47,107,105,184,64,245,61,26,204,138,198,191,145,7,64,60,128,83,
208,120,0,148,71,131,153,249,213,152,213,1,32,132,16,9,9,9,154,142,67,239,
222,189,197,217,179,103,165,109,63,156,73,106,124,181,143,6,139,130,190,
71,131,213,93,251,189,62,65,187,43,8,39,61,28,180,5,128,231,1,108,66,35,
59,31,25,25,41,30,125,244,81,145,145,145,33,202,203,203,77,127,67,216,17,
0,122,46,20,26,54,108,88,208,43,16,169,97,54,63,28,116,4,252,127,120,131,
253,75,126,10,254,175,221,7,105,28,191,65,167,224,204,199,131,55,248,1,
161,213,79,206,177,35,0,132,16,226,242,229,203,154,47,20,26,55,110,156,
184,122,245,170,212,58,66,93,109,109,173,200,204,204,20,125,251,246,53,
210,248,39,160,175,241,235,211,27,192,175,224,255,99,248,2,252,83,233,63,
9,255,183,103,210,117,8,190,138,45,26,12,0,89,23,248,168,101,87,0,8,33,
68,105,105,169,230,11,133,102,205,154,37,189,142,80,36,185,241,111,51,169,
15,164,170,239,43,2,253,147,216,145,233,218,181,107,135,236,236,108,116,
237,170,254,35,25,175,215,139,165,75,151,154,88,149,187,213,213,213,225,
31,255,248,7,238,187,239,62,76,158,60,25,199,142,29,211,51,204,41,0,179,
0,244,3,240,46,252,31,230,57,94,88,78,8,226,118,93,187,118,197,198,141,
27,53,77,108,242,202,43,175,112,50,145,0,74,227,223,127,255,253,152,60,
121,50,138,138,138,244,12,115,10,254,198,239,11,23,53,190,130,1,224,82,
3,7,14,196,103,159,125,166,122,70,33,113,109,50,145,77,155,54,153,92,153,
243,5,54,254,209,163,71,245,12,243,61,92,220,248,10,6,128,139,61,246,216,
99,248,240,195,15,175,207,48,20,76,77,77,13,38,77,154,20,182,147,137,40,
141,223,191,127,127,163,141,255,34,128,123,225,226,198,87,48,0,92,110,202,
148,41,88,184,112,161,234,245,203,203,203,49,118,236,88,156,57,115,198,
196,170,156,165,174,174,14,89,89,89,120,248,225,135,49,121,242,100,124,
251,237,183,122,134,57,141,95,26,63,29,254,15,165,93,143,1,16,2,94,123,
237,53,252,241,143,127,84,189,254,15,63,252,128,177,99,199,58,98,122,116,
51,41,141,63,120,240,96,76,152,48,1,251,247,239,215,51,140,210,248,253,
16,66,141,175,96,0,132,136,180,180,52,76,154,52,73,245,250,7,15,30,196,
164,73,147,80,83,83,99,98,85,246,16,66,32,43,43,11,67,134,12,193,132,9,
19,176,111,223,62,61,195,156,65,8,254,197,15,196,0,8,17,30,143,7,171,87,
175,198,35,143,60,162,250,119,182,108,217,130,25,51,102,64,8,97,98,101,
214,9,108,252,189,123,247,234,25,70,105,124,229,47,126,181,204,26,157,134,
1,16,66,154,55,111,142,207,63,255,28,81,81,81,170,127,103,237,218,181,72,
74,74,50,177,42,243,5,54,254,158,61,170,38,191,13,84,12,224,207,8,147,198,
87,48,0,66,76,187,118,237,176,113,227,70,116,236,216,216,84,140,55,91,176,
96,1,50,50,50,76,172,202,60,57,57,57,24,58,116,168,140,198,239,1,32,5,97,
210,248,10,6,64,8,234,217,179,39,190,250,234,43,180,106,117,203,163,224,
26,148,152,152,136,207,63,255,220,196,170,228,82,26,63,46,46,14,223,124,
243,141,158,33,2,27,63,44,31,193,204,0,8,81,202,133,66,77,154,52,81,181,
126,109,109,45,166,78,157,138,237,219,183,155,92,153,49,57,57,57,24,54,
108,24,226,226,226,176,123,247,110,61,67,148,128,141,127,29,3,32,132,61,
254,248,227,154,46,20,186,124,249,50,38,76,152,160,247,90,120,83,221,216,
248,187,118,237,210,51,4,27,191,30,12,128,16,55,117,234,84,44,88,176,64,
245,250,37,37,37,24,51,102,12,138,139,139,77,172,74,189,156,156,28,12,31,
62,220,72,227,151,226,230,198,183,237,153,148,78,228,138,91,22,157,166,
71,143,30,136,141,141,13,186,158,218,211,111,179,189,254,250,235,184,124,
249,50,118,238,220,169,250,119,86,174,92,137,121,243,230,153,87,84,16,57,
57,57,152,51,103,14,118,236,216,161,119,136,82,0,25,0,222,1,80,46,173,48,
178,141,99,230,3,32,243,228,230,230,138,145,35,71,26,185,31,191,4,192,60,
0,182,61,131,219,77,120,6,64,142,144,151,151,135,185,115,231,98,235,214,
173,122,135,40,3,176,2,252,139,175,9,3,128,108,149,151,151,135,55,222,120,
3,91,182,108,209,59,132,210,248,169,0,46,74,43,44,76,48,0,200,22,121,121,
121,72,74,74,194,230,205,155,245,14,113,14,192,114,176,241,13,97,0,144,
165,242,242,242,48,111,222,60,35,19,147,92,2,176,18,254,71,94,133,246,237,
140,22,96,0,144,37,242,243,243,145,148,148,196,198,119,24,6,0,153,42,63,
63,31,201,201,201,216,176,97,131,222,33,216,248,38,98,0,144,41,182,109,
219,134,197,139,23,27,105,252,10,248,191,199,79,1,112,94,90,97,116,19,6,
0,73,85,80,80,128,69,139,22,177,241,93,130,1,64,82,108,223,190,29,111,189,
245,150,140,198,95,2,255,39,252,100,1,6,0,25,34,169,241,63,0,176,8,124,
40,141,229,24,0,164,203,254,253,251,241,214,91,111,225,211,79,63,213,59,
165,88,37,128,247,193,198,183,21,3,128,52,57,112,224,0,22,46,92,40,163,
241,23,3,248,89,106,113,164,25,3,128,84,97,227,135,38,6,0,53,170,176,176,
16,11,22,44,48,210,248,151,1,188,7,255,247,248,63,73,45,142,12,99,0,80,
189,36,52,190,15,192,199,240,223,154,203,198,119,40,6,0,221,228,224,193,
131,152,63,127,190,145,198,175,1,240,17,128,55,1,252,40,179,54,146,143,
1,64,0,128,67,135,14,33,37,37,5,107,214,172,65,93,93,157,158,33,216,248,
46,196,0,8,115,74,227,175,93,187,22,181,181,181,122,134,80,26,127,62,128,
31,100,214,70,230,99,0,132,169,195,135,15,35,57,57,153,141,31,230,24,0,
97,230,200,145,35,88,188,120,177,140,198,95,0,224,255,100,214,70,214,99,
0,132,9,9,141,127,5,192,39,240,127,170,127,66,102,109,100,31,6,64,136,59,
113,226,4,82,82,82,240,254,251,239,27,109,252,55,1,28,151,90,28,217,142,
1,16,162,78,158,60,137,228,228,100,124,240,193,7,184,122,245,170,158,33,
216,248,97,128,1,16,98,78,157,58,133,197,139,23,203,104,252,249,0,190,147,
90,28,57,14,3,32,68,72,108,252,5,0,156,247,112,64,50,5,3,192,229,190,255,
254,123,44,90,180,200,72,227,215,1,248,95,0,175,131,141,31,118,24,0,46,
37,177,241,231,0,40,146,90,28,185,6,3,192,101,78,159,62,141,183,223,126,
27,94,175,23,62,159,79,207,16,108,124,186,142,1,224,18,18,27,127,46,128,
163,82,139,35,215,98,0,56,220,153,51,103,176,116,233,82,188,251,238,187,
168,174,174,214,51,132,210,248,111,0,248,86,106,113,228,122,12,0,135,98,
227,147,21,24,0,14,115,246,236,89,164,166,166,34,61,61,221,72,227,111,132,
255,84,127,159,212,226,40,228,48,0,28,162,184,184,24,239,188,243,14,150,
45,91,134,170,170,42,61,67,8,0,95,192,255,23,127,175,212,226,40,100,49,
0,108,198,198,39,59,49,0,108,82,82,82,130,183,223,126,91,70,227,39,1,216,
35,181,56,10,27,12,0,139,73,108,252,121,0,190,145,89,27,133,31,6,128,69,
74,75,75,177,116,233,82,44,95,190,28,151,47,95,214,59,76,14,128,63,131,
141,79,146,48,0,76,86,90,90,138,21,43,86,32,53,53,21,229,229,229,122,135,
201,1,240,42,128,221,242,42,35,98,0,152,70,98,227,191,6,96,151,188,202,
136,126,193,0,144,172,172,172,12,203,151,47,151,209,248,175,3,216,41,175,
50,162,91,49,0,36,81,26,63,45,45,13,23,47,94,212,59,12,27,159,44,197,0,
48,232,220,185,115,88,182,108,153,209,198,207,135,191,241,191,150,87,25,
81,112,12,0,157,46,93,186,132,149,43,87,34,57,57,25,23,46,92,208,59,76,
62,252,183,229,110,149,86,24,145,6,12,0,141,36,54,254,92,0,91,228,85,70,
164,29,3,64,37,137,141,255,6,128,205,242,42,35,210,143,1,16,132,210,248,
41,41,41,56,127,254,188,222,97,216,248,228,72,12,128,6,84,84,84,32,35,35,
67,70,227,39,1,216,36,175,50,34,121,24,0,1,148,198,95,178,100,9,206,157,
59,167,119,152,124,0,41,0,178,228,85,70,20,222,124,240,223,8,115,203,146,
158,158,46,140,186,116,233,146,72,75,75,19,29,58,116,168,119,27,42,151,
124,0,227,173,60,40,68,225,194,148,0,168,168,168,144,209,248,219,192,198,
39,50,149,212,0,80,26,191,99,199,142,70,26,191,0,108,124,34,75,72,9,0,54,
62,145,59,25,10,128,202,202,74,145,150,150,38,58,117,234,100,164,241,247,
1,136,7,16,97,225,126,19,17,116,6,64,117,117,181,240,122,189,108,124,34,
151,211,20,0,74,227,119,238,220,217,72,227,239,7,27,159,200,17,84,5,128,
207,231,147,209,248,7,192,198,39,114,148,70,3,64,105,252,46,93,186,176,
241,137,66,80,131,1,16,27,27,107,180,241,247,1,152,8,54,62,145,99,53,24,
0,6,150,131,0,166,3,240,88,184,31,68,164,131,204,0,80,26,63,210,210,61,
32,34,221,100,4,192,65,248,255,199,231,95,124,34,151,49,18,0,135,192,191,
248,68,174,166,39,0,14,131,141,79,20,18,180,4,192,17,0,83,193,83,125,162,
144,161,38,0,78,0,152,9,78,116,66,20,114,26,11,0,54,62,81,136,171,47,0,
78,130,141,79,20,22,110,12,0,54,62,81,152,241,1,56,5,54,62,81,88,250,61,
128,219,237,46,130,136,136,136,136,136,136,136,136,136,136,136,136,136,
136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,
136,168,81,255,15,142,86,241,164,142,198,204,179,0,0,0,0,73,69,78,68,174,
66,96,130};
static size_t xml_res_size_4 = 648;
static unsigned char xml_res_file_4[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,70,0,0,4,70,1,102,1,155,153,0,0,0,25,116,69,88,116,83,111,
102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,
111,114,103,155,238,60,26,0,0,2,5,73,68,65,84,88,133,237,150,177,142,218,
64,16,134,127,54,186,158,93,48,10,54,6,10,75,137,168,66,146,10,30,1,137,
87,72,19,81,34,145,250,210,187,77,27,145,68,148,80,33,132,146,14,148,84,
17,21,148,136,230,66,129,128,42,231,59,161,24,100,38,69,236,147,113,72,
240,157,206,118,115,191,100,217,179,197,206,231,153,217,217,1,30,20,177,
30,29,91,100,140,157,19,209,6,192,34,100,158,63,74,165,82,19,73,146,126,
37,147,201,111,0,94,68,2,48,30,143,169,215,235,237,53,77,251,201,57,255,
14,224,101,168,0,147,201,132,136,136,44,203,114,64,46,67,3,113,3,56,178,
44,139,58,157,206,94,85,213,43,27,36,184,212,28,3,240,130,100,179,217,43,
33,196,87,0,207,67,5,56,22,17,27,164,24,42,128,23,36,147,201,24,241,120,
124,120,47,32,94,128,110,183,75,170,170,30,56,30,12,6,196,57,167,225,112,
120,0,162,40,138,3,242,44,48,128,209,104,68,137,68,130,250,253,254,63,35,
162,40,138,33,132,248,2,224,233,189,2,76,167,83,74,167,211,212,110,183,
255,155,154,237,118,75,173,86,107,47,203,242,73,144,55,0,222,1,120,108,
219,53,198,152,89,42,149,104,185,92,30,0,204,231,115,202,229,114,212,108,
54,125,213,135,23,132,115,254,25,192,71,0,63,0,124,2,112,6,0,111,1,16,128,
107,0,239,1,236,108,155,234,245,250,13,128,16,130,52,77,35,89,150,105,189,
94,251,6,112,100,154,38,53,26,141,189,179,183,253,188,98,158,104,144,219,
136,197,98,55,223,134,97,64,215,117,20,10,5,84,171,85,108,54,155,91,167,
214,187,191,99,123,83,240,154,49,102,150,203,101,90,173,86,127,213,128,
97,24,84,44,22,169,82,169,208,110,183,187,75,10,62,0,184,176,223,103,71,
49,79,157,130,197,98,65,249,124,158,106,181,154,47,199,118,17,62,241,29,
39,63,125,96,54,155,145,36,73,164,235,250,193,122,32,199,208,143,2,109,
68,126,28,187,90,241,221,29,223,6,32,144,59,192,15,64,100,215,177,219,113,
224,179,226,137,145,44,248,33,213,51,148,134,55,11,186,1,34,29,203,25,99,
231,8,243,143,31,20,165,126,3,125,215,199,83,193,217,127,124,0,0,0,0,73,
69,78,68,174,66,96,130};
static size_t xml_res_size_5 = 1454;
static unsigned char xml_res_file_5[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,64,0,0,0,64,8,6,0,0,
0,170,105,113,222,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,8,140,0,0,8,140,1,41,221,10,159,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,5,43,73,68,65,84,120,156,237,154,77,104,
20,103,28,135,159,73,19,41,145,157,236,186,249,218,164,162,182,77,66,91,
68,196,83,201,81,144,245,18,188,39,20,84,168,23,41,72,41,123,210,212,20,
116,147,75,226,65,33,68,176,198,210,150,22,193,131,8,18,16,130,57,164,4,
41,109,67,181,65,211,152,216,170,201,230,131,236,110,52,93,51,255,30,214,
137,235,100,118,179,155,204,71,140,243,192,156,246,221,153,255,239,153,
143,247,131,23,60,60,60,60,60,222,94,222,41,160,237,126,160,20,152,178,
169,22,87,40,42,160,109,35,240,59,240,35,240,177,61,229,108,108,78,1,242,
242,88,2,190,7,62,114,181,34,135,57,5,200,161,67,135,164,182,182,86,35,
45,226,5,240,29,208,224,106,101,14,113,10,144,43,87,174,200,226,226,162,
116,119,119,75,77,77,141,46,98,9,248,137,77,46,98,89,128,206,219,38,98,
133,0,163,136,80,40,100,20,81,239,106,197,22,147,85,128,206,243,231,207,
179,137,168,115,181,114,139,88,85,128,81,68,117,117,181,6,136,162,40,41,
160,151,55,92,68,222,2,116,146,201,164,116,117,117,153,137,248,208,221,
40,107,163,96,1,58,137,68,66,186,186,186,164,170,170,202,40,226,3,119,35,
21,198,154,5,108,22,17,235,22,96,20,81,89,89,105,20,241,190,187,17,115,
99,153,0,157,120,60,110,20,241,31,208,13,188,231,110,84,115,44,23,144,41,
34,26,141,74,32,16,48,138,168,117,55,242,235,216,38,192,40,194,239,247,
111,72,17,171,10,56,114,228,136,0,210,216,216,152,51,232,196,196,132,236,
220,185,83,0,217,189,123,183,196,98,177,215,126,159,159,159,207,38,162,
198,234,80,133,172,7,88,66,44,22,227,192,129,3,140,141,141,81,87,87,199,
205,155,55,9,6,131,175,181,241,249,124,68,34,17,198,199,199,149,104,52,
138,170,170,197,192,231,138,162,140,97,177,8,71,5,204,207,207,19,14,135,
185,123,247,46,219,183,111,167,175,175,143,80,40,148,181,189,46,98,98,98,
194,40,226,111,210,34,178,255,57,79,28,19,240,236,217,51,154,154,154,184,
115,231,14,149,149,149,244,245,245,177,99,199,142,188,254,107,242,68,148,
144,22,241,0,56,199,58,68,56,34,96,105,105,137,150,150,22,250,251,251,41,
47,47,231,214,173,91,52,52,20,62,99,86,85,149,72,36,194,232,232,168,210,
218,218,138,207,231,123,23,248,66,81,148,251,164,69,84,175,181,70,37,143,
54,107,250,8,106,154,38,135,15,31,22,64,84,85,149,161,161,161,60,251,132,
213,137,197,98,210,218,218,42,170,170,234,31,203,228,90,69,252,10,124,70,
246,85,226,70,96,4,144,61,123,246,200,237,219,183,243,22,112,226,196,9,
1,164,180,180,84,250,251,251,45,11,111,38,194,231,243,25,69,84,1,197,192,
87,192,47,164,23,117,207,1,1,99,192,69,210,243,247,97,19,17,45,164,215,
254,244,5,81,41,42,42,146,203,151,47,175,42,224,228,201,147,2,200,150,45,
91,228,198,141,27,182,132,207,100,106,106,202,40,34,1,140,103,214,254,242,
24,7,42,204,4,232,135,46,34,8,204,153,156,64,84,85,93,209,127,103,10,232,
236,236,92,110,123,236,216,49,219,195,27,69,68,34,17,41,41,41,209,204,106,
127,121,124,155,75,128,126,140,229,56,129,92,187,118,205,84,128,207,231,
19,69,81,68,81,148,229,39,230,234,213,171,142,74,16,17,9,135,195,89,107,
7,38,193,166,94,32,30,143,19,10,133,24,28,28,164,190,190,30,77,211,104,
110,110,102,96,96,192,142,203,89,130,241,9,248,131,87,175,192,44,38,6,203,
202,202,100,122,122,218,244,9,240,251,253,50,60,60,44,34,34,35,35,35,82,
81,81,33,128,4,131,65,185,119,239,158,237,119,62,207,87,224,146,153,0,253,
221,207,124,50,154,49,249,8,246,246,246,174,184,112,182,185,192,208,208,
144,108,221,186,85,0,217,181,107,151,60,126,252,216,182,224,38,31,193,135,
38,225,31,98,248,8,174,214,13,126,10,252,5,200,222,189,123,101,96,96,192,
180,128,92,147,161,235,215,175,75,113,113,177,0,178,111,223,62,137,199,
227,118,6,55,118,131,95,2,131,192,111,64,39,224,55,6,180,109,32,148,73,
79,79,207,242,93,56,120,240,160,164,82,169,117,5,207,209,255,175,121,68,
104,171,0,145,87,99,3,64,142,30,61,186,174,224,86,140,0,29,23,160,105,218,
114,59,64,218,218,218,242,14,62,61,61,109,12,190,192,58,39,67,150,10,56,
126,252,184,4,2,1,9,135,195,57,131,164,82,41,105,106,106,146,64,32,32,219,
182,109,91,117,140,160,47,144,148,149,149,233,193,23,177,104,58,108,169,
0,171,201,17,220,178,5,145,98,171,78,100,37,241,120,156,11,23,46,16,141,
70,101,110,110,78,81,20,229,5,112,73,68,78,3,255,90,121,173,13,37,32,145,
72,112,254,252,121,179,224,109,192,63,118,92,115,67,8,208,131,183,183,183,
203,236,236,172,35,193,117,92,21,160,7,239,232,232,96,102,102,134,140,224,
223,0,143,156,168,193,21,1,201,100,146,139,23,47,114,230,204,25,153,156,
156,212,239,248,15,34,242,53,48,234,100,45,142,10,48,9,190,68,58,248,105,
224,129,147,181,232,56,34,64,15,126,246,236,89,121,250,244,233,134,8,174,
99,171,128,133,133,5,122,122,122,136,70,163,242,228,201,147,204,224,109,
192,125,59,175,109,7,86,108,145,121,35,119,134,232,120,155,164,200,34,224,
173,221,38,151,99,163,228,166,10,174,227,109,149,5,111,179,244,166,219,
46,95,232,56,64,3,126,6,218,128,63,173,47,103,99,179,31,248,196,237,34,
60,60,60,60,60,60,172,227,127,242,172,196,144,240,2,93,107,0,0,0,0,73,69,
78,68,174,66,96,130};
static size_t xml_res_size_6 = 845;
static unsigned char xml_res_file_6[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,196,0,0,4,196,1,60,204,212,131,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,202,73,68,65,84,88,133,189,151,191,75,
91,81,20,199,63,231,249,226,139,162,160,208,66,210,116,180,160,67,113,176,
226,32,130,21,156,28,116,20,58,118,118,232,42,214,36,214,150,118,18,236,
127,80,42,56,198,210,77,16,161,237,32,209,193,14,254,192,14,29,140,9,88,
80,26,137,121,106,60,29,18,127,52,47,198,151,248,226,217,238,185,247,221,
239,135,115,223,61,231,92,81,85,220,152,124,252,101,113,112,56,0,12,3,29,
32,65,208,96,97,54,9,154,4,54,129,5,90,91,150,116,172,205,118,181,239,109,
0,242,110,45,200,169,78,34,188,0,154,93,209,66,26,101,14,159,76,233,120,
87,178,42,0,137,46,251,145,166,9,224,21,208,232,82,184,216,50,192,12,122,
52,173,225,254,172,107,0,137,198,3,136,196,128,158,42,133,139,109,5,213,
17,13,119,167,138,39,12,135,248,235,239,157,136,196,61,20,7,232,65,36,46,
111,214,158,58,244,174,71,64,38,190,5,209,92,156,186,250,16,102,189,135,
250,151,182,139,106,247,245,72,92,70,64,162,203,126,206,115,95,80,66,156,
157,192,217,73,45,0,30,35,18,147,232,178,223,1,128,77,4,120,118,57,174,
29,68,79,225,231,6,10,71,32,19,75,33,212,216,65,105,112,44,55,235,169,193,
113,100,48,165,77,199,187,146,249,8,156,27,145,146,226,80,171,72,52,114,
170,147,0,194,236,142,69,106,247,15,74,83,217,79,188,143,68,154,214,150,
135,6,169,196,224,173,226,80,139,72,52,115,112,56,96,130,142,252,231,181,
234,104,127,96,221,248,149,152,38,134,239,230,249,114,182,177,159,229,175,
157,187,238,26,54,65,218,225,42,23,116,6,26,248,58,250,164,236,70,150,101,
225,247,251,203,174,41,101,207,63,109,179,252,59,125,221,213,97,160,4,42,
221,200,182,109,178,217,146,169,189,66,147,160,129,104,197,0,222,65,104,
208,81,11,238,27,194,64,197,81,161,238,15,66,146,6,194,157,0,238,6,161,
73,19,116,11,232,189,112,173,167,142,25,252,188,93,21,136,152,245,101,175,
232,198,190,3,114,211,4,137,129,190,188,240,164,237,28,241,68,166,42,0,
200,84,154,49,23,12,2,161,69,132,163,42,21,157,230,62,99,166,105,109,89,
50,116,172,205,70,153,247,12,192,45,132,50,167,99,109,118,254,26,90,190,
48,194,241,61,66,100,240,201,20,20,26,18,13,247,238,161,204,122,10,80,30,
98,230,162,93,191,74,68,22,17,96,245,30,32,86,208,163,233,139,65,233,166,
84,9,121,14,146,191,29,55,55,165,0,58,221,151,4,134,16,18,158,3,228,78,
18,156,231,134,138,223,6,142,90,160,111,251,215,145,186,110,188,61,142,
85,164,174,91,35,61,63,139,39,74,22,35,157,238,75,98,209,7,124,184,211,
237,16,142,17,227,61,22,125,133,232,58,151,220,250,56,141,254,120,132,125,
26,69,24,117,213,186,229,133,143,80,230,177,124,97,13,247,238,149,93,90,
209,243,60,149,24,204,183,112,210,142,18,184,236,37,84,82,249,162,166,91,
32,49,2,161,69,183,207,243,127,112,231,61,10,138,240,143,199,0,0,0,0,73,
69,78,68,174,66,96,130};
static size_t xml_res_size_7 = 1244;
static unsigned char xml_res_file_7[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,196,0,0,4,196,1,60,204,212,131,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,4,89,73,68,65,84,88,133,181,151,93,76,
91,101,24,199,127,207,161,165,5,193,208,32,210,2,83,230,72,216,98,252,64,
36,16,23,162,33,89,118,49,3,75,140,31,17,221,197,174,208,132,41,94,44,186,
32,208,73,102,188,218,148,59,19,99,162,33,89,116,78,70,162,162,219,8,6,
48,153,29,55,114,49,150,0,19,55,40,91,130,108,192,74,79,219,211,215,139,
150,66,219,211,210,18,247,191,122,63,158,243,60,191,243,158,247,60,239,
243,138,82,138,76,36,125,211,54,150,239,54,1,45,192,62,16,23,40,87,116,
214,11,202,11,92,3,46,224,40,26,86,237,85,122,70,126,183,3,144,83,19,46,
130,170,11,161,21,40,204,136,22,86,81,244,99,149,147,234,68,173,119,71,
0,226,30,177,35,5,157,64,7,144,159,97,224,68,249,128,211,168,181,94,213,
253,146,63,99,0,113,123,156,136,12,0,245,27,99,182,28,33,207,170,69,188,
6,195,4,140,204,62,93,84,87,80,234,176,234,174,91,76,156,208,146,130,127,
60,246,12,34,158,173,193,1,58,26,74,89,62,94,195,242,241,26,142,62,251,
72,54,193,1,234,17,241,200,39,19,79,165,5,144,206,81,23,225,208,79,132,
2,21,217,70,200,64,21,40,245,179,184,61,78,83,0,113,143,216,9,27,131,40,
202,9,5,32,20,120,0,12,84,32,50,32,238,17,123,18,0,58,61,192,243,177,254,
131,131,168,143,110,238,77,0,113,143,151,33,28,75,50,77,3,209,92,93,68,
91,109,9,109,181,37,20,230,230,100,11,209,33,167,38,92,0,22,0,244,160,27,
200,51,53,77,1,240,65,67,41,47,62,30,73,11,67,51,43,172,6,140,108,0,242,
9,170,46,224,29,139,244,77,219,16,222,32,221,95,21,10,16,10,164,78,108,
57,2,103,14,238,2,224,246,253,16,159,142,165,205,61,17,9,173,210,55,253,
190,133,197,249,3,40,10,182,179,55,130,1,252,126,63,118,187,61,105,206,
162,9,239,213,151,2,112,125,201,79,255,228,18,77,149,15,3,48,121,199,199,
132,215,103,230,178,144,229,187,77,22,80,135,183,199,141,72,215,51,74,239,
60,231,202,231,235,150,74,0,62,27,95,76,5,0,208,98,1,217,75,218,245,143,
168,198,153,31,131,232,122,161,24,71,225,102,118,30,62,82,29,107,63,225,
176,241,229,203,149,177,126,67,197,67,233,220,238,211,80,56,205,102,74,
11,172,113,125,239,90,48,214,206,215,140,184,205,89,86,184,105,107,213,
132,146,124,75,172,111,203,73,74,182,91,36,46,13,81,113,0,182,28,225,68,
163,139,201,182,39,105,125,186,56,54,126,115,37,254,111,208,117,29,191,
223,244,124,201,66,202,101,73,28,58,247,90,21,141,143,69,246,228,153,131,
187,152,187,167,51,54,183,134,32,73,143,111,236,9,179,141,153,169,52,148,
196,157,80,125,127,222,142,181,173,154,240,237,225,221,236,113,216,145,
228,248,49,136,157,175,132,120,53,132,56,128,223,102,86,232,159,92,138,
245,29,118,11,223,189,186,155,226,188,212,217,110,231,16,202,171,129,154,
74,28,254,232,242,60,11,171,155,223,124,143,195,206,187,117,143,166,117,
181,67,136,107,26,200,64,226,232,138,110,208,254,203,63,113,99,86,45,197,
55,216,6,194,179,112,63,221,35,23,52,156,229,23,17,214,18,103,46,223,88,
229,155,191,150,204,30,202,10,194,23,12,167,50,93,197,81,52,172,169,246,
42,29,197,89,51,139,15,47,221,226,143,155,73,108,89,67,152,74,209,175,218,
171,244,72,150,176,89,187,17,214,19,109,124,193,48,175,124,63,195,239,115,
171,255,55,132,15,171,156,132,104,61,160,186,247,47,160,248,194,204,114,
61,24,230,245,115,179,92,154,93,201,26,98,197,231,103,232,250,29,179,169,
211,27,229,250,102,158,180,209,3,92,53,179,246,135,194,188,121,126,150,
161,233,123,25,7,215,13,197,91,231,103,25,153,254,55,177,166,184,130,90,
235,221,232,196,149,229,210,57,234,66,25,30,20,229,102,78,173,154,240,85,
115,37,205,213,69,105,131,7,12,197,219,63,206,242,235,204,150,85,179,228,
130,37,247,22,74,213,109,45,207,227,78,10,213,219,232,5,14,33,204,155,57,
14,134,21,71,7,255,230,135,169,229,180,193,143,12,220,136,15,14,96,4,230,
9,27,135,18,239,6,230,23,147,206,81,23,97,99,144,173,69,234,22,105,2,133,
54,243,204,24,52,148,217,175,119,21,45,167,57,250,130,241,177,210,94,205,
116,122,16,142,161,82,212,139,219,73,88,7,237,115,114,195,238,172,174,102,
241,32,227,101,232,65,119,180,110,220,182,116,139,6,94,67,113,22,155,181,
91,117,239,95,72,107,154,213,245,124,113,254,64,164,132,147,189,40,156,
177,90,66,201,98,228,80,83,83,32,3,56,203,47,102,122,61,255,15,18,39,215,
228,219,192,187,72,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_8 = 724;
static unsigned char xml_res_file_8[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,31,0,0,0,31,8,6,0,0,
0,31,174,22,57,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,72,
89,115,0,0,4,157,0,0,4,157,1,124,52,107,161,0,0,0,25,116,69,88,116,83,111,
102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,
111,114,103,155,238,60,26,0,0,2,81,73,68,65,84,72,137,189,151,61,104,19,
97,28,135,159,55,38,33,53,105,74,62,68,107,18,23,65,90,104,172,86,16,210,
162,131,20,69,164,186,170,69,45,10,130,5,113,112,42,136,100,8,214,118,112,
9,40,14,213,197,89,23,71,59,22,151,150,104,4,77,106,83,138,226,34,129,214,
80,228,114,185,228,28,108,74,130,249,120,239,114,241,7,55,220,189,31,207,
243,231,184,247,207,9,0,226,203,35,8,253,29,29,230,1,47,190,253,210,237,
167,147,241,100,65,102,190,29,128,114,201,129,221,238,235,20,30,35,237,
235,19,219,57,247,236,157,35,143,103,158,109,182,155,111,3,160,162,8,74,
197,78,217,0,140,137,143,193,9,117,105,237,118,60,30,148,131,3,148,75,160,
169,150,8,140,138,180,255,134,237,245,234,221,71,51,251,228,224,240,23,
110,149,0,105,223,21,237,109,182,149,128,237,159,39,22,10,196,248,228,155,
210,222,124,141,207,79,31,144,131,27,16,136,120,157,109,231,140,144,233,
155,80,22,179,141,4,26,195,37,4,246,187,29,188,191,53,64,191,199,33,33,
144,245,94,84,22,179,241,185,155,7,229,224,109,4,230,198,195,132,122,157,
36,206,132,218,194,1,142,147,245,94,42,46,101,18,137,235,187,11,90,195,
155,8,156,232,223,203,181,163,1,0,166,134,131,156,12,185,1,88,19,17,86,
24,100,133,65,114,132,89,39,84,119,121,217,238,141,150,55,62,92,152,125,
234,131,234,33,35,35,0,96,119,34,128,228,249,67,216,196,142,189,128,39,
103,35,156,122,153,225,158,126,95,102,183,32,197,202,97,96,185,125,229,
181,2,154,202,100,52,64,44,236,169,27,26,139,120,184,60,228,151,222,170,
26,121,56,208,35,52,30,142,6,26,142,205,143,135,113,59,12,109,103,12,126,
117,200,207,111,69,33,247,179,190,111,124,47,168,168,101,157,201,104,99,
177,102,145,123,231,59,89,72,229,89,72,229,25,8,246,144,154,30,198,229,
114,1,112,238,213,42,95,242,138,33,48,24,172,188,54,197,98,17,69,49,14,
172,141,161,202,27,9,8,33,76,175,55,93,121,53,138,162,160,155,236,5,29,
195,1,244,146,185,102,100,9,28,48,213,13,173,131,155,16,176,22,110,80,192,
122,184,1,129,238,192,37,5,186,7,151,16,232,46,188,141,64,247,225,45,4,
254,15,188,137,128,169,179,125,125,83,225,216,243,207,187,247,63,10,146,
223,118,21,190,199,110,30,174,150,117,54,182,76,254,94,105,42,84,202,182,
26,184,67,131,210,150,185,221,76,68,71,3,248,3,55,71,228,58,37,20,139,19,
0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_9 = 760;
static unsigned char xml_res_file_9[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,193,0,0,4,193,1,17,118,177,117,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,117,73,68,65,84,88,133,197,214,79,72,
20,81,28,192,241,239,155,93,214,178,40,91,18,81,195,130,214,139,183,16,
194,91,167,194,72,187,104,183,82,59,88,10,5,18,29,236,80,237,46,81,65,183,
2,65,48,180,162,32,219,254,128,10,81,68,80,212,33,84,232,207,169,164,75,
127,212,245,79,165,228,238,204,238,204,235,16,171,107,234,250,230,79,245,
187,189,223,204,111,230,195,239,189,55,111,4,0,225,161,16,194,122,133,203,
40,20,223,56,99,117,221,62,30,238,109,85,173,241,3,224,179,124,88,108,114,
11,208,164,164,85,139,181,136,72,253,218,99,103,99,77,74,53,0,232,115,26,
41,221,237,251,1,240,97,209,34,238,53,118,68,234,174,171,3,0,204,20,94,
34,142,138,251,135,58,162,245,55,212,1,25,68,218,240,4,161,97,209,34,239,
30,236,142,212,246,170,3,224,55,192,35,132,16,146,70,250,15,244,68,107,
238,168,3,20,17,229,193,53,84,22,231,83,89,156,79,40,152,151,19,209,32,
7,234,123,34,53,49,117,128,2,226,202,222,50,6,155,43,24,108,174,224,114,
117,89,78,172,16,146,6,49,80,119,53,186,191,79,29,160,128,176,19,2,201,
97,250,106,186,163,181,253,234,128,191,128,104,162,111,223,173,232,158,
71,153,156,95,169,50,3,240,7,114,222,54,73,1,219,229,131,101,95,92,192,
108,118,106,119,225,133,19,161,137,83,213,35,106,0,69,132,137,198,71,74,
21,159,103,10,80,153,130,63,17,30,77,71,38,212,59,144,141,240,48,236,117,
32,11,97,232,201,255,8,0,82,134,65,50,233,30,97,127,10,178,66,215,221,31,
94,142,59,144,141,72,25,206,33,174,1,0,134,174,59,94,156,158,0,0,199,91,
212,59,128,67,132,173,69,88,178,33,192,145,29,155,1,8,5,23,190,136,229,
193,60,194,187,74,0,232,28,158,100,52,97,172,250,217,206,132,173,14,124,
157,49,216,89,186,142,182,170,34,182,110,92,248,7,216,86,144,71,91,85,17,
85,91,214,51,54,107,216,234,132,237,41,104,127,242,25,83,202,37,121,83,
74,78,62,254,196,252,21,69,132,109,192,155,241,4,55,223,78,47,201,95,123,
61,197,187,120,98,113,82,1,225,104,17,158,123,54,202,140,110,206,143,127,
36,77,206,63,31,93,254,230,85,16,142,0,241,159,41,46,189,28,159,31,95,124,
49,198,228,92,122,229,130,28,8,199,219,176,115,40,206,135,233,36,239,167,
146,116,13,79,172,94,176,2,194,241,89,96,152,146,211,79,191,96,73,72,89,
75,23,229,138,8,88,180,69,93,29,70,15,71,102,236,23,101,16,1,159,123,128,
227,72,27,32,165,182,0,48,53,19,172,239,255,22,33,76,128,95,176,208,9,84,
8,125,2,62,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_10 = 1387;
static unsigned char xml_res_file_10[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,196,0,0,4,196,1,60,204,212,131,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,4,232,73,68,65,84,88,133,157,151,93,108,
84,69,20,128,191,217,237,222,187,109,183,116,55,180,208,165,11,180,6,161,
109,68,137,72,90,5,82,160,18,76,32,252,36,62,16,49,38,168,49,106,2,145,
24,35,82,161,187,88,8,241,15,8,250,64,162,79,136,33,18,21,80,49,4,45,148,
96,160,20,98,168,134,22,65,133,208,150,109,5,183,101,75,187,255,227,67,
183,187,221,191,123,47,158,100,30,102,206,153,51,223,189,103,230,156,25,
33,165,196,136,136,125,215,85,124,3,75,128,85,64,53,8,39,72,103,92,123,
27,228,109,160,19,56,138,195,222,34,55,204,8,26,242,171,7,32,118,94,114,
18,150,219,16,172,3,138,12,209,130,31,201,65,44,98,187,220,50,247,246,255,
2,16,158,211,86,132,237,93,96,19,80,144,205,198,97,53,227,11,68,181,252,
15,3,187,145,67,205,178,105,81,192,48,128,240,180,151,33,196,17,160,86,
203,251,129,53,149,28,187,58,192,225,43,62,45,51,128,54,164,92,45,155,230,
121,211,21,166,140,197,183,158,125,12,33,218,245,22,175,115,21,178,110,
246,68,62,88,58,21,107,94,134,155,116,169,69,136,118,241,222,165,217,154,
0,194,221,90,70,44,242,61,145,144,75,203,155,0,246,44,155,134,0,166,23,
43,188,245,212,100,61,0,0,23,82,30,23,158,246,178,172,0,194,115,69,33,36,
191,69,226,34,18,130,72,40,167,167,231,31,157,72,109,121,97,162,191,121,
190,19,215,4,197,24,132,16,71,132,231,180,53,3,128,96,127,35,80,151,232,
231,128,40,180,152,216,213,144,250,131,10,44,38,118,53,148,27,1,0,168,141,
111,238,36,128,104,60,225,68,240,102,134,105,22,136,45,11,157,76,41,178,
100,152,62,55,123,34,117,174,194,140,241,28,178,73,236,188,228,76,0,32,
21,15,146,236,179,199,65,56,172,102,26,42,39,208,121,39,245,68,141,68,98,
116,244,13,179,126,78,137,81,128,2,194,114,27,128,96,255,69,11,55,253,119,
145,58,73,38,79,25,109,64,133,93,229,239,141,201,13,125,185,111,152,57,
251,175,24,93,124,76,252,56,236,165,38,110,12,45,209,91,220,44,68,206,61,
161,57,71,91,138,240,13,44,49,33,99,43,115,89,168,102,193,27,117,147,249,
120,89,124,211,61,0,196,249,151,170,88,49,179,88,207,108,149,9,147,168,
206,166,89,57,203,78,219,203,213,184,235,167,80,164,154,147,138,72,8,25,
214,175,51,85,37,249,124,183,246,97,78,172,155,73,77,105,126,46,179,106,
193,59,167,186,128,89,99,35,53,165,249,188,255,180,139,5,211,108,9,171,
152,132,112,44,153,178,5,80,84,96,197,106,29,61,206,18,8,69,83,83,186,98,
22,140,5,33,18,147,124,218,222,143,187,181,151,129,148,218,33,174,9,182,
156,242,35,177,57,242,243,104,92,88,198,250,57,37,70,226,7,128,170,170,
9,8,35,114,103,56,66,99,75,15,159,253,250,15,241,239,25,74,73,197,6,175,
6,9,9,6,131,4,2,89,139,92,86,145,241,54,94,50,66,80,93,154,207,174,134,
114,234,167,39,15,70,182,16,40,230,228,95,82,84,21,147,69,77,113,60,62,
4,225,152,228,147,11,253,120,90,123,25,12,102,134,160,5,201,226,116,218,
229,51,139,105,94,92,78,165,93,229,155,46,31,47,30,189,145,208,77,43,86,
233,120,181,38,209,255,189,127,132,5,7,254,74,228,9,0,255,230,199,177,41,
38,126,188,62,200,166,19,183,184,122,55,235,159,58,147,71,76,118,34,68,
6,192,15,127,12,114,242,207,123,188,246,196,36,42,29,6,10,205,216,241,140,
67,116,222,25,193,221,218,203,241,107,131,90,179,58,243,16,166,99,32,95,
207,166,13,69,37,123,219,250,12,111,202,241,16,79,126,222,69,84,127,83,
29,53,81,97,107,65,224,215,178,50,224,40,21,34,18,50,50,199,143,195,222,
98,146,175,204,13,35,229,33,35,190,237,86,51,63,189,48,139,175,158,125,
136,80,84,38,90,133,93,225,236,250,42,246,60,51,53,5,66,83,36,7,229,134,
25,193,209,99,168,152,182,33,184,175,7,48,16,136,114,246,166,159,170,18,
43,138,89,36,154,77,49,243,200,164,124,190,252,237,223,164,177,54,196,48,
22,177,29,226,229,88,186,235,189,72,62,210,3,0,248,240,92,31,253,195,225,
140,241,175,187,124,92,232,73,251,134,220,16,187,199,174,235,201,68,164,
78,218,1,156,215,3,24,10,69,105,62,147,122,213,15,68,98,52,157,238,205,
62,33,19,162,13,57,212,60,214,73,0,200,166,154,16,138,88,131,160,91,15,
226,139,142,187,92,246,142,36,250,123,47,244,211,61,168,17,243,36,68,247,
232,245,60,249,70,72,77,197,238,122,47,176,2,65,143,22,64,76,194,219,63,
223,2,160,251,94,136,221,231,250,244,152,33,26,234,33,22,93,158,254,54,
200,184,208,203,29,139,46,35,204,243,128,139,90,254,206,119,223,231,112,
167,143,173,167,122,9,68,98,122,203,95,68,152,231,73,119,109,71,186,66,
251,105,22,196,141,96,35,146,172,5,221,110,53,167,149,215,116,39,140,128,
105,47,74,204,243,64,79,179,84,144,95,166,16,12,123,16,172,69,98,211,52,
78,46,60,132,228,16,170,165,73,54,205,207,177,59,13,2,36,12,247,93,87,241,
246,44,5,185,26,68,21,146,50,132,28,125,229,72,225,69,224,5,217,5,226,8,
101,229,39,141,62,207,255,3,52,228,253,72,11,53,84,78,0,0,0,0,73,69,78,
68,174,66,96,130};
static size_t xml_res_size_11 = 834;
static unsigned char xml_res_file_11[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,193,0,0,4,193,1,17,118,177,117,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,191,73,68,65,84,88,133,189,214,95,72,
20,65,28,192,241,239,236,237,221,94,137,217,147,82,113,15,161,16,249,24,
17,190,154,80,20,24,25,151,4,253,67,210,58,43,130,222,18,41,202,243,37,
162,151,144,34,178,68,138,186,176,212,254,19,189,20,5,62,4,41,81,4,82,25,
21,97,89,87,88,230,221,185,183,211,195,157,94,247,135,107,246,254,244,131,
101,102,118,118,126,243,97,119,102,88,33,165,68,28,123,86,133,176,158,144,
103,148,243,93,180,139,243,253,7,14,7,90,85,199,232,177,66,234,64,69,190,
0,13,139,125,244,249,186,58,164,190,255,200,213,22,181,49,0,145,223,26,
102,36,223,249,1,112,96,209,42,174,53,159,246,55,94,80,7,0,152,17,10,137,
240,113,189,233,172,223,219,171,14,40,48,66,195,162,133,129,29,231,58,54,
93,82,7,20,1,209,44,6,183,118,251,27,174,168,3,10,140,16,72,118,113,99,
75,143,127,67,159,58,160,8,136,38,110,121,123,253,245,3,234,128,2,35,0,
118,114,123,227,197,206,245,55,213,1,69,64,108,151,247,234,47,251,215,221,
153,109,11,41,37,162,253,113,53,50,250,50,235,72,221,21,187,178,132,3,11,
15,159,209,176,208,176,16,16,47,37,26,50,94,198,218,159,156,229,203,38,
218,234,70,117,101,250,236,91,200,130,136,162,241,142,69,106,249,34,66,
3,149,79,144,138,40,224,231,176,15,40,2,194,62,160,192,136,180,53,224,212,
4,1,111,165,210,96,167,203,133,203,112,207,181,79,14,141,243,224,237,100,
126,0,135,38,168,91,90,170,156,192,237,54,48,12,3,128,192,139,160,173,201,
51,2,66,166,197,194,227,195,54,179,252,123,139,42,3,114,138,148,45,186,
71,244,179,92,142,1,240,26,15,93,52,22,25,144,130,104,224,33,107,197,16,
0,143,88,65,151,180,1,16,128,167,204,200,217,33,156,130,121,97,1,102,34,
95,182,72,3,24,186,198,115,95,117,206,0,0,247,96,9,188,143,213,157,142,
4,70,9,96,90,146,158,145,175,121,1,214,4,67,84,154,96,232,16,149,217,159,
205,8,56,120,255,131,242,100,135,68,47,123,73,254,215,152,79,136,80,188,
94,163,143,240,67,212,38,245,183,177,143,51,114,115,102,128,221,112,203,
48,11,196,84,198,190,144,9,110,162,148,233,191,146,238,27,114,102,174,158,
219,81,108,35,66,38,132,237,172,1,93,19,116,214,46,86,158,192,19,172,99,
56,152,124,114,86,77,220,165,116,250,35,0,227,162,130,192,204,106,116,233,
64,215,29,0,60,37,177,200,51,2,124,43,203,149,1,224,141,95,127,69,223,27,
24,139,3,156,75,56,26,222,29,223,9,233,39,102,26,32,108,90,172,234,126,
101,3,144,30,167,126,78,81,19,175,79,207,68,19,29,25,126,106,210,0,18,24,
253,22,74,189,109,43,166,132,53,87,183,82,183,225,44,194,97,100,6,252,151,
48,35,16,141,106,9,128,196,4,190,20,42,127,187,108,213,79,136,109,2,96,
82,150,72,50,157,133,177,57,249,3,235,9,253,190,72,67,151,122,0,0,0,0,73,
69,78,68,174,66,96,130};
static size_t xml_res_size_12 = 680;
static unsigned char xml_res_file_12[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,4,68,0,0,4,68,1,25,255,88,16,0,0,0,25,116,69,88,116,83,111,
102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,46,
111,114,103,155,238,60,26,0,0,2,37,73,68,65,84,88,133,189,151,63,104,19,
81,28,199,63,239,229,146,92,18,144,154,193,34,56,116,8,56,185,8,82,71,23,
55,65,11,130,21,92,116,23,255,141,34,37,155,163,131,142,130,147,224,160,
131,155,197,65,233,98,21,135,130,165,14,69,227,159,34,73,53,38,173,73,147,
188,196,231,164,189,36,191,94,238,206,75,190,112,144,247,126,47,191,247,
201,189,207,5,78,89,107,25,21,85,124,225,160,114,183,65,221,24,185,24,214,
81,246,140,189,117,108,53,192,90,84,31,64,81,77,13,46,184,203,124,246,186,
186,242,196,224,204,6,105,8,160,176,141,195,124,62,191,102,207,46,9,229,
38,11,182,243,119,160,61,155,187,104,126,14,94,167,244,203,141,48,155,3,
88,84,238,28,139,79,165,126,104,46,121,215,106,239,192,244,194,108,19,79,
28,239,160,105,32,11,36,19,187,115,105,12,179,188,11,221,248,144,170,132,
7,144,32,14,242,157,87,234,98,104,128,160,209,210,100,211,76,238,56,68,
128,73,66,236,62,134,69,229,214,59,236,120,139,239,153,225,180,115,15,18,
67,39,21,57,219,228,182,154,251,167,15,216,203,133,54,8,14,120,99,112,40,
155,44,224,198,9,177,143,234,87,5,5,192,231,8,250,73,90,208,235,198,5,208,
151,96,0,99,132,8,14,48,38,136,112,0,99,128,8,15,240,15,194,196,2,16,72,
237,66,222,101,102,42,53,52,175,83,46,218,73,138,223,89,219,220,225,83,
189,35,214,66,3,92,56,146,231,234,241,105,177,150,201,100,72,165,134,225,
174,61,251,194,157,229,114,60,0,15,86,126,240,188,180,181,103,61,145,116,
81,3,119,98,189,218,14,210,58,24,64,169,214,166,84,243,107,248,11,146,105,
72,200,199,225,151,104,18,74,49,237,72,98,254,151,132,82,246,18,243,219,
182,97,165,220,140,6,224,39,161,20,73,204,71,171,85,230,31,127,136,6,48,
74,66,41,131,98,86,26,242,159,87,76,18,74,9,38,102,124,18,74,9,32,102,236,
18,74,209,41,151,154,81,188,222,104,68,3,8,43,161,148,55,155,93,78,62,252,
24,13,32,138,132,131,169,183,126,67,175,55,228,196,24,37,244,137,22,63,
78,40,166,255,135,120,239,64,23,203,125,111,177,162,243,121,44,115,227,
228,81,126,175,231,234,230,210,81,108,239,109,236,187,166,201,216,133,19,
45,128,63,147,180,205,25,132,236,135,65,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_13 = 708;
static unsigned char xml_res_file_13[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,5,163,0,0,5,163,1,164,52,119,130,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,65,73,68,65,84,88,133,197,151,189,107,
19,113,24,199,63,207,229,146,212,40,173,118,16,117,112,208,69,16,28,10,
138,56,104,193,197,127,160,8,110,110,29,44,74,209,74,91,46,103,154,74,65,
240,101,17,58,184,72,55,157,116,18,234,34,138,155,131,130,173,98,21,193,
183,56,136,73,91,95,146,92,238,113,136,74,122,36,185,203,93,94,158,237,
126,207,243,251,62,159,251,253,158,223,155,168,42,161,45,43,7,113,249,142,
173,43,97,37,140,240,217,1,225,16,6,75,204,200,13,50,50,216,125,0,48,129,
56,194,89,12,86,200,202,56,25,73,116,15,64,137,213,124,109,3,174,98,176,
204,140,140,116,7,160,58,2,94,219,131,112,135,172,60,229,178,28,246,19,
16,111,17,22,44,57,153,48,152,218,100,18,164,58,183,3,59,155,248,21,88,
32,198,4,83,250,213,23,96,117,90,78,40,220,3,18,73,19,250,234,253,95,56,
43,0,105,246,113,147,17,173,212,5,88,75,203,17,215,101,17,37,245,207,217,
102,8,16,94,160,156,193,210,199,27,0,242,147,114,64,12,30,1,91,189,125,
218,14,81,5,89,160,194,4,182,230,36,63,205,94,148,39,192,142,70,241,29,
129,128,85,148,81,67,148,219,205,146,3,20,29,248,237,180,53,121,25,152,
39,197,125,83,133,254,32,245,94,252,11,208,134,145,120,136,203,24,182,190,
130,250,235,184,83,16,31,81,198,73,235,221,218,198,150,165,66,64,148,80,
174,147,34,203,121,253,225,117,6,149,121,143,203,241,255,16,37,232,51,112,
137,49,138,114,177,73,191,7,8,231,176,244,117,163,128,160,0,229,129,57,
125,231,109,116,50,242,205,172,191,153,63,71,185,64,90,23,253,132,35,157,
5,191,202,184,158,213,241,9,56,141,203,80,144,228,16,162,6,106,77,133,74,
209,1,129,181,164,201,21,92,174,97,235,207,86,52,162,45,42,165,4,220,114,
4,43,105,105,46,140,68,36,128,254,56,243,216,234,70,209,136,118,31,136,
152,60,58,64,27,44,232,20,36,11,147,50,228,23,52,176,139,151,140,105,177,
19,0,187,49,120,230,23,180,158,99,255,22,88,106,5,160,231,83,208,123,0,
169,222,215,122,7,224,192,41,224,109,207,0,6,103,245,67,60,193,81,224,77,
79,0,0,82,182,126,142,11,199,68,104,120,108,118,20,0,32,53,171,95,98,38,
195,34,44,119,19,96,195,62,176,249,146,230,214,51,50,92,41,51,39,66,75,
143,76,0,195,36,223,106,159,63,132,231,183,174,19,196,144,63,0,0,0,0,73,
69,78,68,174,66,96,130};
static size_t xml_res_size_14 = 759;
static unsigned char xml_res_file_14[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0,
0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112,
72,89,115,0,0,5,163,0,0,5,163,1,164,52,119,130,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112,101,
46,111,114,103,155,238,60,26,0,0,2,116,73,68,65,84,88,133,197,151,75,104,
19,97,16,128,191,217,236,174,122,16,169,151,82,188,249,194,39,136,86,105,
21,27,3,90,60,120,21,196,199,177,55,241,110,250,72,19,26,209,90,69,177,
136,96,15,30,60,8,245,224,81,16,193,90,65,69,91,8,72,75,209,131,32,52,69,
4,123,176,180,110,154,29,15,33,193,184,221,60,54,15,7,254,203,254,243,248,
152,153,127,254,127,69,85,9,42,18,159,222,142,145,109,209,254,195,31,130,
250,48,130,5,126,187,89,18,83,119,16,119,6,149,35,65,131,3,152,213,5,158,
177,49,150,47,35,86,31,104,75,238,171,86,229,35,48,128,36,166,206,34,122,
29,101,107,241,134,17,106,40,128,196,167,59,16,247,54,208,185,182,70,109,
25,16,191,38,148,107,239,91,201,132,134,17,46,1,82,194,71,26,228,123,69,
209,84,135,52,214,254,180,36,128,140,143,135,72,181,94,193,48,99,152,246,
166,138,28,87,46,14,112,70,7,218,95,172,9,32,253,111,194,184,171,163,40,
251,0,48,237,220,170,175,44,161,198,73,141,29,124,87,0,144,190,201,54,212,
29,65,245,188,71,189,49,16,63,81,186,52,214,254,73,136,190,186,8,122,31,
101,163,175,122,99,32,210,24,238,49,3,139,103,40,15,129,140,175,234,170,
147,91,245,149,54,92,227,81,161,7,164,119,114,15,100,71,81,34,190,38,117,
207,132,164,188,167,160,119,226,28,232,8,202,150,198,67,72,202,115,23,104,
50,252,4,75,118,33,220,34,119,108,138,165,206,229,240,29,68,0,50,240,122,
55,89,247,46,202,41,207,102,33,19,114,3,205,60,240,26,155,47,225,159,177,
237,85,74,149,28,163,154,232,154,5,186,165,119,226,52,48,140,234,254,194,
102,62,11,150,245,67,7,58,190,122,92,39,62,250,55,245,95,82,209,117,172,
201,240,115,236,240,1,68,123,16,153,47,130,112,86,130,63,40,42,5,0,208,
24,174,38,35,99,56,191,119,98,24,113,132,95,0,184,154,109,10,64,1,228,102,
247,146,14,117,13,98,201,14,96,12,113,107,234,200,192,87,169,14,134,23,
128,30,137,7,123,85,229,165,38,99,200,149,230,191,2,212,42,85,151,64,238,
125,89,199,252,183,189,101,21,237,13,235,9,149,119,95,125,15,44,164,183,
33,50,85,86,47,179,2,90,126,108,55,182,4,21,140,237,198,247,64,25,136,230,
52,161,47,132,46,54,239,20,120,32,228,51,161,204,133,154,222,244,129,32,
0,76,123,14,147,136,70,59,211,205,159,3,217,204,28,206,114,68,163,135,210,
208,236,65,36,50,139,197,9,29,58,158,206,127,170,190,4,182,177,136,147,
125,92,181,157,226,96,91,87,53,118,180,232,47,234,15,114,76,236,98,147,
84,227,24,0,0,0,0,73,69,78,68,174,66,96,130};
static size_t xml_res_size_15 = 1741;
static unsigned char xml_res_file_15[] = {
60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101,
110,99,111,100,105,110,103,61,34,85,84,70,45,56,34,63,62,10,60,114,101,
115,111,117,114,99,101,32,120,109,108,110,115,61,34,104,116,116,112,58,
47,47,119,119,119,46,119,120,119,105,100,103,101,116,115,46,111,114,103,
47,119,120,120,114,99,34,62,10,32,32,60,33,45,45,32,72,97,110,100,108,101,
114,32,71,101,110,101,114,97,116,105,111,110,32,105,115,32,79,78,32,45,
45,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,
120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,99,111,112,121,51,
50,34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,109,
97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,95,
114,105,98,98,111,110,95,99,111,112,121,51,50,46,112,110,103,60,47,111,
98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,99,116,
114,108,69,100,105,116,111,114,49,50,56,34,62,67,111,110,116,114,111,108,
69,100,105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,36,100,97,
116,97,95,105,109,97,103,101,115,95,99,116,114,108,69,100,105,116,111,114,
49,50,56,46,112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,
98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,
112,34,32,110,97,109,101,61,34,99,116,114,108,69,100,105,116,111,114,49,
54,34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,109,
97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,95,
99,116,114,108,69,100,105,116,111,114,49,54,46,112,110,103,60,47,111,98,
106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,
61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,99,116,114,
108,69,100,105,116,111,114,50,53,54,34,62,67,111,110,116,114,111,108,69,
100,105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,36,100,97,116,
97,95,105,109,97,103,101,115,95,99,116,114,108,69,100,105,116,111,114,50,
53,54,46,112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,
106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,
34,32,110,97,109,101,61,34,99,116,114,108,69,100,105,116,111,114,51,50,
34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,109,
97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,95,
99,116,114,108,69,100,105,116,111,114,51,50,46,112,110,103,60,47,111,98,
106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,
61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,99,116,114,
108,69,100,105,116,111,114,54,52,34,62,67,111,110,116,114,111,108,69,100,
105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,36,100,97,116,97,
95,105,109,97,103,101,115,95,99,116,114,108,69,100,105,116,111,114,54,52,
46,112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,
99,116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,
97,109,101,61,34,100,101,108,101,116,101,51,50,34,62,67,111,110,116,114,
111,108,69,100,105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,
36,100,97,116,97,95,105,109,97,103,101,115,95,114,105,98,98,111,110,95,
100,101,108,101,116,101,51,50,46,112,110,103,60,47,111,98,106,101,99,116,
62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,
66,105,116,109,97,112,34,32,110,97,109,101,61,34,100,114,97,103,51,50,34,
62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,109,97,
112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,95,114,
105,98,98,111,110,95,100,114,97,103,51,50,46,112,110,103,60,47,111,98,106,
101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,
34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,101,120,112,
51,50,34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,
109,97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,
95,114,105,98,98,111,110,95,101,120,112,51,50,46,112,110,103,60,47,111,
98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,105,
109,112,51,50,34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,
105,116,109,97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,
101,115,95,114,105,98,98,111,110,95,105,109,112,51,50,46,112,110,103,60,
47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,
97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,
34,109,111,118,101,51,50,34,62,67,111,110,116,114,111,108,69,100,105,116,
111,114,66,105,116,109,97,112,115,46,99,112,112,36,100,97,116,97,95,105,
109,97,103,101,115,95,114,105,98,98,111,110,95,109,111,118,101,51,50,46,
112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,101,99,
116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,32,110,
97,109,101,61,34,110,101,119,51,50,34,62,67,111,110,116,114,111,108,69,
100,105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,36,100,97,116,
97,95,105,109,97,103,101,115,95,114,105,98,98,111,110,95,110,101,119,51,
50,46,112,110,103,60,47,111,98,106,101,99,116,62,10,32,32,60,111,98,106,
101,99,116,32,99,108,97,115,115,61,34,119,120,66,105,116,109,97,112,34,
32,110,97,109,101,61,34,112,97,115,116,101,51,50,34,62,67,111,110,116,114,
111,108,69,100,105,116,111,114,66,105,116,109,97,112,115,46,99,112,112,
36,100,97,116,97,95,105,109,97,103,101,115,95,114,105,98,98,111,110,95,
112,97,115,116,101,51,50,46,112,110,103,60,47,111,98,106,101,99,116,62,
10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,66,
105,116,109,97,112,34,32,110,97,109,101,61,34,114,101,100,111,51,50,34,
62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,105,116,109,97,
112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,101,115,95,114,
105,98,98,111,110,95,114,101,100,111,51,50,46,112,110,103,60,47,111,98,
106,101,99,116,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,
61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,117,110,
100,111,51,50,34,62,67,111,110,116,114,111,108,69,100,105,116,111,114,66,
105,116,109,97,112,115,46,99,112,112,36,100,97,116,97,95,105,109,97,103,
101,115,95,114,105,98,98,111,110,95,117,110,100,111,51,50,46,112,110,103,
60,47,111,98,106,101,99,116,62,10,60,47,114,101,115,111,117,114,99,101,
62,10};
void wxC870InitBitmapResources()
{
// Check for memory FS. If not present, load the handler:
{
wxMemoryFSHandler::AddFile(wxT("XRC_resource/dummy_file"), wxT("dummy one"));
wxFileSystem fsys;
wxFSFile *f = fsys.OpenFile(wxT("memory:XRC_resource/dummy_file"));
wxMemoryFSHandler::RemoveFile(wxT("XRC_resource/dummy_file"));
if (f) delete f;
else wxFileSystem::AddHandler(new wxMemoryFSHandlerBase);
}
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_copy32.png"), xml_res_file_0, xml_res_size_0, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ctrlEditor128.png"), xml_res_file_1, xml_res_size_1, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ctrlEditor16.png"), xml_res_file_2, xml_res_size_2, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ctrlEditor256.png"), xml_res_file_3, xml_res_size_3, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ctrlEditor32.png"), xml_res_file_4, xml_res_size_4, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ctrlEditor64.png"), xml_res_file_5, xml_res_size_5, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_delete32.png"), xml_res_file_6, xml_res_size_6, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_drag32.png"), xml_res_file_7, xml_res_size_7, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_exp32.png"), xml_res_file_8, xml_res_size_8, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_imp32.png"), xml_res_file_9, xml_res_size_9, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_move32.png"), xml_res_file_10, xml_res_size_10, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_new32.png"), xml_res_file_11, xml_res_size_11, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_paste32.png"), xml_res_file_12, xml_res_size_12, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_redo32.png"), xml_res_file_13, xml_res_size_13, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$data_images_ribbon_undo32.png"), xml_res_file_14, xml_res_size_14, wxT("image/png"));
XRC_ADD_FILE(wxT("XRC_resource/ControlEditorBitmaps.cpp$C__Users_NDSE-69_Documents_GitHub_PSP_Project_ControlEditorBitmaps.xrc"), xml_res_file_15, xml_res_size_15, wxT("text/xml"));
wxXmlResource::Get()->Load(wxT("memory:XRC_resource/ControlEditorBitmaps.cpp$C__Users_NDSE-69_Documents_GitHub_PSP_Project_ControlEditorBitmaps.xrc"));
}
|