File: memcheckui_bitmaps.cpp

package info (click to toggle)
codelite 12.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 95,112 kB
  • sloc: cpp: 424,040; ansic: 18,284; php: 9,569; lex: 4,186; yacc: 2,820; python: 2,294; sh: 312; makefile: 51; xml: 13
file content (1259 lines) | stat: -rw-r--r-- 87,955 bytes parent folder | download | duplicates (2)
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
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
//
// 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 = 381;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,31,73,68,65,84,120,218,196,147,193,74,195,64,16,134,191,109,173,207,
161,143,80,162,40,241,222,10,42,22,250,16,162,87,47,62,66,81,122,215,183,
80,240,160,15,208,130,104,110,30,133,122,209,131,7,49,224,193,164,100,199,
217,52,74,176,110,148,122,240,135,97,254,204,204,254,252,179,97,141,136,
80,134,49,38,207,155,125,78,199,25,219,142,55,234,156,157,239,211,113,252,
235,124,94,40,199,7,90,135,200,227,211,177,220,222,237,72,91,185,111,190,
134,7,214,194,107,250,76,52,58,65,240,163,86,209,35,201,94,144,57,42,81,
41,144,74,140,249,147,64,54,17,48,50,131,128,41,28,80,255,175,21,156,131,
4,189,68,231,96,150,21,220,111,124,179,113,46,144,89,191,192,148,193,173,
62,131,100,76,184,218,132,56,125,200,157,132,129,94,69,15,153,111,48,212,
207,181,74,7,86,8,247,58,93,90,205,46,162,93,171,225,248,174,214,92,111,
106,213,111,222,66,208,238,113,179,178,12,139,11,147,218,232,30,174,174,
225,242,128,37,157,143,126,18,112,41,88,87,145,176,48,59,28,192,133,30,
86,26,253,250,49,57,145,141,35,196,133,227,190,121,159,131,79,145,34,71,
101,129,50,222,5,24,0,185,32,163,186,0,158,3,95,0,0,0,0,73,69,78,68,174,
66,96,130};

static size_t xml_res_size_1 = 391;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,41,73,68,65,84,120,218,98,252,255,255,63,3,50,96,100,100,132,179,
221,187,24,192,146,59,203,24,224,130,232,234,193,2,200,24,6,156,218,25,
254,95,126,48,11,140,65,108,156,234,177,25,224,210,193,240,255,244,237,
190,255,115,119,50,128,49,136,13,18,195,102,0,11,3,26,240,234,97,248,223,
16,208,196,112,245,105,17,195,63,86,136,216,213,103,69,12,109,33,205,12,
108,44,181,32,67,24,81,188,140,238,39,143,86,198,179,255,89,25,140,44,85,
25,24,228,69,33,98,143,94,51,48,28,187,13,84,252,155,225,220,142,234,255,
198,132,194,64,13,136,141,65,254,62,243,40,235,255,194,147,12,255,93,32,
97,0,210,168,70,208,11,64,112,11,68,48,1,29,250,231,255,123,6,70,38,32,
155,9,44,126,22,139,90,6,38,6,28,0,228,209,159,255,63,49,252,103,65,243,
52,177,6,128,192,159,255,159,25,24,152,25,240,2,188,46,248,197,240,137,
129,17,100,192,127,114,92,0,212,244,155,17,232,2,22,138,92,64,129,23,64,
38,252,98,250,68,208,5,56,165,65,209,200,200,250,131,129,21,202,38,217,
128,191,223,25,246,46,94,204,224,12,99,227,116,40,158,236,172,4,196,130,
80,246,123,32,190,135,45,59,3,4,24,0,58,206,177,253,3,180,249,115,0,0,0,
0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_2 = 1669;
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,3,34,105,84,88,116,88,77,76,58,99,111,109,46,97,100,111,98,101,46,120,
109,112,0,0,0,0,0,60,63,120,112,97,99,107,101,116,32,98,101,103,105,110,
61,34,239,187,191,34,32,105,100,61,34,87,53,77,48,77,112,67,101,104,105,
72,122,114,101,83,122,78,84,99,122,107,99,57,100,34,63,62,32,60,120,58,
120,109,112,109,101,116,97,32,120,109,108,110,115,58,120,61,34,97,100,111,
98,101,58,110,115,58,109,101,116,97,47,34,32,120,58,120,109,112,116,107,
61,34,65,100,111,98,101,32,88,77,80,32,67,111,114,101,32,53,46,48,45,99,
48,54,49,32,54,52,46,49,52,48,57,52,57,44,32,50,48,49,48,47,49,50,47,48,
55,45,49,48,58,53,55,58,48,49,32,32,32,32,32,32,32,32,34,62,32,60,114,100,
102,58,82,68,70,32,120,109,108,110,115,58,114,100,102,61,34,104,116,116,
112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,48,
50,47,50,50,45,114,100,102,45,115,121,110,116,97,120,45,110,115,35,34,62,
32,60,114,100,102,58,68,101,115,99,114,105,112,116,105,111,110,32,114,100,
102,58,97,98,111,117,116,61,34,34,32,120,109,108,110,115,58,120,109,112,
61,34,104,116,116,112,58,47,47,110,115,46,97,100,111,98,101,46,99,111,109,
47,120,97,112,47,49,46,48,47,34,32,120,109,108,110,115,58,120,109,112,77,
77,61,34,104,116,116,112,58,47,47,110,115,46,97,100,111,98,101,46,99,111,
109,47,120,97,112,47,49,46,48,47,109,109,47,34,32,120,109,108,110,115,58,
115,116,82,101,102,61,34,104,116,116,112,58,47,47,110,115,46,97,100,111,
98,101,46,99,111,109,47,120,97,112,47,49,46,48,47,115,84,121,112,101,47,
82,101,115,111,117,114,99,101,82,101,102,35,34,32,120,109,112,58,67,114,
101,97,116,111,114,84,111,111,108,61,34,65,100,111,98,101,32,80,104,111,
116,111,115,104,111,112,32,67,83,53,46,49,32,87,105,110,100,111,119,115,
34,32,120,109,112,77,77,58,73,110,115,116,97,110,99,101,73,68,61,34,120,
109,112,46,105,105,100,58,68,52,69,65,53,50,65,50,65,55,51,69,49,49,69,
49,65,70,55,53,56,52,55,67,51,65,49,53,56,67,51,55,34,32,120,109,112,77,
77,58,68,111,99,117,109,101,110,116,73,68,61,34,120,109,112,46,100,105,
100,58,68,52,69,65,53,50,65,51,65,55,51,69,49,49,69,49,65,70,55,53,56,52,
55,67,51,65,49,53,56,67,51,55,34,62,32,60,120,109,112,77,77,58,68,101,114,
105,118,101,100,70,114,111,109,32,115,116,82,101,102,58,105,110,115,116,
97,110,99,101,73,68,61,34,120,109,112,46,105,105,100,58,68,52,69,65,53,
50,65,48,65,55,51,69,49,49,69,49,65,70,55,53,56,52,55,67,51,65,49,53,56,
67,51,55,34,32,115,116,82,101,102,58,100,111,99,117,109,101,110,116,73,
68,61,34,120,109,112,46,100,105,100,58,68,52,69,65,53,50,65,49,65,55,51,
69,49,49,69,49,65,70,55,53,56,52,55,67,51,65,49,53,56,67,51,55,34,47,62,
32,60,47,114,100,102,58,68,101,115,99,114,105,112,116,105,111,110,62,32,
60,47,114,100,102,58,82,68,70,62,32,60,47,120,58,120,109,112,109,101,116,
97,62,32,60,63,120,112,97,99,107,101,116,32,101,110,100,61,34,114,34,63,
62,82,14,186,231,0,0,2,249,73,68,65,84,120,218,164,147,203,79,83,65,20,
198,191,123,111,91,40,20,45,15,137,80,218,11,180,88,81,12,90,33,218,96,
162,70,155,24,95,4,195,194,104,252,7,48,154,40,113,225,198,133,214,248,
90,168,49,62,18,99,226,194,5,186,80,49,138,70,109,48,49,129,90,173,98,128,
218,154,104,11,151,218,135,125,96,11,88,218,206,189,78,11,11,77,148,141,
39,243,101,102,49,191,243,157,121,28,230,222,133,189,144,203,11,177,184,
146,71,88,24,133,188,64,133,204,76,2,197,69,10,188,10,52,0,96,96,46,27,
66,42,45,98,54,147,129,73,89,2,112,108,141,221,233,22,76,171,106,31,179,
88,40,36,137,14,17,34,17,37,66,5,9,237,44,203,28,183,191,253,36,24,245,
75,209,107,27,219,41,91,128,133,152,75,64,136,212,182,177,17,241,201,52,
222,58,60,15,7,221,94,180,54,215,227,190,205,135,56,251,115,31,251,119,
88,130,40,2,153,172,36,117,116,28,128,181,7,40,46,4,86,55,243,144,105,22,
225,249,144,31,165,165,220,157,235,182,207,189,127,38,144,230,172,69,81,
42,164,176,175,203,146,64,207,189,219,216,189,107,47,206,247,22,64,165,
0,214,52,234,80,161,87,34,90,156,233,191,218,109,158,97,115,148,36,73,243,
174,68,75,178,228,242,18,77,253,79,99,147,142,167,213,227,232,182,105,60,
122,124,23,150,45,29,184,248,82,13,149,92,196,106,163,22,218,114,229,173,
156,59,75,33,175,72,178,78,66,178,82,181,97,253,120,157,209,112,184,170,
10,72,198,226,32,164,0,169,20,193,193,182,32,94,246,63,196,6,243,14,92,
25,212,96,17,77,194,32,39,9,108,69,245,50,190,109,207,33,147,174,174,6,
149,234,8,18,33,55,194,193,25,168,203,202,49,59,29,199,228,143,52,136,168,
64,87,203,24,6,222,60,195,90,147,5,55,134,141,232,186,244,174,37,119,106,
174,185,86,169,205,196,70,76,241,128,27,126,97,26,26,190,1,234,18,17,223,
253,1,90,129,18,37,69,50,76,198,146,40,80,200,96,96,60,120,61,70,112,241,
220,201,150,155,221,107,157,20,167,85,0,213,87,142,108,246,174,52,181,42,
120,173,18,17,191,15,222,47,49,212,25,234,193,102,99,8,4,146,208,86,149,
97,194,55,14,199,224,135,208,169,167,209,29,199,78,156,117,46,79,61,0,129,
12,92,207,153,206,228,157,190,97,167,166,40,181,255,155,240,29,170,10,61,
244,188,26,233,169,40,60,158,32,26,244,85,16,190,10,112,56,92,33,107,95,
216,98,109,95,58,84,24,180,35,25,73,98,42,154,64,254,25,251,223,11,54,135,
43,120,40,17,161,119,48,49,130,104,96,2,35,174,9,52,53,242,20,166,206,142,
209,144,245,201,55,139,181,67,55,12,142,190,37,21,195,201,192,114,28,184,
206,173,43,176,211,204,147,19,183,6,221,137,153,244,64,185,156,108,245,
124,157,44,54,175,107,66,72,24,131,221,62,18,62,221,23,152,131,25,38,223,
27,249,57,191,198,92,130,44,109,146,237,173,53,179,215,30,185,124,47,62,
134,159,26,150,112,254,200,184,119,147,32,132,126,80,231,205,167,40,156,
223,62,15,253,30,204,63,90,161,140,170,150,138,80,125,92,168,223,152,220,
15,252,159,248,37,192,0,40,125,96,108,105,12,45,185,0,0,0,0,73,69,78,68,
174,66,96,130};

static size_t xml_res_size_3 = 521;
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,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,14,196,0,0,14,196,1,149,43,14,27,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,65,100,111,98,101,32,73,109,97,103,101,82,
101,97,100,121,113,201,101,60,0,0,1,134,73,68,65,84,56,141,165,146,177,
75,27,81,28,199,63,119,73,167,76,133,14,29,154,77,220,156,210,81,108,18,
98,66,22,253,15,218,44,58,118,16,4,17,28,74,232,193,117,50,75,161,119,58,
57,73,38,69,232,98,164,138,102,208,10,18,51,132,10,46,77,73,237,16,53,42,
205,148,111,135,107,227,229,170,104,244,187,188,239,123,247,253,124,31,
191,199,33,144,64,0,126,127,111,249,97,255,122,155,210,54,74,219,190,76,
63,5,9,11,53,219,5,53,219,5,37,172,191,185,32,112,91,65,194,66,245,203,
188,156,85,228,172,162,31,87,239,148,182,81,216,0,195,31,12,238,255,193,
75,111,243,124,222,158,131,39,94,224,183,154,189,161,140,141,50,246,255,
183,39,45,116,116,49,37,103,29,125,90,71,110,9,85,90,111,148,244,70,136,
117,67,213,214,107,85,175,63,120,231,239,81,229,60,39,119,19,57,95,144,
187,133,42,173,92,47,156,177,209,254,217,152,220,50,114,119,208,238,233,
184,226,121,20,207,123,222,45,35,103,7,45,148,209,222,217,120,47,12,132,
187,243,132,160,35,56,248,182,194,220,228,48,224,121,76,48,76,24,28,24,
97,230,227,10,27,179,188,4,246,125,111,70,44,101,241,117,122,98,136,239,
245,67,58,29,239,111,2,48,12,48,77,136,190,24,226,131,123,72,41,0,3,132,
128,198,113,137,181,159,79,127,77,198,95,69,105,183,91,200,4,35,4,161,48,
60,123,30,101,126,225,232,70,56,168,88,202,66,203,141,136,22,107,104,177,
230,249,84,96,230,187,20,27,181,80,241,36,162,226,73,68,163,125,194,221,
146,172,141,178,246,195,224,110,201,99,224,190,244,7,21,150,211,165,68,
132,77,193,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_4 = 797;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,2,210,73,68,65,84,56,141,117,83,61,79,35,87,20,61,111,230,61,227,145,
103,20,201,51,46,40,221,33,26,203,150,5,169,182,218,184,177,210,44,43,167,
164,216,34,37,93,228,252,130,72,73,195,15,32,18,180,68,161,72,194,22,78,
170,109,64,66,107,107,186,181,64,32,170,17,120,6,102,134,49,158,175,251,
94,26,108,37,209,230,86,247,74,231,20,231,158,115,24,254,103,78,78,78,62,
22,69,209,1,0,206,249,100,103,103,167,243,57,28,91,46,199,199,199,95,0,
248,65,41,53,98,140,189,39,162,172,223,239,3,0,78,79,79,161,235,250,26,
17,245,117,93,255,10,192,247,131,193,32,2,0,237,31,228,15,182,109,191,35,
162,147,162,40,50,203,178,22,68,4,34,130,105,154,105,81,20,153,82,234,87,
219,182,223,1,248,240,194,1,7,0,34,250,201,182,237,141,86,171,85,201,178,
12,68,132,60,207,141,171,171,43,0,192,230,230,102,85,8,1,198,24,51,12,163,
50,153,76,54,124,223,255,17,192,183,26,0,228,121,254,155,231,121,149,56,
142,193,24,195,245,245,53,166,211,41,210,52,69,154,166,152,78,167,184,188,
188,132,174,235,152,207,231,240,60,79,228,121,254,251,74,130,97,24,35,41,
37,164,148,184,185,185,129,16,2,205,102,19,140,49,48,198,208,108,54,97,
24,6,110,111,111,49,159,207,65,68,204,48,140,17,0,176,195,195,195,143,68,
212,49,77,51,109,183,219,85,207,243,208,104,52,48,30,143,19,34,250,83,41,
197,56,231,175,59,157,142,57,155,205,176,190,190,14,215,117,23,113,28,27,
156,243,9,47,203,178,211,235,245,0,160,250,248,248,136,90,173,134,187,187,
59,16,209,251,221,221,221,111,0,224,232,232,232,151,251,251,251,183,166,
105,34,77,83,108,111,111,27,0,48,26,141,218,92,74,9,34,2,0,104,154,6,93,
215,241,34,103,101,241,210,13,93,215,161,105,218,10,47,165,4,59,56,56,24,
151,101,217,182,44,43,237,118,187,213,165,11,174,235,38,121,158,255,165,
105,26,227,156,191,110,181,90,53,206,57,132,16,56,63,63,47,210,52,21,156,
243,9,123,201,65,197,247,253,172,219,237,194,52,77,40,165,240,252,252,140,
32,8,192,24,67,189,94,71,173,86,3,0,100,89,134,179,179,51,56,142,179,54,
24,12,114,14,0,65,16,244,148,82,74,8,193,0,64,8,129,122,189,14,203,178,
176,188,165,148,40,203,18,68,4,41,37,130,32,232,1,248,67,123,209,248,181,
227,56,69,165,82,193,98,177,64,20,69,200,178,108,101,99,150,101,8,195,16,
139,197,2,134,97,192,113,156,92,41,213,95,37,49,73,146,239,0,124,233,186,
238,198,108,54,19,74,41,102,154,102,186,181,181,85,5,128,139,139,139,244,
233,233,169,202,24,83,141,70,163,120,120,120,248,148,36,201,112,21,164,
225,112,24,37,73,242,42,8,130,3,41,229,155,48,12,215,226,56,174,46,191,
31,69,81,53,12,195,53,41,229,27,223,247,127,78,146,228,213,112,56,140,254,
213,198,255,206,254,254,254,152,136,218,203,58,239,237,237,125,182,206,
127,3,135,56,141,125,58,109,237,180,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_5 = 650;
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,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,14,196,0,0,14,196,1,149,43,14,27,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,65,100,111,98,101,32,73,109,97,103,101,82,
101,97,100,121,113,201,101,60,0,0,2,7,73,68,65,84,56,141,141,146,77,72,
84,97,20,134,159,243,253,204,56,99,130,17,152,209,54,91,180,10,25,55,194,
64,180,40,8,44,201,69,34,216,198,93,235,118,129,4,253,48,4,109,219,213,
162,176,36,71,157,20,53,219,84,180,105,41,146,203,254,104,113,27,92,52,
150,57,230,140,247,180,152,123,103,38,153,129,14,92,238,119,207,247,126,
15,239,123,190,43,10,10,176,176,184,88,186,56,52,212,13,144,159,155,163,
86,10,8,70,4,17,217,188,60,60,220,195,193,138,1,10,170,170,90,127,31,168,
98,177,168,249,217,217,167,255,5,248,244,249,107,244,124,81,85,213,199,
83,83,170,170,250,61,8,52,63,63,255,172,249,188,137,23,13,219,224,189,195,
123,135,115,174,38,18,161,82,173,114,180,183,151,236,224,224,232,108,161,
144,143,181,78,64,106,86,20,128,32,8,112,82,107,133,26,2,112,178,175,143,
231,51,51,132,170,140,143,141,129,234,72,29,112,48,146,53,22,137,0,22,203,
206,78,153,129,76,134,129,76,166,161,17,75,91,128,177,14,145,26,40,225,
18,56,60,149,157,176,17,47,109,232,244,135,218,3,156,51,136,8,29,62,69,
238,197,45,150,215,150,64,76,61,162,49,134,84,162,131,11,119,206,79,47,
223,88,29,109,25,193,136,33,233,61,203,107,75,220,189,58,206,94,117,143,
253,112,31,65,112,214,147,78,166,200,229,23,174,0,45,0,214,98,141,141,188,
25,182,119,75,92,234,191,249,143,102,101,61,71,52,223,198,53,54,0,6,107,
227,182,176,181,91,172,239,61,124,119,141,137,71,221,252,222,251,1,209,
160,27,14,226,134,247,24,49,209,113,97,187,178,5,192,147,247,215,153,200,
62,160,187,179,151,159,127,190,33,209,237,215,29,24,99,162,25,152,152,133,
181,150,170,148,1,88,15,86,89,250,112,159,145,254,73,202,251,37,226,223,
167,238,64,68,126,205,21,10,93,161,42,70,132,180,235,36,233,19,136,11,185,
247,230,28,61,135,143,179,177,185,202,198,235,151,28,233,58,134,141,192,
210,20,255,52,96,155,190,57,59,153,157,78,39,187,78,160,18,73,21,5,140,
64,181,92,121,187,114,251,213,153,102,64,171,58,5,164,218,236,149,128,143,
127,1,4,224,205,100,33,68,48,193,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_6 = 700;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,1,115,82,71,66,0,174,206,28,233,0,0,0,6,98,75,71,
68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,1,187,0,
0,1,187,1,58,236,227,226,0,0,0,7,116,73,77,69,7,218,1,19,16,32,49,216,193,
195,192,0,0,2,60,73,68,65,84,56,203,165,147,189,79,84,65,20,197,207,189,
243,222,155,153,247,150,93,120,171,72,72,248,176,64,107,59,17,33,196,208,
99,131,17,11,141,161,35,33,88,152,24,194,31,176,133,221,22,198,134,26,20,
99,196,98,11,67,236,4,108,140,86,134,146,143,8,126,108,150,4,216,183,195,
238,206,179,217,60,23,118,59,79,114,154,201,220,223,61,153,59,151,226,56,
198,255,200,185,120,48,52,52,36,253,174,174,25,135,221,233,203,221,221,
87,136,226,204,81,169,244,29,224,21,235,137,213,207,235,235,197,230,251,
212,156,224,198,205,145,201,108,216,249,114,124,116,180,231,234,224,32,
142,74,37,128,8,97,24,98,111,127,31,155,91,91,197,211,211,147,201,15,133,
194,167,22,192,240,216,216,72,95,95,255,199,59,227,227,158,235,56,112,61,
183,37,174,181,22,27,155,27,103,135,191,127,222,123,191,250,118,45,1,76,
76,76,100,131,76,231,246,173,225,225,172,235,58,32,34,200,54,0,34,134,181,
22,95,190,125,61,60,240,246,6,11,249,130,113,0,128,165,156,26,24,232,207,
70,149,8,198,0,196,140,106,213,107,11,96,38,244,245,246,246,216,221,179,
25,0,47,28,0,240,131,96,90,8,198,175,195,3,48,51,136,5,162,114,25,142,35,
146,226,116,58,3,102,0,196,72,117,4,8,82,169,7,9,192,21,124,109,119,103,
7,111,94,189,134,181,22,245,122,29,214,90,40,165,0,0,81,20,37,160,24,49,
230,159,204,35,72,5,97,50,70,165,101,201,68,166,135,136,32,132,128,16,226,
92,116,173,245,249,217,59,2,74,202,174,4,32,61,89,212,82,225,225,227,71,
96,34,16,83,210,189,89,76,4,102,70,152,13,225,56,206,246,63,128,146,203,
130,249,182,239,107,100,210,29,40,151,35,248,190,110,5,48,55,76,16,68,43,
9,64,88,90,82,218,91,100,230,222,106,173,6,169,36,148,146,109,1,13,253,
177,53,90,5,0,6,128,124,62,111,180,39,103,181,148,70,73,9,37,189,11,29,
185,185,216,88,208,221,133,133,133,98,203,87,206,61,207,141,48,226,119,
68,116,73,43,31,21,83,129,146,10,190,175,113,124,114,12,99,204,15,80,60,
251,236,233,226,90,219,93,0,128,92,46,151,37,97,167,64,116,159,137,174,
3,84,138,97,139,100,227,101,173,211,75,115,115,115,166,237,50,17,145,7,
64,53,89,54,222,136,1,212,1,84,1,156,1,168,52,28,197,113,92,251,11,177,
244,190,246,26,73,129,97,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_7 = 696;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,2,90,73,68,65,84,120,218,124,83,75,107,83,65,20,254,102,238,220,38,
74,192,254,5,117,235,74,92,8,46,20,119,210,141,184,208,141,33,203,138,169,
160,155,110,132,82,69,99,23,53,193,136,72,181,109,8,241,65,211,34,42,46,
5,117,37,216,149,11,165,110,36,6,20,204,163,105,154,199,189,185,185,115,
199,51,147,135,169,4,79,56,225,156,57,247,188,190,249,134,165,211,233,154,
148,114,50,8,2,252,43,140,84,88,12,91,21,142,82,35,128,82,106,24,179,44,
142,144,45,94,33,149,74,42,45,142,211,81,237,182,107,212,113,188,161,175,
229,204,244,130,26,39,231,175,165,20,15,130,94,213,120,252,18,214,215,215,
80,42,151,49,67,246,198,198,26,242,249,231,38,38,125,9,61,223,239,102,23,
71,166,226,40,181,124,115,174,167,22,131,177,110,220,188,5,24,83,25,91,
233,159,137,5,224,28,180,66,23,209,153,219,224,180,215,161,227,231,80,248,
244,18,22,57,180,34,51,5,34,33,97,130,12,230,15,58,183,87,128,195,22,22,
126,84,154,152,159,187,98,118,215,231,133,114,131,10,115,8,13,210,234,219,
45,44,189,222,52,128,245,160,235,77,34,165,194,229,179,199,112,32,108,225,
206,226,99,51,178,142,114,211,217,66,40,100,55,133,118,90,174,103,186,235,
164,191,233,202,140,222,114,60,180,186,1,94,60,152,197,118,211,67,173,233,
162,238,116,209,246,3,44,61,122,22,17,140,86,168,83,224,227,189,40,198,
201,66,126,211,96,35,37,208,245,125,82,9,159,28,13,190,34,100,133,238,216,
234,120,56,113,245,9,250,40,142,16,129,225,244,209,131,102,239,111,133,
159,166,81,195,237,208,247,18,158,82,189,85,2,50,182,119,59,240,169,34,
103,123,243,21,157,85,107,45,99,95,79,62,133,79,221,53,230,122,106,91,8,
236,223,55,1,164,146,119,251,180,144,125,245,71,84,154,200,212,116,98,44,
145,46,16,145,132,12,6,99,243,33,124,230,14,25,31,78,210,245,123,52,63,
117,113,14,165,106,5,223,139,69,184,95,222,64,79,63,252,42,22,139,33,147,
201,96,121,121,197,36,71,163,81,100,86,87,6,80,224,23,173,249,112,113,22,
97,219,194,231,119,196,88,98,165,121,43,154,12,90,178,217,236,158,253,115,
185,220,208,182,133,141,98,181,13,143,110,225,126,106,30,165,122,27,187,
116,149,26,92,150,72,36,222,135,195,225,147,131,215,56,160,54,235,51,116,
130,238,233,107,153,55,119,28,22,25,229,9,35,196,253,142,251,65,251,135,
73,39,241,127,145,250,5,143,57,223,249,35,192,0,123,24,123,33,232,15,101,
234,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_8 = 764;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,2,158,73,68,65,84,120,218,100,83,77,72,84,81,20,254,222,189,239,103,
198,212,145,198,172,176,108,163,101,145,72,11,33,162,114,35,22,182,80,219,
180,40,17,12,218,232,174,160,93,132,180,40,168,86,186,40,200,141,182,112,
211,24,81,160,70,160,82,20,86,80,130,82,90,226,248,3,142,14,204,56,225,
140,227,188,247,58,231,206,60,25,235,194,97,230,156,239,59,231,124,231,
188,123,53,252,115,74,175,133,122,109,219,237,112,93,215,231,146,175,177,
105,90,74,74,173,111,125,160,181,51,159,75,28,133,171,179,175,109,168,209,
208,180,225,198,186,114,156,171,41,67,48,224,35,6,39,3,235,241,20,38,166,
34,24,153,92,198,182,235,94,88,235,111,25,217,85,128,147,247,7,172,225,
91,87,106,16,75,217,120,55,19,197,204,202,31,108,110,57,8,248,37,142,29,
44,68,125,245,94,148,248,36,30,14,78,97,53,190,165,138,112,1,193,5,116,
234,220,221,126,10,159,230,19,120,54,190,132,185,213,36,186,91,170,176,
244,184,30,54,169,248,189,150,68,223,196,178,194,153,199,124,79,185,206,
51,119,92,172,196,216,175,56,190,132,227,40,244,235,72,103,28,8,145,157,
206,103,73,236,49,165,250,207,184,105,10,48,255,137,19,234,165,80,167,112,
28,231,122,249,129,0,190,46,36,136,104,192,103,232,202,238,189,158,199,
201,59,31,225,55,117,88,228,243,47,227,204,99,62,231,101,213,67,179,194,
241,52,252,134,80,93,105,44,100,72,247,247,187,167,85,215,179,247,63,195,
148,90,22,35,223,112,92,48,159,243,24,23,188,229,120,42,3,203,210,97,26,
18,6,27,73,30,156,140,168,2,66,151,208,115,113,198,153,199,124,45,247,253,
88,1,5,108,146,45,84,119,106,64,139,115,161,75,181,95,152,186,80,38,115,
59,201,54,180,89,129,87,192,77,59,182,99,90,52,31,205,149,45,64,160,151,
96,230,58,123,190,16,2,153,12,41,160,60,229,59,169,232,208,202,74,12,5,
180,109,31,147,85,71,109,71,34,207,72,183,80,197,25,103,30,243,57,15,185,
155,90,81,122,245,197,66,83,195,9,20,21,89,216,166,79,216,84,29,64,115,
109,112,231,202,182,15,204,170,100,131,138,36,18,91,120,243,118,26,235,
207,47,31,161,139,20,214,9,15,103,22,223,119,141,142,201,158,75,13,199,
81,76,69,70,231,18,120,53,29,83,151,136,154,163,216,111,208,24,2,27,148,
60,58,246,3,204,231,60,79,1,159,226,146,243,55,219,228,161,51,61,117,181,
135,113,180,178,12,69,5,38,188,199,148,216,76,227,231,92,4,147,223,22,97,
47,125,232,138,141,63,234,167,240,198,174,199,196,69,200,170,130,173,79,
111,107,254,96,51,45,211,244,0,218,95,218,77,70,95,70,67,55,30,144,59,203,
201,255,189,198,188,83,65,198,11,16,121,49,135,44,234,201,206,127,206,127,
5,24,0,83,100,19,196,185,113,8,189,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_9 = 959;
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,24,0,0,0,24,8,6,0,0,
0,224,119,61,248,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,14,196,0,0,14,196,1,149,43,14,27,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,65,100,111,98,101,32,73,109,97,103,101,82,
101,97,100,121,113,201,101,60,0,0,3,60,73,68,65,84,72,137,221,148,75,111,
19,87,24,134,159,51,227,75,34,50,136,196,36,86,228,94,12,8,90,4,149,82,
199,78,226,182,110,75,90,149,182,234,6,137,45,82,55,93,100,213,85,55,145,
66,22,8,117,221,31,208,101,22,85,106,137,70,189,68,66,45,133,133,21,226,
64,13,174,1,75,182,234,186,73,60,196,114,8,49,190,196,25,123,88,204,76,
226,88,137,9,162,234,162,223,102,142,142,190,243,62,239,188,243,205,129,
255,162,116,208,117,208,91,246,26,173,123,47,4,104,247,220,79,133,38,241,
125,248,53,191,157,153,96,240,95,7,132,198,241,93,158,9,212,147,203,95,
234,151,174,12,53,222,105,130,72,205,141,2,132,14,186,0,241,28,206,71,207,
6,71,194,131,253,72,215,23,190,193,239,209,197,167,35,129,112,104,146,81,
83,211,112,42,158,177,222,203,249,71,193,193,240,27,238,186,55,191,18,219,
234,116,247,14,112,127,85,206,204,206,223,58,111,107,61,180,95,247,161,
113,124,239,13,191,30,29,240,84,37,117,37,1,118,227,160,16,144,206,197,
72,100,113,174,47,161,216,218,137,238,181,31,154,100,244,3,255,201,111,
223,124,169,33,169,249,4,200,102,179,128,234,38,68,51,168,119,34,76,36,
190,35,46,55,31,28,157,196,119,226,99,166,94,121,139,63,51,55,200,237,229,
252,221,161,99,83,167,61,154,183,240,40,5,50,8,9,36,9,42,26,220,206,66,
100,134,177,228,15,204,2,143,228,230,131,35,1,79,244,243,79,78,31,173,213,
245,47,244,19,197,31,179,45,144,208,56,190,224,176,39,234,63,210,232,126,
252,248,111,132,37,46,67,113,3,230,82,168,145,43,140,165,102,249,25,88,
5,234,178,245,202,111,7,250,167,252,71,233,94,94,190,207,17,79,151,176,
117,40,103,165,215,158,220,205,94,231,175,29,61,199,232,94,91,91,50,230,
207,20,175,104,48,151,68,141,253,206,197,228,12,191,152,226,13,0,113,102,
130,193,224,144,235,251,83,175,74,222,242,147,252,150,219,206,3,189,196,
50,141,204,220,66,225,188,168,163,15,15,187,194,3,94,201,91,41,109,247,
72,18,84,54,224,118,10,110,76,115,33,53,203,85,160,0,104,86,143,109,125,
5,101,49,91,112,246,118,193,193,3,219,247,67,165,154,199,119,252,144,183,
94,59,24,213,117,240,29,175,139,82,177,128,110,134,42,75,176,94,130,232,
61,212,249,25,190,50,99,89,179,156,91,37,231,110,81,212,20,114,122,39,1,
119,31,138,221,110,12,63,64,173,86,229,101,143,93,244,247,233,162,92,90,
55,102,202,250,160,53,184,153,64,141,95,227,226,131,150,88,118,0,128,205,
124,130,197,178,70,218,233,230,220,97,23,194,225,48,33,18,104,90,13,77,
171,237,204,124,19,254,72,66,36,204,152,41,94,0,234,187,77,157,108,82,43,
171,105,22,139,85,226,146,139,96,79,15,74,71,231,54,100,75,220,6,197,50,
220,188,131,26,9,239,156,150,221,196,45,0,24,177,111,172,166,121,168,117,
146,19,93,248,221,110,20,135,115,27,34,217,204,88,98,168,241,95,219,199,
178,27,192,130,84,243,247,248,167,92,35,237,236,229,156,171,15,97,119,24,
179,94,217,128,88,28,34,211,207,142,101,47,128,5,49,226,170,16,151,14,17,
236,233,67,217,212,96,126,1,53,50,189,191,88,218,1,44,136,17,151,131,156,
164,224,95,94,162,116,247,234,254,99,105,174,118,55,167,12,28,62,249,25,
239,235,58,226,193,79,92,163,229,39,122,81,0,24,243,211,97,174,171,60,135,
243,255,79,61,5,192,211,121,42,244,118,54,248,0,0,0,0,73,69,78,68,174,66,
96,130};

static size_t xml_res_size_10 = 363;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,13,73,68,65,84,120,218,98,252,255,255,63,3,37,128,137,129,66,48,240,
6,176,4,76,96,36,74,33,40,164,254,253,99,152,245,247,63,67,42,51,35,3,35,
19,208,106,176,78,80,32,18,139,93,59,25,254,223,124,178,228,191,115,59,
136,251,159,193,175,31,104,136,79,47,195,250,223,127,25,2,128,166,51,252,
199,99,61,208,102,6,27,85,6,6,69,81,6,6,35,133,217,12,197,203,83,25,246,
84,252,103,100,249,3,212,220,21,147,202,240,235,207,31,6,124,49,250,239,
63,200,181,204,12,151,159,206,97,56,243,52,149,161,53,188,141,193,179,155,
241,63,11,200,31,215,222,207,6,26,192,128,215,0,144,220,95,160,43,25,216,
33,65,255,245,207,59,176,56,163,75,45,195,58,86,94,134,192,127,4,52,131,
188,104,109,12,244,130,60,3,131,240,255,84,134,137,27,102,51,236,169,100,
48,1,201,3,133,24,140,137,193,238,29,12,255,55,220,10,249,239,214,14,14,
46,99,112,32,250,247,19,31,231,31,159,49,76,227,22,103,200,220,90,194,96,
2,212,124,150,145,140,116,35,9,117,13,28,48,14,253,204,4,16,96,0,153,89,
134,252,154,118,77,223,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_11 = 543;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,193,73,68,65,84,120,218,164,83,61,75,35,81,20,61,239,77,146,65,147,
136,141,69,20,113,149,32,17,20,131,203,218,68,113,139,20,46,172,69,192,
194,102,217,114,65,176,176,240,47,88,88,138,90,89,136,22,130,133,251,3,
220,214,34,133,214,138,104,96,145,149,45,212,176,226,7,153,153,247,246,
157,151,15,6,25,68,72,224,240,78,206,57,247,229,222,155,25,161,181,70,59,
159,216,201,234,84,164,161,148,26,116,68,237,138,60,208,137,33,41,101,37,
42,39,163,68,173,20,2,175,118,152,157,41,129,32,167,246,174,11,56,146,14,
252,165,238,222,15,249,174,177,105,16,228,212,162,198,149,17,191,222,41,
156,248,122,110,238,59,42,103,151,22,228,212,232,189,121,1,219,84,190,119,
60,80,248,10,184,255,176,178,121,106,65,78,141,222,235,81,100,168,119,168,
192,95,72,103,178,249,158,79,159,129,171,45,8,147,37,200,169,209,99,6,161,
81,100,104,235,230,155,187,159,43,45,2,231,107,128,119,139,151,90,96,65,
78,205,122,38,163,66,93,200,80,235,71,253,211,243,144,247,135,192,243,111,
32,145,198,195,147,103,65,78,141,30,51,204,54,71,137,213,91,15,138,169,
76,174,152,25,233,2,42,101,32,158,164,131,131,229,155,198,211,210,97,52,
115,86,203,200,140,140,227,238,44,87,124,252,123,81,116,132,248,37,181,
50,243,200,142,163,225,47,179,192,205,174,89,88,202,192,20,184,46,126,236,
140,90,144,215,181,148,205,216,172,169,97,173,84,74,111,244,77,22,16,247,
126,154,86,147,173,98,36,92,220,223,86,45,200,91,151,152,12,179,172,97,
173,56,89,45,232,137,111,189,141,77,138,250,201,195,97,235,141,109,251,
70,8,184,172,230,230,234,228,116,239,15,98,129,175,81,222,190,134,29,69,
55,171,121,152,246,26,148,22,180,104,254,223,54,34,140,41,29,97,211,31,
219,121,27,69,187,175,243,127,1,6,0,210,112,222,124,83,14,113,109,0,0,0,
0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_12 = 975;
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,24,0,0,0,24,8,6,0,0,
0,224,119,61,248,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,14,196,0,0,14,196,1,149,43,14,27,0,0,0,25,116,69,88,116,83,
111,102,116,119,97,114,101,0,65,100,111,98,101,32,73,109,97,103,101,82,
101,97,100,121,113,201,101,60,0,0,3,76,73,68,65,84,72,137,149,149,77,104,
92,85,20,199,127,231,220,55,211,49,201,132,25,48,209,170,161,139,130,36,
234,170,130,65,10,81,233,182,34,138,11,151,46,66,112,37,46,21,67,5,197,
125,193,109,4,187,144,208,74,87,22,63,24,20,99,91,112,101,65,75,170,77,
211,212,38,25,51,169,233,180,147,249,126,31,215,197,155,55,153,153,55,51,
161,7,46,239,206,187,103,206,255,124,252,239,255,9,161,153,11,23,47,126,
241,196,228,228,123,214,90,177,28,102,22,69,112,93,247,220,237,245,245,
197,133,133,133,173,65,158,18,186,99,1,220,102,147,114,165,130,32,100,178,
25,0,30,20,31,244,132,182,164,82,41,242,249,60,227,233,116,243,207,213,
213,239,54,110,221,250,96,126,126,254,159,126,0,26,109,150,207,159,191,
154,72,38,121,248,176,68,38,155,225,238,221,77,0,74,251,251,221,171,180,
79,163,222,224,246,198,6,35,35,35,201,231,103,102,78,63,61,53,117,14,48,
67,1,162,182,24,19,250,169,106,251,217,187,68,4,17,65,141,97,108,108,204,
121,121,118,118,238,135,92,238,231,165,165,165,99,189,0,78,231,143,122,
189,206,84,42,197,246,118,62,236,29,32,34,93,127,16,17,16,24,79,167,185,
185,182,134,231,186,168,49,242,220,244,244,201,251,123,123,239,2,159,1,
65,28,32,8,218,65,85,15,130,118,238,35,243,60,159,153,233,105,170,213,106,
187,122,163,106,234,141,198,72,171,85,125,0,194,244,216,217,41,160,210,
9,16,111,173,235,186,52,93,23,162,148,108,216,96,235,251,177,108,148,208,
109,180,245,68,91,253,21,17,118,119,239,181,247,157,75,85,49,29,43,154,
87,63,235,174,0,25,234,60,208,68,176,54,232,123,228,244,248,33,70,16,226,
125,31,102,22,139,245,250,159,57,189,47,84,30,189,2,65,8,240,15,7,16,145,
161,0,209,12,122,205,2,190,231,97,52,57,28,0,24,56,3,85,165,88,46,178,91,
218,105,145,39,98,80,184,45,87,202,108,214,238,76,157,250,248,149,147,63,
125,190,178,210,58,137,211,84,250,240,30,32,225,36,248,234,215,47,177,82,
68,162,42,59,84,81,85,73,61,149,120,231,104,99,242,77,32,3,212,99,0,17,
77,123,45,148,5,33,95,204,243,250,236,113,46,255,181,76,16,248,216,246,
125,18,140,58,188,240,228,28,27,133,209,35,64,170,47,64,72,211,190,154,
21,102,45,66,177,86,224,165,227,111,243,198,139,31,117,157,255,253,239,
85,126,188,126,22,223,62,22,229,74,188,2,33,108,81,207,7,65,36,36,174,32,
52,189,42,99,71,38,219,195,94,205,175,176,86,248,141,253,90,120,41,131,
160,155,77,177,137,134,138,41,177,21,5,116,253,26,170,7,121,77,164,143,
241,199,86,142,107,155,223,131,8,129,29,2,16,210,84,226,18,45,10,18,86,
208,176,53,140,73,0,240,233,165,83,24,77,176,120,58,199,209,236,179,120,
52,7,3,200,48,253,215,72,135,20,207,54,113,156,144,239,229,230,30,23,126,
255,132,98,53,207,91,39,22,241,105,198,46,92,187,86,85,109,92,190,114,197,
90,144,72,29,59,135,147,208,36,149,114,21,171,1,55,10,191,176,93,186,193,
248,232,227,252,87,185,195,55,215,206,128,40,106,76,76,147,162,105,39,129,
103,128,137,142,119,189,230,188,246,225,220,217,87,231,178,39,130,0,9,47,
88,183,92,171,10,55,215,61,255,235,247,47,77,0,197,206,10,92,96,11,40,12,
8,14,144,170,223,111,44,231,190,221,187,142,29,144,132,96,141,35,21,56,
232,211,163,200,166,1,178,64,250,16,191,6,112,175,149,52,255,3,201,15,43,
70,156,164,76,228,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_13 = 564;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,214,73,68,65,84,120,218,148,83,61,79,2,65,16,157,189,221,59,104,141,
90,208,88,168,149,133,127,194,88,16,123,99,130,49,193,198,22,43,127,3,70,
131,74,165,137,136,70,109,232,140,241,183,72,133,196,40,17,18,98,195,161,
247,181,206,204,222,193,97,66,162,195,221,237,101,238,189,55,111,103,7,
81,171,213,42,97,24,150,180,214,32,4,96,240,99,74,104,64,24,226,4,72,41,
79,138,197,226,190,34,114,97,123,7,58,157,14,11,8,49,93,128,138,144,64,
46,151,131,187,219,155,18,166,246,149,214,17,120,254,23,60,55,155,96,89,
214,20,170,48,198,144,29,69,17,204,206,205,0,241,40,20,61,162,80,131,227,
56,166,122,202,129,248,253,130,213,73,128,240,73,176,128,198,68,198,201,
194,234,234,10,242,39,93,12,6,46,180,90,47,76,52,91,64,23,97,52,41,128,
154,144,205,102,96,109,109,29,148,82,163,62,16,56,8,2,56,63,191,0,223,15,
216,2,59,128,95,2,58,210,32,149,132,171,122,157,5,150,151,22,71,34,68,240,
125,159,87,215,117,225,245,237,29,82,252,216,1,54,68,82,3,169,197,120,229,
243,27,40,168,198,91,143,173,147,155,106,181,74,135,57,22,32,142,133,213,
168,50,133,148,22,60,61,62,24,129,212,137,14,135,223,240,209,237,130,231,
121,140,215,58,229,128,144,182,109,246,78,235,230,86,1,87,123,36,64,224,
32,240,161,82,57,198,66,50,85,63,22,152,116,160,160,209,184,55,205,196,
31,129,61,239,27,250,253,79,174,142,19,200,248,148,128,230,1,114,108,199,
36,144,184,187,187,199,78,226,233,1,31,247,126,116,88,198,62,73,190,205,
192,233,68,64,112,85,178,204,110,240,227,217,105,133,87,227,192,28,29,53,
48,193,16,62,153,46,69,251,166,25,176,176,121,58,73,11,49,241,151,162,188,
237,216,163,239,14,247,39,22,104,183,219,229,235,235,250,1,85,249,107,144,
187,94,175,119,153,76,249,60,222,11,240,255,232,224,108,188,255,8,48,0,
58,147,211,179,159,211,15,77,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_14 = 1017;
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,16,0,0,0,16,8,6,0,0,
0,31,243,255,97,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,3,155,73,68,65,84,120,218,108,83,107,76,28,85,24,61,51,204,192,62,200,
178,180,74,106,85,144,46,143,74,74,85,88,16,180,11,110,155,216,248,10,54,
45,93,72,140,105,13,49,77,68,34,36,45,2,41,181,42,225,33,5,234,143,254,
177,63,76,127,216,198,96,218,106,104,4,45,162,18,90,202,110,154,150,165,
181,117,97,215,2,93,118,102,217,7,236,123,102,118,188,67,72,252,227,73,
78,230,206,157,123,190,239,220,243,101,168,190,254,65,136,162,8,5,130,32,
32,22,143,127,89,110,44,237,96,24,6,118,187,29,222,213,213,31,95,42,41,
105,39,103,70,213,106,245,211,233,26,45,2,235,107,144,68,113,150,162,168,
3,140,34,148,101,121,131,130,32,94,170,124,185,220,242,246,91,111,162,171,
187,219,125,109,100,228,227,18,163,81,78,75,77,181,151,149,150,32,235,137,
39,33,72,34,34,225,8,28,142,249,226,71,203,75,142,141,2,201,100,18,146,
36,125,95,188,123,87,109,117,149,9,63,92,190,140,147,29,237,251,201,167,
191,223,63,114,212,187,179,176,0,52,69,99,226,207,73,132,195,97,132,194,
33,128,162,72,211,36,24,69,156,157,157,13,142,227,106,205,166,61,112,204,
47,160,48,191,0,173,109,29,45,26,141,246,104,52,26,213,234,116,58,220,191,
255,23,180,106,21,92,255,184,208,220,212,104,196,38,24,98,253,138,32,138,
53,150,195,7,49,247,224,33,182,232,245,120,236,118,43,174,142,16,87,107,
241,88,108,163,83,70,70,6,104,154,70,34,145,64,79,223,25,155,36,10,160,
200,59,77,46,80,179,183,186,10,179,246,123,74,24,184,117,107,6,163,99,163,
104,249,164,9,69,69,69,77,49,82,32,22,75,128,37,161,42,182,205,38,147,18,
186,44,41,161,17,69,74,69,229,43,85,235,161,72,110,102,166,30,1,191,15,
103,7,7,222,73,79,99,181,105,108,202,206,170,87,43,96,187,125,7,121,121,
6,50,157,4,52,42,21,114,178,159,65,69,121,25,12,134,92,204,88,109,65,138,
84,217,209,222,209,249,141,70,173,218,27,13,5,199,187,122,122,223,32,123,
79,25,142,159,183,165,179,236,214,241,70,51,22,22,221,120,224,88,128,213,
58,131,156,237,219,176,22,12,34,24,10,91,7,134,134,26,208,223,63,160,100,
177,131,176,84,121,234,186,38,160,59,253,243,133,67,195,243,242,141,128,
44,127,113,221,41,255,58,242,147,124,170,179,83,62,209,210,124,113,243,
156,194,130,158,207,78,130,58,119,166,15,52,153,109,171,184,135,36,42,66,
18,226,223,213,151,61,95,255,65,101,14,206,78,241,88,137,83,240,90,175,
98,244,152,25,211,55,167,197,11,172,241,219,95,238,58,245,44,203,214,42,
33,50,157,241,114,146,100,18,106,57,1,65,20,46,190,190,43,175,78,17,127,
61,229,129,63,46,195,195,251,201,68,224,187,125,99,82,180,101,84,100,181,
154,242,27,168,36,141,223,230,30,94,74,101,216,58,90,5,1,44,233,44,75,194,
240,11,207,110,171,59,177,47,15,195,247,252,240,197,146,88,226,125,240,
56,239,92,155,235,109,48,91,108,169,147,147,235,122,244,143,115,104,219,
111,192,107,249,57,22,81,18,135,233,44,157,6,10,183,166,107,14,14,29,122,
145,116,230,96,95,137,99,209,27,192,162,115,110,140,235,173,111,220,222,
125,253,46,9,89,203,249,56,248,163,18,190,154,240,224,212,187,69,27,26,
154,216,83,44,18,80,56,55,237,71,48,33,227,17,207,97,201,101,31,243,245,
30,62,214,247,105,179,51,73,165,192,253,249,129,143,188,174,217,177,101,
47,135,64,76,198,224,31,62,200,68,147,194,154,234,16,37,127,97,196,207,
155,31,7,35,207,121,86,121,4,60,174,113,190,199,242,97,87,219,113,34,166,
113,83,85,136,45,251,222,243,47,159,174,153,98,118,87,23,7,19,241,220,69,
158,199,154,119,229,119,10,255,193,64,168,223,92,251,9,23,240,255,80,70,
158,185,185,14,252,43,192,0,141,58,185,202,150,159,74,140,0,0,0,0,73,69,
78,68,174,66,96,130};

static size_t xml_res_size_15 = 912;
static unsigned char xml_res_file_15[] = {
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,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,3,69,73,68,65,84,56,141,93,147,79,104,28,101,24,198,127,223,204,236,102,
103,19,155,77,54,113,147,138,137,201,166,77,107,76,76,178,105,66,91,108,
171,8,34,226,85,168,32,138,21,44,37,136,24,69,140,22,68,69,48,86,208,83,
200,205,131,20,196,91,17,170,54,82,234,33,45,228,143,208,54,45,146,52,33,
150,196,100,187,187,73,246,223,236,204,124,223,124,30,98,99,245,57,61,135,
135,247,133,247,125,126,130,255,105,105,168,179,71,133,173,211,134,197,
11,218,83,77,0,34,108,174,107,165,47,32,245,68,199,212,237,155,15,230,197,
125,51,223,213,21,166,86,143,155,17,251,100,237,83,71,170,162,157,73,195,
106,136,3,32,51,89,202,127,220,9,182,175,76,185,202,175,156,103,139,51,
93,243,243,222,238,128,203,39,78,88,181,78,230,183,135,146,201,222,248,
179,79,219,148,55,209,165,77,180,95,217,217,18,138,32,170,235,32,26,35,
51,121,217,41,221,89,154,91,104,185,121,252,165,31,80,22,128,93,200,156,
171,106,109,233,173,237,235,183,239,77,77,145,117,10,180,214,239,193,180,
76,0,148,220,102,37,183,64,60,186,135,186,190,148,237,57,126,95,235,114,
48,6,183,70,140,43,61,157,109,202,176,94,141,61,209,109,59,55,174,227,54,
63,70,251,240,40,203,233,34,110,182,132,155,45,177,156,46,210,62,60,138,
219,212,138,115,227,58,117,221,61,81,95,132,95,255,181,239,96,171,249,74,
211,222,79,99,201,142,163,150,244,13,63,151,165,229,212,105,234,134,142,
98,183,117,176,120,233,18,91,174,228,192,7,31,243,240,224,97,106,170,107,
216,158,252,5,173,5,68,170,67,229,123,91,134,121,178,33,49,209,208,209,
30,83,233,13,180,231,83,188,118,149,200,254,253,196,82,135,136,238,59,64,
227,177,103,104,76,29,162,244,251,44,107,159,127,66,80,241,80,21,15,179,
62,110,100,238,174,54,27,142,36,97,4,2,63,95,66,186,18,191,80,100,229,236,
40,217,153,105,26,83,3,52,166,6,200,206,78,243,231,217,15,241,243,69,164,
43,145,249,34,70,0,174,20,77,150,23,8,237,151,29,164,39,17,128,54,4,127,
57,30,113,21,236,254,90,42,205,202,118,145,38,64,4,26,13,8,167,130,27,8,
12,169,140,141,98,46,79,160,64,185,62,171,174,79,239,216,151,36,134,134,
40,76,207,80,152,158,33,49,56,200,147,95,140,177,234,73,148,235,19,40,40,
229,242,200,192,88,55,159,223,147,104,15,105,61,16,181,76,67,57,21,186,
191,58,71,226,248,49,182,175,94,99,241,237,17,114,23,127,38,218,245,56,
13,71,14,83,159,236,32,251,227,69,68,149,77,58,95,81,249,146,251,173,249,
92,253,222,91,133,178,60,21,171,182,35,218,113,209,91,155,152,53,213,44,
188,245,30,178,84,70,85,60,114,63,77,98,239,75,146,62,255,61,165,149,53,
252,176,205,98,166,152,47,251,230,107,2,224,155,71,250,191,142,134,66,111,
60,90,99,87,83,41,35,2,133,64,239,246,92,3,26,129,54,76,136,68,185,91,168,
20,11,190,63,241,206,218,236,187,22,64,243,106,114,100,57,177,52,80,150,
78,95,162,202,142,90,58,0,173,32,248,231,144,134,1,194,68,106,131,141,173,
114,185,226,201,185,182,116,242,125,152,253,23,166,9,82,161,245,70,198,
5,226,229,26,163,42,108,27,166,105,137,29,92,164,214,56,74,170,130,118,
93,33,196,119,137,180,30,126,147,89,255,63,52,222,215,71,241,254,131,58,
176,206,32,120,81,235,96,7,103,97,172,11,29,92,192,8,198,63,203,206,221,
126,48,255,55,47,73,136,107,100,21,126,183,0,0,0,0,73,69,78,68,174,66,96,
130};

static size_t xml_res_size_16 = 1453;
static unsigned char xml_res_file_16[] = {
137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,24,0,0,0,24,8,6,0,0,
0,224,119,61,248,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,
0,0,5,98,73,68,65,84,72,137,181,150,91,108,28,87,25,199,127,231,204,236,
206,122,215,113,214,187,142,169,227,68,77,210,96,114,33,110,147,70,17,69,
189,68,66,240,134,80,94,120,138,120,42,132,162,34,80,45,66,171,86,136,242,
20,181,72,69,173,32,70,180,47,80,158,144,138,4,188,20,33,17,104,145,42,
65,113,91,53,73,107,59,190,224,96,135,218,123,241,206,122,118,230,92,121,
216,245,42,86,68,17,15,28,233,232,27,233,124,103,126,223,109,254,26,248,
63,47,241,113,135,203,15,158,24,214,54,251,162,136,242,231,133,240,199,
157,178,35,0,50,31,108,128,120,223,165,234,151,65,164,126,115,240,202,82,
243,127,2,44,158,61,80,72,84,241,73,25,200,169,226,241,99,178,116,226,104,
49,218,251,9,130,93,67,0,216,184,133,90,189,69,251,189,235,73,114,237,186,
115,206,63,95,204,109,61,119,240,202,82,250,95,1,239,60,48,49,30,144,251,
67,105,98,226,238,242,195,15,14,200,60,176,85,199,103,9,56,213,117,146,
121,68,84,132,82,5,167,160,249,167,55,58,91,115,115,139,90,154,207,159,
250,203,135,171,255,17,240,247,147,135,247,248,48,186,58,242,217,207,84,
6,63,245,201,192,172,46,130,74,16,57,137,8,36,200,158,187,243,120,235,240,
218,65,84,34,55,118,128,214,7,115,182,241,214,91,27,94,103,39,78,205,204,
175,223,1,248,227,217,179,225,96,123,99,166,122,255,169,163,165,125,227,
129,94,158,67,72,16,185,0,17,74,68,32,64,244,220,189,199,91,143,55,14,175,
45,222,65,238,192,4,237,149,155,166,246,183,183,175,46,29,186,122,255,151,
127,133,5,8,183,1,249,205,143,190,145,223,187,255,208,192,216,120,144,94,
191,6,56,172,128,149,164,195,190,221,37,10,185,112,71,6,169,54,220,220,
220,98,127,113,128,192,131,189,118,149,226,196,177,48,30,187,117,120,255,
188,248,26,188,127,25,64,2,188,62,57,89,50,4,223,43,31,59,82,236,204,126,
128,201,20,78,91,214,124,192,241,239,63,199,90,84,38,137,51,108,91,97,219,
138,36,206,88,139,202,221,51,31,224,180,197,100,138,206,236,135,84,142,
28,41,41,33,127,240,250,228,100,169,15,16,206,157,43,142,142,70,46,233,
96,90,49,78,91,172,182,220,247,212,179,84,39,79,114,250,210,11,172,13,150,
73,82,77,146,106,214,6,203,156,190,244,2,213,201,147,220,247,212,179,88,
109,187,144,86,140,237,164,20,70,246,20,164,183,95,234,3,156,228,124,161,
186,103,80,111,108,96,181,195,246,0,235,151,95,194,52,27,68,229,97,206,
60,255,34,183,118,13,115,107,87,247,57,42,15,99,54,155,172,95,126,169,239,
111,181,69,111,108,48,48,178,103,208,57,121,190,223,3,99,196,100,24,21,
48,171,53,188,177,8,41,16,66,144,46,44,176,242,221,41,246,95,250,33,209,
112,133,7,126,244,227,110,191,118,151,49,205,38,43,79,78,161,150,151,240,
206,227,189,239,218,205,152,220,216,56,202,139,123,251,25,40,75,69,56,143,
233,164,59,162,177,218,210,89,88,100,126,234,219,168,102,147,252,238,50,
249,221,101,84,179,201,252,212,183,232,220,88,184,195,223,36,41,194,131,
182,190,218,207,64,59,129,85,26,171,45,2,143,144,221,145,20,66,160,188,
163,222,78,56,120,219,247,226,129,149,56,161,146,42,242,66,226,189,239,
142,174,243,120,4,54,83,104,215,157,56,9,96,157,168,167,113,130,243,162,
31,137,211,150,78,166,217,24,25,229,161,159,76,19,149,187,101,49,205,38,
81,185,204,67,211,63,101,99,100,148,78,166,251,67,97,181,197,121,65,26,
39,88,47,106,125,128,113,188,215,110,182,65,200,174,163,234,58,183,238,
26,227,145,151,95,166,48,50,130,174,55,152,187,240,24,115,23,30,67,215,
27,20,42,21,30,121,229,21,90,119,141,237,184,131,144,180,27,49,198,137,
119,250,128,212,137,95,124,212,104,183,189,204,225,122,209,91,101,57,243,
204,211,20,170,85,116,189,206,236,163,23,216,154,157,103,107,118,158,217,
71,47,160,235,117,10,149,10,103,158,121,26,171,108,255,158,151,57,214,155,
91,113,230,196,171,0,1,192,195,133,209,5,107,236,227,195,197,66,145,76,
225,141,197,59,207,230,27,111,50,248,233,227,204,63,113,145,100,238,70,
87,127,172,67,213,234,52,255,252,38,3,247,220,195,220,19,23,49,237,4,111,
29,78,4,168,48,98,185,214,142,49,193,215,127,23,175,233,190,22,189,184,
239,212,227,67,133,220,165,187,135,6,74,182,213,66,122,135,20,32,241,61,
9,242,125,225,242,61,25,243,30,28,2,231,193,9,73,48,52,196,242,102,39,142,
149,186,248,205,149,153,233,29,90,84,191,57,52,109,247,182,190,26,136,220,
209,106,52,148,179,73,130,196,33,187,175,2,193,78,128,239,34,29,224,144,
4,197,34,181,150,86,245,142,153,223,183,122,248,103,48,179,83,77,129,240,
43,195,135,246,30,139,202,127,173,68,3,149,74,62,23,98,20,88,135,0,132,
240,220,190,188,23,93,80,32,33,204,83,83,218,52,178,180,118,45,107,156,
249,121,99,97,21,48,219,61,16,64,1,40,188,155,54,188,115,226,183,85,49,
240,185,45,227,139,82,228,115,78,132,24,31,160,93,128,118,178,107,125,136,
38,68,203,144,142,11,248,103,154,117,154,153,90,186,210,94,59,247,235,248,
31,245,222,240,8,192,110,3,194,30,44,92,212,113,58,107,218,175,141,7,37,
148,113,147,109,227,180,246,65,206,56,137,38,68,249,128,212,65,236,60,235,
42,75,106,58,51,255,50,157,233,87,227,27,223,121,55,173,53,0,123,251,222,
81,34,32,15,228,122,59,188,55,95,169,158,46,142,125,161,42,10,231,2,33,
39,132,247,195,0,94,136,134,241,110,182,97,211,215,222,78,215,126,63,163,
234,245,94,73,116,111,171,237,18,125,220,95,133,236,101,181,109,5,59,251,
236,123,81,186,219,236,29,235,223,142,0,30,212,75,173,79,236,0,0,0,0,73,
69,78,68,174,66,96,130};

static size_t xml_res_size_17 = 112;
static unsigned char xml_res_file_17[] = {
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,14,196,0,0,14,196,1,149,43,14,27,0,0,0,18,73,68,65,84,56,
141,99,96,24,5,163,96,20,140,2,8,0,0,4,16,0,1,127,77,120,142,0,0,0,0,73,
69,78,68,174,66,96,130};

static size_t xml_res_size_18 = 661;
static unsigned char xml_res_file_18[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,2,55,73,68,65,84,120,218,156,83,75,104,83,65,20,61,239,101,232,198,
22,178,16,55,181,10,102,81,16,84,48,130,31,40,77,164,130,93,248,169,221,
9,93,84,137,72,173,154,130,213,144,162,221,24,172,20,147,152,250,217,106,
10,34,180,42,85,196,85,5,21,17,23,34,136,186,80,16,164,174,92,104,234,170,
73,58,51,222,123,231,189,20,131,32,120,201,229,101,134,123,206,220,115,
207,140,42,149,74,63,181,94,142,90,99,33,225,81,90,254,5,235,230,176,174,
198,243,124,40,165,42,138,193,233,244,8,234,75,75,136,248,14,191,108,128,
186,54,48,77,28,214,134,12,64,91,219,42,20,10,133,168,50,198,200,70,238,
222,27,60,255,248,157,169,145,216,184,6,71,186,58,64,28,82,110,9,201,201,
181,134,89,40,91,91,99,178,86,33,251,195,151,159,49,57,210,135,15,223,126,
161,60,251,20,39,122,98,200,100,179,232,78,36,168,144,193,26,137,100,143,
128,152,67,91,45,56,21,74,237,141,119,96,236,218,35,57,105,239,214,181,
240,169,147,92,238,146,200,8,79,183,220,129,231,57,128,107,28,202,6,226,
50,253,113,172,254,113,3,195,67,195,160,185,80,251,22,138,178,174,93,194,
231,1,249,240,155,134,43,18,184,216,80,65,77,123,240,91,90,80,152,251,132,
39,111,23,100,96,123,54,183,227,100,111,167,12,86,228,7,7,122,65,39,138,
183,120,17,137,40,241,103,234,106,17,51,95,219,49,113,106,63,222,47,44,
226,246,236,60,206,30,220,132,99,199,135,104,30,73,194,26,145,51,56,120,
52,144,96,17,16,68,168,19,131,244,153,44,22,167,95,32,83,124,32,5,251,182,
111,144,57,76,93,191,233,220,88,241,115,69,2,119,163,232,18,56,75,13,198,
7,118,80,238,10,204,215,168,85,235,174,109,119,195,26,237,51,97,195,70,
186,85,112,219,62,174,204,189,195,227,215,95,156,59,219,214,99,180,111,
11,34,225,12,130,211,67,51,26,4,204,202,94,79,78,92,196,221,133,117,184,
124,250,0,205,160,130,91,51,243,24,61,20,39,205,3,72,38,119,187,203,68,
153,74,165,254,36,224,56,127,97,92,190,181,59,175,112,174,120,95,254,247,
119,117,202,183,92,158,254,235,211,80,62,251,219,20,99,135,119,74,254,43,
24,171,170,213,234,179,124,62,223,173,181,110,60,70,150,19,106,12,117,55,
191,77,118,141,177,92,22,163,140,226,255,162,242,91,128,1,0,27,36,18,42,
181,142,224,95,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_19 = 632;
static unsigned char xml_res_file_19[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,2,26,73,68,65,84,120,218,116,82,93,111,18,81,16,61,187,123,119,97,83,
67,13,141,124,36,190,152,52,254,1,215,164,69,72,124,111,136,105,73,211,
216,212,87,252,77,250,220,96,26,149,70,105,125,208,190,181,96,31,202,239,
96,139,164,148,62,176,91,96,185,206,92,216,5,42,78,50,236,229,206,204,153,
51,231,142,246,173,86,251,32,165,44,107,154,246,81,215,245,247,152,179,
241,120,12,138,73,186,63,164,248,59,44,49,157,146,202,111,138,69,78,46,
83,238,66,241,104,52,146,133,92,14,65,16,28,204,199,22,0,56,112,115,211,
197,195,226,225,112,40,95,109,108,32,185,182,198,0,42,30,250,188,9,254,
49,132,185,88,76,157,243,212,57,110,219,234,110,48,24,132,163,128,70,129,
97,24,26,159,103,0,134,62,163,29,4,50,191,185,137,149,149,71,184,237,245,
176,154,72,224,237,222,94,212,160,221,110,227,188,94,151,166,105,42,16,
85,105,208,33,164,157,39,218,137,196,42,250,253,62,76,33,224,186,215,112,
91,215,170,248,176,82,65,42,149,2,179,99,150,92,163,0,116,98,16,208,31,
22,236,113,50,137,190,215,167,177,12,8,83,64,88,19,103,163,150,248,211,
233,32,157,78,99,42,174,140,70,32,56,164,51,25,244,238,238,120,198,5,161,
66,225,158,175,175,227,231,217,47,202,149,56,216,223,87,247,130,116,133,
208,133,18,199,117,91,72,61,201,192,243,189,127,212,102,33,95,58,142,242,
72,112,202,161,214,204,141,198,32,122,23,141,223,36,146,75,2,218,16,52,
63,51,153,184,192,56,144,240,253,123,229,247,254,96,182,7,209,129,0,118,
75,37,167,126,121,137,86,203,69,60,30,131,101,153,136,145,219,118,140,158,
52,166,238,216,99,113,43,170,17,243,52,105,173,155,180,149,206,151,106,
245,42,71,175,145,205,102,213,253,167,163,35,208,179,17,83,109,34,230,84,
208,219,110,183,186,0,192,58,212,78,79,155,197,173,45,231,51,129,240,62,
100,72,88,211,178,176,187,179,227,44,217,228,142,208,66,212,233,151,45,
4,249,122,124,124,245,186,80,80,58,124,63,57,105,206,231,68,163,211,102,
85,136,58,111,88,229,33,72,105,123,219,57,111,52,224,123,222,15,139,88,
176,47,179,167,228,47,166,223,101,198,177,103,255,137,225,175,0,3,0,246,
136,1,58,118,156,187,11,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_20 = 606;
static unsigned char xml_res_file_20[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,2,0,73,68,65,84,120,218,116,83,221,106,19,65,20,254,50,51,155,221,244,
162,53,9,36,183,10,197,39,88,161,173,245,17,138,116,171,20,75,110,138,208,
7,240,33,124,7,189,85,122,37,129,24,234,11,104,147,160,205,67,84,35,187,
5,155,164,86,214,152,191,245,156,153,140,102,211,244,192,225,204,156,223,
239,156,51,163,234,39,39,88,70,73,146,188,153,78,167,149,12,145,16,34,101,
35,253,43,178,31,145,233,181,184,37,24,147,201,164,242,104,107,11,227,241,
56,161,128,148,141,238,71,143,119,118,180,20,139,129,150,41,1,10,197,34,
30,110,108,96,52,26,221,72,210,237,246,180,20,115,176,116,53,118,30,14,
135,204,90,239,173,172,96,155,144,140,22,144,72,229,104,169,108,48,59,48,
228,82,169,148,106,231,250,250,23,238,172,173,97,123,115,19,159,154,205,
68,73,153,209,9,164,169,45,108,48,59,112,240,219,227,99,109,136,194,11,
68,209,5,28,165,16,199,49,86,87,77,18,70,201,208,229,108,176,130,122,213,
149,203,229,50,190,126,235,192,78,92,101,149,97,71,17,92,137,248,119,140,
124,161,128,7,190,175,231,99,17,40,206,102,43,211,190,112,127,125,221,244,
40,37,104,77,169,118,6,131,1,242,249,188,25,30,217,117,130,41,93,152,42,
7,7,255,28,121,128,206,108,72,150,56,89,46,151,67,231,123,71,159,149,144,
160,125,153,33,50,253,25,12,181,194,236,137,17,40,115,152,5,123,94,150,
102,18,225,243,217,23,141,20,25,99,22,182,103,151,28,60,207,53,156,115,
169,154,11,55,235,32,75,204,186,48,140,112,218,108,225,105,176,231,139,
185,214,84,191,215,171,86,107,181,128,150,108,235,243,75,225,199,131,103,
251,251,250,26,134,33,26,173,22,158,4,129,95,171,215,219,180,137,255,9,
158,31,30,190,32,249,114,241,57,191,171,86,207,244,58,9,246,105,139,43,
7,62,253,155,118,146,36,41,63,69,202,115,146,231,75,254,2,186,151,151,186,
178,13,158,31,168,149,75,63,19,27,126,94,93,125,248,216,104,96,111,119,
247,70,112,191,223,127,79,173,160,71,237,103,112,59,221,35,46,16,183,151,
216,238,18,23,137,127,252,21,96,0,95,238,23,219,144,76,145,82,0,0,0,0,73,
69,78,68,174,66,96,130};

static size_t xml_res_size_21 = 510;
static unsigned char xml_res_file_21[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,160,73,68,65,84,120,218,140,83,203,78,194,80,16,29,218,91,82,88,0,
1,3,75,99,66,252,1,93,0,226,71,128,26,34,225,239,52,172,180,129,24,252,
1,21,88,232,71,160,6,218,5,34,98,106,31,208,235,204,13,69,222,56,201,244,
145,233,57,103,230,204,109,224,174,209,128,109,193,57,191,242,60,175,18,
192,144,36,105,165,46,237,0,195,100,50,169,156,230,114,48,30,143,57,18,
109,39,32,192,114,34,1,196,19,9,56,201,100,192,117,221,21,146,25,1,21,72,
133,62,178,29,135,219,182,205,29,188,99,138,186,26,14,67,30,59,113,151,
58,97,62,152,10,212,106,50,153,92,59,206,104,244,13,177,104,20,242,217,
44,60,182,90,92,97,76,120,34,249,96,42,16,248,186,90,21,0,93,55,22,18,1,
96,154,38,68,34,72,66,227,76,59,145,112,70,161,156,74,165,224,245,237,29,
124,167,153,194,68,42,65,69,36,61,203,76,6,243,199,132,88,60,46,58,33,44,
35,163,124,101,236,9,14,211,105,65,32,203,50,224,230,214,142,99,89,150,
16,36,44,243,240,66,81,41,151,103,31,144,113,10,83,214,130,137,52,164,134,
192,48,12,241,204,252,130,109,57,128,139,251,115,151,177,133,245,250,96,
85,13,130,222,211,225,169,221,134,243,98,241,24,110,107,53,190,43,38,104,
24,173,152,162,219,237,242,27,77,35,198,35,58,197,236,115,48,208,180,122,
189,136,150,206,233,207,164,233,240,192,101,169,36,94,123,189,30,52,167,
202,8,126,17,93,97,238,99,238,109,58,206,168,246,124,86,40,224,42,117,218,
63,92,204,129,197,168,248,210,193,123,103,203,191,0,31,253,190,80,94,6,
239,252,153,200,180,175,225,240,254,161,217,4,236,98,5,252,223,56,32,195,
54,21,127,5,24,0,40,187,47,107,158,169,190,113,0,0,0,0,73,69,78,68,174,
66,96,130};

static size_t xml_res_size_22 = 543;
static unsigned char xml_res_file_22[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,193,73,68,65,84,120,218,156,83,93,75,2,81,16,61,187,123,87,18,67,
67,203,143,199,64,250,3,110,80,146,208,123,4,101,132,20,245,239,194,136,
242,3,162,30,170,151,40,125,170,191,33,106,66,217,195,238,230,199,222,102,
46,90,169,165,208,192,129,203,229,158,153,51,103,230,138,203,171,43,140,
135,231,121,144,20,186,174,159,104,154,118,140,41,161,255,70,238,245,122,
50,147,78,163,223,239,31,81,158,105,124,136,113,114,183,219,149,27,235,
235,8,71,34,156,0,164,98,130,68,170,38,19,40,50,85,222,160,202,115,126,
191,186,235,116,58,170,149,1,11,58,129,201,134,97,104,195,196,98,132,76,
149,3,129,121,188,181,219,8,5,131,56,200,229,38,170,55,155,77,60,84,42,
210,52,77,149,68,255,34,175,173,33,24,12,193,182,109,152,66,160,94,111,
140,128,227,36,159,71,52,26,5,171,100,14,115,117,234,83,85,94,8,135,97,
59,54,12,97,64,152,2,166,207,84,224,51,67,117,65,21,95,90,45,196,98,49,
12,76,150,130,91,228,139,246,251,59,247,246,171,211,67,27,86,146,73,220,
220,221,66,122,18,71,135,135,234,94,176,41,141,70,3,75,139,81,56,174,131,
191,198,198,134,174,90,150,194,151,241,244,86,207,238,236,88,143,213,42,
153,83,39,3,253,16,212,63,43,97,240,121,8,143,170,186,238,135,194,135,219,
249,206,60,216,196,212,69,177,40,107,181,26,79,77,242,34,245,9,179,162,
80,46,75,109,184,202,219,91,91,156,228,41,77,211,72,36,18,234,238,244,236,
12,52,46,181,3,35,139,52,48,244,237,245,181,40,126,40,121,166,36,214,57,
37,225,169,196,227,113,154,130,15,251,217,172,53,101,147,91,218,248,103,
98,37,133,82,233,105,51,147,193,125,165,2,65,91,167,141,41,152,250,153,
88,201,222,238,174,245,64,198,186,142,115,237,35,21,140,255,68,138,176,
60,235,209,167,0,3,0,48,220,9,202,212,255,83,185,0,0,0,0,73,69,78,68,174,
66,96,130};

static size_t xml_res_size_23 = 520;
static unsigned char xml_res_file_23[] = {
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,25,116,69,88,116,83,111,102,116,119,97,114,101,0,
65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,
0,0,1,170,73,68,65,84,120,218,156,83,61,75,3,65,16,125,183,31,151,128,77,
10,5,65,76,10,107,69,3,90,104,225,71,145,70,208,66,34,86,90,136,165,133,
133,8,254,3,75,107,43,203,68,82,196,96,163,32,166,177,20,255,66,98,171,
24,136,18,149,187,91,119,46,123,123,185,24,4,29,56,238,118,239,205,155,
247,102,118,157,106,173,246,170,2,63,19,40,133,56,28,12,142,24,195,28,7,
14,227,45,65,201,75,133,53,232,183,206,99,6,54,152,192,137,8,84,64,201,
184,187,190,204,8,170,76,201,87,143,13,136,86,3,206,251,51,146,106,144,
168,170,134,134,225,101,114,88,157,206,133,56,17,253,76,75,253,217,121,
193,70,113,19,191,69,165,114,1,49,50,97,215,150,32,37,24,62,130,110,229,
102,243,9,66,175,169,34,5,85,242,188,0,217,236,184,86,171,144,22,44,73,
160,66,2,142,142,241,152,74,75,156,85,31,32,56,15,215,158,239,99,111,61,
111,250,163,66,172,234,87,32,37,179,155,146,75,28,108,45,104,2,102,8,2,
124,126,121,118,14,132,77,90,208,18,93,33,236,148,164,148,56,45,223,39,
20,236,23,231,237,36,187,88,101,8,148,177,192,99,5,92,75,60,218,89,6,55,
10,252,62,5,22,171,122,155,40,57,98,59,18,39,231,183,186,145,70,129,231,
227,112,123,5,131,176,182,137,46,177,26,89,92,31,146,227,221,66,207,137,
84,8,124,101,220,170,46,54,217,3,242,197,224,152,177,49,206,127,156,65,
102,182,8,67,216,136,65,68,69,92,221,217,209,177,28,74,229,146,245,215,
199,17,66,9,227,70,83,208,27,130,24,169,98,74,191,39,103,102,49,149,159,
251,245,50,145,5,122,24,235,42,22,237,246,91,189,126,83,91,84,127,188,141,
148,76,185,132,164,131,157,193,255,162,245,45,192,0,22,90,161,83,232,9,
252,196,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_24 = 767;
static unsigned char xml_res_file_24[] = {
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,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,2,180,73,68,65,84,56,141,165,147,203,75,85,81,20,198,191,181,247,62,231,
158,115,245,234,85,67,123,75,161,209,139,162,66,170,219,160,36,162,6,17,
61,13,154,52,40,26,68,17,221,254,129,134,61,40,131,104,30,17,5,154,52,49,
162,129,74,15,172,236,13,162,81,73,86,134,216,75,189,118,206,61,143,253,
104,208,213,94,206,218,240,77,54,123,125,124,123,253,214,2,254,243,208,
223,23,91,27,59,210,2,137,195,130,209,30,169,205,28,3,112,78,248,204,64,
173,74,155,83,205,217,204,155,157,141,247,215,25,99,58,90,178,25,250,195,
96,199,185,206,141,2,212,180,96,102,169,93,59,45,229,164,147,2,140,8,223,
67,137,119,159,60,253,172,127,36,8,165,234,72,88,188,62,136,84,178,37,155,
33,49,94,188,253,204,189,122,71,136,230,245,139,42,83,142,197,145,243,99,
228,67,5,0,80,218,96,74,137,195,54,47,159,158,124,240,234,235,134,186,218,
114,251,122,215,0,0,64,0,192,174,179,157,46,99,116,117,117,77,69,202,11,
21,70,253,24,101,69,22,62,143,69,144,74,163,34,101,67,42,141,17,47,70,93,
77,185,13,243,43,245,207,4,12,135,166,149,185,37,145,212,240,67,133,164,
205,208,214,61,228,135,74,117,195,208,71,165,205,182,185,85,197,178,166,
178,88,244,13,121,152,90,154,152,48,96,0,0,131,125,105,215,114,191,140,
134,224,68,120,252,118,120,44,31,170,221,77,71,50,43,165,82,231,25,81,148,
178,133,200,249,18,73,139,35,231,203,63,19,104,131,106,169,12,2,169,241,
125,52,64,164,244,147,107,199,50,173,0,64,196,218,181,49,120,241,97,100,
82,140,162,192,146,231,35,133,48,50,80,208,32,152,9,58,45,217,204,63,168,
39,49,160,65,47,84,179,141,6,44,193,0,208,178,93,103,59,215,54,103,51,183,
1,96,203,201,123,41,198,173,205,181,85,98,184,40,41,186,143,239,88,58,48,
110,64,0,176,179,241,254,9,71,136,163,174,197,109,24,64,25,141,177,32,202,
107,45,123,180,214,62,49,177,176,56,97,125,40,117,197,195,132,45,122,52,
244,155,85,206,235,91,13,13,13,74,0,128,202,123,167,3,215,61,96,177,132,
205,136,64,32,164,28,219,149,202,90,1,0,156,17,24,81,133,31,202,89,126,
144,239,31,246,226,231,79,243,94,59,0,197,1,224,101,219,37,167,114,94,221,
87,145,154,82,111,113,110,141,155,112,246,83,84,24,88,109,40,153,139,84,
122,232,125,239,149,59,167,246,247,0,8,120,225,43,78,127,215,141,143,101,
213,139,191,89,165,149,107,140,49,134,136,113,42,172,138,50,26,65,28,199,
126,28,71,95,250,158,157,185,123,225,96,51,0,31,64,240,123,135,75,0,164,
103,45,89,95,61,127,211,222,189,69,229,51,54,8,43,89,165,141,230,90,133,
131,222,183,193,182,222,246,203,23,7,30,221,124,11,96,4,64,110,162,137,
147,144,73,20,52,190,43,18,64,88,144,252,253,241,15,119,132,42,131,87,4,
55,36,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_25 = 826;
static unsigned char xml_res_file_25[] = {
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,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,
69,7,221,11,4,11,40,12,194,120,14,119,0,0,0,29,116,69,88,116,67,111,109,
109,101,110,116,0,67,114,101,97,116,101,100,32,119,105,116,104,32,84,104,
101,32,71,73,77,80,239,100,37,110,0,0,2,158,73,68,65,84,56,203,181,83,107,
72,83,97,24,126,206,57,243,232,116,186,77,157,211,38,165,145,121,69,83,
180,4,77,165,44,74,169,36,10,53,5,157,148,210,143,76,11,81,131,46,118,67,
8,146,4,9,162,140,200,97,25,5,5,101,81,73,216,76,88,48,210,146,57,231,253,
50,53,243,104,234,153,206,109,126,253,82,114,37,249,167,247,215,123,123,
30,94,120,159,7,248,95,17,158,233,159,123,245,153,242,216,191,246,104,0,
40,42,57,179,210,216,3,224,212,157,67,23,211,146,183,215,42,100,146,68,
0,72,139,244,89,147,128,90,78,138,75,138,36,82,17,53,51,97,157,37,13,45,
170,143,170,235,85,113,26,189,218,118,46,167,78,208,92,17,79,171,154,134,
147,10,143,43,149,54,174,27,15,159,107,79,223,104,234,224,0,64,176,76,224,
72,243,51,128,43,100,140,121,163,51,228,129,111,52,205,68,225,47,100,18,
242,131,198,188,60,194,61,69,230,110,134,26,109,71,103,79,223,59,226,230,
190,240,215,115,46,156,207,2,0,52,180,86,253,108,31,171,37,186,239,247,
72,86,129,40,61,32,64,104,75,222,0,178,67,76,63,181,199,8,126,47,46,95,
81,1,0,162,2,54,185,10,105,130,142,254,111,152,53,121,133,149,237,243,51,
133,120,123,138,12,157,234,93,102,173,209,205,97,30,244,56,135,188,224,
132,24,103,102,5,77,0,84,0,197,169,178,74,245,236,120,188,17,115,144,203,
124,137,148,229,19,109,95,70,216,112,95,41,100,14,237,14,174,188,245,82,
163,22,166,145,121,180,246,232,141,205,2,0,40,216,139,66,58,69,216,101,
8,181,230,228,39,69,100,240,131,109,228,117,207,4,245,53,218,74,201,66,
35,225,38,218,140,238,23,15,96,182,10,232,214,105,119,102,116,137,179,172,
188,241,196,78,182,188,119,24,91,230,134,108,141,5,177,108,134,192,201,
149,136,156,64,29,22,79,34,170,237,21,198,7,166,160,170,185,223,199,58,
77,163,197,48,103,109,208,112,230,242,179,73,43,135,51,218,65,155,186,215,
70,191,77,9,97,116,172,163,100,129,90,92,140,144,40,18,136,163,155,156,
154,52,104,112,75,215,103,50,143,114,143,39,141,8,121,162,37,215,210,143,
132,145,234,187,154,193,85,66,2,183,100,245,11,148,62,170,108,90,84,126,
232,231,45,122,206,66,101,223,172,247,168,213,155,247,7,71,110,141,136,
73,141,150,40,124,188,99,47,228,198,229,25,102,134,122,214,84,85,242,54,
151,154,147,209,162,193,221,65,66,169,253,172,244,32,216,234,236,128,37,
214,215,129,74,205,148,175,150,242,114,136,37,46,117,125,188,211,129,247,
3,243,211,246,4,83,102,79,49,207,11,110,47,14,91,200,203,250,241,63,117,
16,21,200,32,60,70,242,185,107,202,69,4,221,15,98,79,208,63,98,34,159,38,
134,203,214,229,196,163,165,201,235,118,237,47,56,108,5,185,207,50,199,
127,0,0,0,0,73,69,78,68,174,66,96,130};

static size_t xml_res_size_26 = 912;
static unsigned char xml_res_file_26[] = {
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,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,
0,3,69,73,68,65,84,56,141,93,147,79,104,28,101,24,198,127,223,204,236,102,
103,19,155,77,54,113,147,138,137,201,166,77,107,76,76,178,105,66,91,108,
171,8,34,226,85,168,32,138,21,44,37,136,24,69,140,22,68,69,48,86,208,83,
200,205,131,20,196,91,17,170,54,82,234,33,45,228,143,208,54,45,146,52,33,
150,196,100,187,187,73,246,223,236,204,124,223,124,30,98,99,245,57,61,135,
135,247,133,247,125,126,130,255,105,105,168,179,71,133,173,211,134,197,
11,218,83,77,0,34,108,174,107,165,47,32,245,68,199,212,237,155,15,230,197,
125,51,223,213,21,166,86,143,155,17,251,100,237,83,71,170,162,157,73,195,
106,136,3,32,51,89,202,127,220,9,182,175,76,185,202,175,156,103,139,51,
93,243,243,222,238,128,203,39,78,88,181,78,230,183,135,146,201,222,248,
179,79,219,148,55,209,165,77,180,95,217,217,18,138,32,170,235,32,26,35,
51,121,217,41,221,89,154,91,104,185,121,252,165,31,80,22,128,93,200,156,
171,106,109,233,173,237,235,183,239,77,77,145,117,10,180,214,239,193,180,
76,0,148,220,102,37,183,64,60,186,135,186,190,148,237,57,126,95,235,114,
48,6,183,70,140,43,61,157,109,202,176,94,141,61,209,109,59,55,174,227,54,
63,70,251,240,40,203,233,34,110,182,132,155,45,177,156,46,210,62,60,138,
219,212,138,115,227,58,117,221,61,81,95,132,95,255,181,239,96,171,249,74,
211,222,79,99,201,142,163,150,244,13,63,151,165,229,212,105,234,134,142,
98,183,117,176,120,233,18,91,174,228,192,7,31,243,240,224,97,106,170,107,
216,158,252,5,173,5,68,170,67,229,123,91,134,121,178,33,49,209,208,209,
30,83,233,13,180,231,83,188,118,149,200,254,253,196,82,135,136,238,59,64,
227,177,103,104,76,29,162,244,251,44,107,159,127,66,80,241,80,21,15,179,
62,110,100,238,174,54,27,142,36,97,4,2,63,95,66,186,18,191,80,100,229,236,
40,217,153,105,26,83,3,52,166,6,200,206,78,243,231,217,15,241,243,69,164,
43,145,249,34,70,0,174,20,77,150,23,8,237,151,29,164,39,17,128,54,4,127,
57,30,113,21,236,254,90,42,205,202,118,145,38,64,4,26,13,8,167,130,27,8,
12,169,140,141,98,46,79,160,64,185,62,171,174,79,239,216,151,36,134,134,
40,76,207,80,152,158,33,49,56,200,147,95,140,177,234,73,148,235,19,40,40,
229,242,200,192,88,55,159,223,147,104,15,105,61,16,181,76,67,57,21,186,
191,58,71,226,248,49,182,175,94,99,241,237,17,114,23,127,38,218,245,56,
13,71,14,83,159,236,32,251,227,69,68,149,77,58,95,81,249,146,251,173,249,
92,253,222,91,133,178,60,21,171,182,35,218,113,209,91,155,152,53,213,44,
188,245,30,178,84,70,85,60,114,63,77,98,239,75,146,62,255,61,165,149,53,
252,176,205,98,166,152,47,251,230,107,2,224,155,71,250,191,142,134,66,111,
60,90,99,87,83,41,35,2,133,64,239,246,92,3,26,129,54,76,136,68,185,91,168,
20,11,190,63,241,206,218,236,187,22,64,243,106,114,100,57,177,52,80,150,
78,95,162,202,142,90,58,0,173,32,248,231,144,134,1,194,68,106,131,141,173,
114,185,226,201,185,182,116,242,125,152,253,23,166,9,82,161,245,70,198,
5,226,229,26,163,42,108,27,166,105,137,29,92,164,214,56,74,170,130,118,
93,33,196,119,137,180,30,126,147,89,255,63,52,222,215,71,241,254,131,58,
176,206,32,120,81,235,96,7,103,97,172,11,29,92,192,8,198,63,203,206,221,
126,48,255,55,47,73,136,107,100,21,126,183,0,0,0,0,73,69,78,68,174,66,96,
130};

static size_t xml_res_size_27 = 3291;
static unsigned char xml_res_file_27[] = {
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,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,97,114,114,111,119,95,100,111,119,110,34,62,109,101,109,99,104,101,99,
107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,
115,95,49,54,95,97,114,114,111,119,95,100,111,119,110,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,97,114,114,111,119,95,117,112,34,62,109,101,109,99,104,101,99,107,117,
105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,
49,54,95,97,114,114,111,119,95,117,112,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,98,114,111,
111,109,34,62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,
112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,95,98,114,111,111,
109,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,104,101,99,107,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,49,54,95,99,104,101,99,107,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,111,103,34,
62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,
99,112,112,36,46,46,95,99,111,100,101,108,105,116,101,45,105,99,111,110,
115,45,102,114,101,115,104,45,102,97,114,109,95,116,111,111,108,98,97,114,
115,95,49,54,95,101,120,116,101,114,110,97,108,45,116,111,111,108,115,95,
99,111,103,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,111,99,117,109,101,110,116,95,105,109,
112,111,114,116,34,62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,
109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,95,100,111,
99,117,109,101,110,116,95,105,109,112,111,114,116,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,97,110,100,34,62,109,101,109,99,104,101,99,107,117,105,95,98,
105,116,109,97,112,115,46,99,112,112,36,46,46,95,76,105,116,101,69,100,
105,116,111,114,95,114,101,115,95,101,120,112,97,110,100,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,108,105,115,116,34,62,109,101,109,99,104,101,99,107,117,105,95,98,
105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,95,
108,105,115,116,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,101,109,99,104,101,99,107,95,
97,117,120,105,108,105,97,114,121,34,62,109,101,109,99,104,101,99,107,117,
105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,
49,54,95,97,117,120,105,108,105,97,114,121,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,101,
109,99,104,101,99,107,95,99,104,101,99,107,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,49,54,95,99,104,101,99,107,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,101,109,99,
104,101,99,107,95,99,104,101,99,107,95,50,52,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,50,52,95,99,104,101,99,107,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,101,109,99,
104,101,99,107,95,99,117,114,114,101,110,116,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,49,54,95,97,114,114,111,119,95,114,105,103,104,116,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,101,109,99,104,101,99,107,95,101,114,114,111,114,34,62,109,
101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,
112,36,105,99,111,110,115,95,49,54,95,101,114,114,111,114,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,101,109,99,104,101,99,107,95,105,109,112,111,114,116,34,62,109,
101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,
112,36,105,99,111,110,115,95,49,54,95,100,111,99,117,109,101,110,116,95,
105,109,112,111,114,116,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,101,109,99,104,101,99,107,
95,105,109,112,111,114,116,95,50,52,34,62,109,101,109,99,104,101,99,107,
117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,
95,50,52,95,100,111,99,117,109,101,110,116,95,105,109,112,111,114,116,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,101,109,99,104,101,99,107,95,108,111,99,97,116,105,
111,110,34,62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,
112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,95,108,111,99,97,116,
105,111,110,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,101,109,99,104,101,99,107,95,115,101,
116,116,105,110,103,115,34,62,109,101,109,99,104,101,99,107,117,105,95,
98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,
95,115,101,116,116,105,110,103,95,116,111,111,108,115,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,101,109,99,104,101,99,107,95,115,116,111,112,34,62,109,101,109,99,
104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,46,
46,95,99,111,100,101,108,105,116,101,45,105,99,111,110,115,95,116,111,111,
108,98,97,114,115,95,49,54,95,98,117,105,108,100,95,115,116,111,112,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,101,109,99,104,101,99,107,95,115,116,111,112,95,50,
52,34,62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,
115,46,99,112,112,36,46,46,95,99,111,100,101,108,105,116,101,45,105,99,
111,110,115,95,116,111,111,108,98,97,114,115,95,50,52,95,98,117,105,108,
100,95,115,116,111,112,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,101,109,99,104,101,99,107,
95,116,114,97,110,115,112,97,114,101,110,116,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,49,54,95,116,114,97,110,115,112,97,114,101,110,116,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,111,100,101,45,116,114,101,101,34,62,109,101,109,99,104,101,
99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,
110,115,95,49,54,95,110,111,100,101,45,116,114,101,101,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,103,101,95,102,105,114,115,116,34,62,109,101,109,99,104,101,99,
107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,
115,95,49,54,95,112,97,103,101,95,102,105,114,115,116,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,103,101,95,108,97,115,116,34,62,109,101,109,99,104,101,99,107,
117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,
95,49,54,95,112,97,103,101,95,108,97,115,116,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,103,
101,95,110,101,120,116,34,62,109,101,109,99,104,101,99,107,117,105,95,98,
105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,95,
112,97,103,101,95,110,101,120,116,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,103,101,95,
112,114,101,118,105,111,117,115,34,62,109,101,109,99,104,101,99,107,117,
105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,
49,54,95,112,97,103,101,95,112,114,101,118,105,111,117,115,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,108,97,105,110,34,62,109,101,109,99,104,101,99,107,117,105,95,
98,105,116,109,97,112,115,46,99,112,112,36,105,99,111,110,115,95,49,54,
95,112,108,97,105,110,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,108,111,97,100,34,62,
109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,
112,112,36,46,46,95,99,111,100,101,108,105,116,101,45,105,99,111,110,115,
45,102,114,101,115,104,45,102,97,114,109,95,111,117,116,112,117,116,45,
112,97,110,101,95,49,54,95,114,101,108,111,97,100,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,
115,101,116,116,105,110,103,95,116,111,111,108,115,34,62,109,101,109,99,
104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,105,
99,111,110,115,95,49,54,95,115,101,116,116,105,110,103,95,116,111,111,108,
115,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,115,116,45,103,101,111,114,103,101,95,115,109,34,
62,109,101,109,99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,
99,112,112,36,105,99,111,110,115,95,49,54,95,115,116,45,103,101,111,114,
103,101,95,115,109,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,115,116,111,112,34,62,109,101,109,
99,104,101,99,107,117,105,95,98,105,116,109,97,112,115,46,99,112,112,36,
46,46,95,99,111,100,101,108,105,116,101,45,105,99,111,110,115,95,115,117,
98,118,101,114,115,105,111,110,95,49,54,95,115,116,111,112,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 wxCrafterpca4kKInitBitmapResources()
{

    // 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/memcheckui_bitmaps.cpp$icons_16_arrow_down.png"), xml_res_file_0, xml_res_size_0, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_arrow_up.png"), xml_res_file_1, xml_res_size_1, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_broom.png"), xml_res_file_2, xml_res_size_2, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_check.png"), xml_res_file_3, xml_res_size_3, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._codelite-icons-fresh-farm_toolbars_16_external-tools_cog.png"), xml_res_file_4, xml_res_size_4, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_document_import.png"), xml_res_file_5, xml_res_size_5, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._LiteEditor_res_expand.png"), xml_res_file_6, xml_res_size_6, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_list.png"), xml_res_file_7, xml_res_size_7, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_auxiliary.png"), xml_res_file_8, xml_res_size_8, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_24_check.png"), xml_res_file_9, xml_res_size_9, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_arrow_right.png"), xml_res_file_10, xml_res_size_10, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_error.png"), xml_res_file_11, xml_res_size_11, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_24_document_import.png"), xml_res_file_12, xml_res_size_12, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_location.png"), xml_res_file_13, xml_res_size_13, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_setting_tools.png"), xml_res_file_14, xml_res_size_14, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._codelite-icons_toolbars_16_build_stop.png"), xml_res_file_15, xml_res_size_15, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._codelite-icons_toolbars_24_build_stop.png"), xml_res_file_16, xml_res_size_16, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_transparent.png"), xml_res_file_17, xml_res_size_17, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_node-tree.png"), xml_res_file_18, xml_res_size_18, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_page_first.png"), xml_res_file_19, xml_res_size_19, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_page_last.png"), xml_res_file_20, xml_res_size_20, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_page_next.png"), xml_res_file_21, xml_res_size_21, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_page_previous.png"), xml_res_file_22, xml_res_size_22, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_plain.png"), xml_res_file_23, xml_res_size_23, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._codelite-icons-fresh-farm_output-pane_16_reload.png"), xml_res_file_24, xml_res_size_24, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$icons_16_st-george_sm.png"), xml_res_file_25, xml_res_size_25, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$.._codelite-icons_subversion_16_stop.png"), xml_res_file_26, xml_res_size_26, wxT("image/x-apple-ios-png"));
    XRC_ADD_FILE(wxT("XRC_resource/memcheckui_bitmaps.cpp$_home_michalbliznak_Src_Projekty_CodeLite_MemCheck_memcheckui_bitmaps.xrc"), xml_res_file_27, xml_res_size_27, wxT("text/xml"));
    wxXmlResource::Get()->Load(wxT("memory:XRC_resource/memcheckui_bitmaps.cpp$_home_michalbliznak_Src_Projekty_CodeLite_MemCheck_memcheckui_bitmaps.xrc"));
}