summary refs log tree commit diff stats
path: root/build/xchat-wdk-x86.aip
blob: 67a7a6da06213a6b3ec41b811f356da97ae4e6cf (plain) (blame)
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
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<DOCUMENT Type="Advanced Installer" CreateVersion="8.6" version="8.6" Modules="professional" RootPath="." Language="en" Id="{F73D4A08-A8D6-4EBE-B4EE-563689DF68DD}">
  <COMPONENT cid="caphyon.advinst.msicomp.ProjectOptionsComponent">
    <ROW Name="HiddenItems" Value="DigCertStoreComponent;UpdaterComponent;SerValComponent;MsiServInstComponent;ActSyncAppComponent;BackgroundImagesComponent;DictionaryComponent;CPLAppletComponent;MsiClassComponent;WebApplicationsComponent;MsiOdbcDataSrcComponent"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
    <ROW Property="AI_CF_FrameBottomLeft" Value="frame_bottom_left.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameBottomLeftInactive" Value="frame_bottom_left_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameBottomMid" Value="frame_bottom_mid.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameBottomMidInactive" Value="frame_bottom_mid_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameBottomRight" Value="frame_bottom_right.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameBottomRightInactive" Value="frame_bottom_right_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameCaption" Value="frame_caption.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameCaptionInactive" Value="frame_caption_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameLeft" Value="frame_left.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameLeftInactive" Value="frame_left_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameRight" Value="frame_right.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameRightInactive" Value="frame_right_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopLeft" Value="frame_top_left.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopLeftInactive" Value="frame_top_left_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopMid" Value="frame_top_mid.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopMidInactive" Value="frame_top_mid_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopRight" Value="frame_top_right.bmp" Type="1"/>
    <ROW Property="AI_CF_FrameTopRightInactive" Value="frame_top_right_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_SysCloseDown" Value="sys_close_down.bmp" Type="1"/>
    <ROW Property="AI_CF_SysCloseHot" Value="sys_close_hot.bmp" Type="1"/>
    <ROW Property="AI_CF_SysCloseInactive" Value="sys_close_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_SysCloseNormal" Value="sys_close_normal.bmp" Type="1"/>
    <ROW Property="AI_CF_SysMinDown" Value="sys_min_down.bmp" Type="1"/>
    <ROW Property="AI_CF_SysMinHot" Value="sys_min_hot.bmp" Type="1"/>
    <ROW Property="AI_CF_SysMinInactive" Value="sys_min_inactive.bmp" Type="1"/>
    <ROW Property="AI_CF_SysMinNormal" Value="sys_min_normal.bmp" Type="1"/>
    <ROW Property="AI_CF_TYPE" Value="0" MultiBuildValue="DefaultBuild:1" Type="4"/>
    <ROW Property="AI_EXTERNALUIUNINSTALLERNAME" MultiBuildValue="DefaultBuild:aiui"/>
    <ROW Property="AI_FINDEXE_TITLE" Value="Select the installation package for [|ProductName]" ValueLocId="AI.Property.FindExeTitle"/>
    <ROW Property="AI_FrameBtns" Value="default" MultiBuildValue="DefaultBuild:orange" MsiKey="AI_FrameBtns"/>
    <ROW Property="AI_FrameColor" Value="lightslategray" MultiBuildValue="DefaultBuild:darkblue" MsiKey="AI_FrameColor"/>
    <ROW Property="AI_ImagesColor" Value="powderblue" MultiBuildValue="DefaultBuild:chrome" MsiKey="AI_ImagesColor"/>
    <ROW Property="AI_PRODUCTNAME_ARP" Value="[|ProductName] [|ProductVersion]"/>
    <ROW Property="AI_SecondColor" Value="default" MultiBuildValue="DefaultBuild:pink" MsiKey="AI_SecondColor"/>
    <ROW Property="AI_ThemeStyle" Value="default" MultiBuildValue="DefaultBuild:deep-sea" MsiKey="AI_ThemeStyle"/>
    <ROW Property="AI_UNINSTALLER" Value="msiexec.exe"/>
    <ROW Property="ALLUSERS" Value="2"/>
    <ROW Property="ARPCOMMENTS" Value="[|ProductName] installer" ValueLocId="*"/>
    <ROW Property="ARPHELPLINK" Value="http://code.google.com/p/xchat-wdk/issues/list"/>
    <ROW Property="ARPNOREPAIR" Value="1"/>
    <ROW Property="ARPPRODUCTICON" Value="xchat.exe" Type="8"/>
    <ROW Property="ARPSYSTEMCOMPONENT" Value="1"/>
    <ROW Property="ARPURLINFOABOUT" Value="http://www.xchat-wdk.org/"/>
    <ROW Property="ARPURLUPDATEINFO" Value="http://www.xchat-wdk.org/home/downloads"/>
    <ROW Property="CTRLS" Value="2"/>
    <ROW Property="MSIFASTINSTALL" MultiBuildValue="DefaultBuild:1"/>
    <ROW Property="Manufacturer" Value="XChat-WDK" ValueLocId="*"/>
    <ROW Property="ProductCode" Value="1033:{FF2D8F2E-3A1E-4D0A-BBC9-3D880D5CD181} " Type="16"/>
    <ROW Property="ProductLanguage" Value="1033"/>
    <ROW Property="ProductName" Value="XChat-WDK (x86)" ValueLocId="*"/>
    <ROW Property="ProductVersion" Value="14.98"/>
    <ROW Property="RUNAPPLICATION" Value="1" Type="4"/>
    <ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/>
    <ROW Property="UpgradeCode" Value="{01209F39-ECB8-4E42-9E41-990912AEAD90}"/>
    <ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
    <ROW Property="WindowsType9XDisplay" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
    <ROW Property="WindowsTypeNT" MultiBuildValue="DefaultBuild:Windows NT 4.0, Windows NT 4.0 Service Pack 1, Windows NT 4.0 Service Pack 2, Windows NT 4.0 Service Pack 3, Windows NT 4.0 Service Pack 4, Windows NT 4.0 Service Pack 5, Windows NT 4.0 Service Pack 6, Windows 2000, Windows 2000 Service Pack 1, Windows 2000 Service Pack 2, Windows 2000 Service Pack 3, Windows 2000 Service Pack 4" ValueLocId="-"/>
    <ROW Property="WindowsTypeNTDisplay" MultiBuildValue="DefaultBuild:Windows NT 4.0, Windows 2000" ValueLocId="-"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiDirsComponent">
    <ROW Directory="APPDIR" Directory_Parent="TARGETDIR" DefaultDir="APPDIR:." IsPseudoRoot="1"/>
    <ROW Directory="LC_MESSAGES_305_Dir" Directory_Parent="az_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_306_Dir" Directory_Parent="be_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_307_Dir" Directory_Parent="bg_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_308_Dir" Directory_Parent="ca_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_309_Dir" Directory_Parent="cs_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_310_Dir" Directory_Parent="de_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_311_Dir" Directory_Parent="el_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_312_Dir" Directory_Parent="en_GB_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_313_Dir" Directory_Parent="es_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_314_Dir" Directory_Parent="et_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_315_Dir" Directory_Parent="eu_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_316_Dir" Directory_Parent="fi_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_317_Dir" Directory_Parent="fr_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_318_Dir" Directory_Parent="gl_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_319_Dir" Directory_Parent="hi_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_320_Dir" Directory_Parent="hu_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_321_Dir" Directory_Parent="it_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_322_Dir" Directory_Parent="ja_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_323_Dir" Directory_Parent="kn_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_324_Dir" Directory_Parent="ko_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_325_Dir" Directory_Parent="lt_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_326_Dir" Directory_Parent="lv_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_327_Dir" Directory_Parent="mk_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_328_Dir" Directory_Parent="ms_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_329_Dir" Directory_Parent="nb_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_330_Dir" Directory_Parent="nl_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_331_Dir" Directory_Parent="no_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_332_Dir" Directory_Parent="pa_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_333_Dir" Directory_Parent="pl_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_334_Dir" Directory_Parent="pt_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_335_Dir" Directory_Parent="pt_BR_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_336_Dir" Directory_Parent="ru_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_337_Dir" Directory_Parent="sk_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_338_Dir" Directory_Parent="sl_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_339_Dir" Directory_Parent="sq_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_340_Dir" Directory_Parent="sr_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_341_Dir" Directory_Parent="sv_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_342_Dir" Directory_Parent="th_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_343_Dir" Directory_Parent="uk_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_344_Dir" Directory_Parent="vi_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_345_Dir" Directory_Parent="wa_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_346_Dir" Directory_Parent="zh_CN_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_347_Dir" Directory_Parent="zh_TW_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_348_Dir" Directory_Parent="af_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_349_Dir" Directory_Parent="am_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_350_Dir" Directory_Parent="ang_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_351_Dir" Directory_Parent="ar_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_352_Dir" Directory_Parent="as_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_353_Dir" Directory_Parent="ast_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_354_Dir" Directory_Parent="az_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_355_Dir" Directory_Parent="az_IR_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_356_Dir" Directory_Parent="be_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_357_Dir" Directory_Parent="be_latin_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_358_Dir" Directory_Parent="bg_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_359_Dir" Directory_Parent="bn_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_360_Dir" Directory_Parent="bn_IN_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_361_Dir" Directory_Parent="br_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_362_Dir" Directory_Parent="bs_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_363_Dir" Directory_Parent="ca_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_364_Dir" Directory_Parent="ca_valencia_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_365_Dir" Directory_Parent="crh_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_366_Dir" Directory_Parent="cs_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_367_Dir" Directory_Parent="cy_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_368_Dir" Directory_Parent="da_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_369_Dir" Directory_Parent="de_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_370_Dir" Directory_Parent="dz_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_371_Dir" Directory_Parent="el_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_372_Dir" Directory_Parent="en_shaw_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_373_Dir" Directory_Parent="en_CA_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_374_Dir" Directory_Parent="en_GB_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_375_Dir" Directory_Parent="eo_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_376_Dir" Directory_Parent="es_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_377_Dir" Directory_Parent="et_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_378_Dir" Directory_Parent="eu_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_379_Dir" Directory_Parent="fa_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_380_Dir" Directory_Parent="fi_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_381_Dir" Directory_Parent="fr_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_382_Dir" Directory_Parent="ga_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_383_Dir" Directory_Parent="gl_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_384_Dir" Directory_Parent="gu_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_385_Dir" Directory_Parent="he_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_386_Dir" Directory_Parent="hi_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_387_Dir" Directory_Parent="hr_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_388_Dir" Directory_Parent="hu_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_389_Dir" Directory_Parent="hy_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_390_Dir" Directory_Parent="ia_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_391_Dir" Directory_Parent="id_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_392_Dir" Directory_Parent="io_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_393_Dir" Directory_Parent="is_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_394_Dir" Directory_Parent="it_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_395_Dir" Directory_Parent="ja_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_396_Dir" Directory_Parent="ka_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_397_Dir" Directory_Parent="kk_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_398_Dir" Directory_Parent="kn_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_399_Dir" Directory_Parent="ko_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_400_Dir" Directory_Parent="ku_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_401_Dir" Directory_Parent="li_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_402_Dir" Directory_Parent="lt_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_403_Dir" Directory_Parent="lv_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_404_Dir" Directory_Parent="mai_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_405_Dir" Directory_Parent="mg_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_406_Dir" Directory_Parent="mi_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_407_Dir" Directory_Parent="mk_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_408_Dir" Directory_Parent="ml_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_409_Dir" Directory_Parent="mn_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_410_Dir" Directory_Parent="mr_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_411_Dir" Directory_Parent="ms_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_412_Dir" Directory_Parent="nb_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_413_Dir" Directory_Parent="nds_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_414_Dir" Directory_Parent="ne_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_415_Dir" Directory_Parent="nl_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_416_Dir" Directory_Parent="nn_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_417_Dir" Directory_Parent="nso_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_418_Dir" Directory_Parent="oc_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_419_Dir" Directory_Parent="or_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_420_Dir" Directory_Parent="pa_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_421_Dir" Directory_Parent="pl_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_422_Dir" Directory_Parent="ps_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_423_Dir" Directory_Parent="pt_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_424_Dir" Directory_Parent="pt_BR_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_425_Dir" Directory_Parent="ro_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_426_Dir" Directory_Parent="ru_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_427_Dir" Directory_Parent="rw_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_428_Dir" Directory_Parent="si_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_429_Dir" Directory_Parent="sk_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_430_Dir" Directory_Parent="sl_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_431_Dir" Directory_Parent="sq_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_432_Dir" Directory_Parent="sr_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_433_Dir" Directory_Parent="sr_ije_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_434_Dir" Directory_Parent="sr_latin_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_435_Dir" Directory_Parent="sv_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_436_Dir" Directory_Parent="ta_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_437_Dir" Directory_Parent="te_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_438_Dir" Directory_Parent="th_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_439_Dir" Directory_Parent="tk_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_440_Dir" Directory_Parent="tl_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_441_Dir" Directory_Parent="tr_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_442_Dir" Directory_Parent="tt_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_443_Dir" Directory_Parent="ug_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_444_Dir" Directory_Parent="uk_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_445_Dir" Directory_Parent="ur_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_446_Dir" Directory_Parent="uz_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_447_Dir" Directory_Parent="uz_cyrillic_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_448_Dir" Directory_Parent="vi_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_449_Dir" Directory_Parent="wa_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_450_Dir" Directory_Parent="xh_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_451_Dir" Directory_Parent="yi_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_452_Dir" Directory_Parent="zh_CN_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_453_Dir" Directory_Parent="zh_HK_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_454_Dir" Directory_Parent="zh_TW_3_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="LC_MESSAGES_Dir" Directory_Parent="am_Dir" DefaultDir="LC_MES~1|LC_MESSAGES"/>
    <ROW Directory="SHORTCUTDIR" Directory_Parent="TARGETDIR" DefaultDir="SHORTC~1|SHORTCUTDIR" IsPseudoRoot="1"/>
    <ROW Directory="TARGETDIR" DefaultDir="SourceDir"/>
    <ROW Directory="__Dir" Directory_Parent="gtk_2.0_7_Dir" DefaultDir="210~1.0|2.10.0"/>
    <ROW Directory="af_Dir" Directory_Parent="locale_3_Dir" DefaultDir="af"/>
    <ROW Directory="am_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="am"/>
    <ROW Directory="am_Dir" Directory_Parent="locale_Dir" DefaultDir="am"/>
    <ROW Directory="ang_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ang"/>
    <ROW Directory="ar_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ar"/>
    <ROW Directory="as_Dir" Directory_Parent="locale_3_Dir" DefaultDir="as"/>
    <ROW Directory="ast_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ast"/>
    <ROW Directory="az_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="az"/>
    <ROW Directory="az_Dir" Directory_Parent="locale_Dir" DefaultDir="az"/>
    <ROW Directory="az_IR_Dir" Directory_Parent="locale_3_Dir" DefaultDir="az_IR"/>
    <ROW Directory="be_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="be"/>
    <ROW Directory="be_Dir" Directory_Parent="locale_Dir" DefaultDir="be"/>
    <ROW Directory="be_latin_Dir" Directory_Parent="locale_3_Dir" DefaultDir="be@latin"/>
    <ROW Directory="bg_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="bg"/>
    <ROW Directory="bg_Dir" Directory_Parent="locale_Dir" DefaultDir="bg"/>
    <ROW Directory="bn_Dir" Directory_Parent="locale_3_Dir" DefaultDir="bn"/>
    <ROW Directory="bn_IN_Dir" Directory_Parent="locale_3_Dir" DefaultDir="bn_IN"/>
    <ROW Directory="br_Dir" Directory_Parent="locale_3_Dir" DefaultDir="br"/>
    <ROW Directory="bs_Dir" Directory_Parent="locale_3_Dir" DefaultDir="bs"/>
    <ROW Directory="ca_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ca"/>
    <ROW Directory="ca_Dir" Directory_Parent="locale_Dir" DefaultDir="ca"/>
    <ROW Directory="ca_valencia_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ca@val~1|ca@valencia"/>
    <ROW Directory="crh_Dir" Directory_Parent="locale_3_Dir" DefaultDir="crh"/>
    <ROW Directory="cs_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="cs"/>
    <ROW Directory="cs_Dir" Directory_Parent="locale_Dir" DefaultDir="cs"/>
    <ROW Directory="cy_Dir" Directory_Parent="locale_3_Dir" DefaultDir="cy"/>
    <ROW Directory="da_Dir" Directory_Parent="locale_3_Dir" DefaultDir="da"/>
    <ROW Directory="de_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="de"/>
    <ROW Directory="de_Dir" Directory_Parent="locale_Dir" DefaultDir="de"/>
    <ROW Directory="dz_Dir" Directory_Parent="locale_3_Dir" DefaultDir="dz"/>
    <ROW Directory="el_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="el"/>
    <ROW Directory="el_Dir" Directory_Parent="locale_Dir" DefaultDir="el"/>
    <ROW Directory="en_CA_Dir" Directory_Parent="locale_3_Dir" DefaultDir="en_CA"/>
    <ROW Directory="en_GB_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="en_GB"/>
    <ROW Directory="en_GB_Dir" Directory_Parent="locale_Dir" DefaultDir="en_GB"/>
    <ROW Directory="en_shaw_Dir" Directory_Parent="locale_3_Dir" DefaultDir="en@shaw"/>
    <ROW Directory="enchant_Dir" Directory_Parent="lib_Dir" DefaultDir="enchant"/>
    <ROW Directory="engines_Dir" Directory_Parent="__Dir" DefaultDir="engines"/>
    <ROW Directory="eo_Dir" Directory_Parent="locale_3_Dir" DefaultDir="eo"/>
    <ROW Directory="es_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="es"/>
    <ROW Directory="es_Dir" Directory_Parent="locale_Dir" DefaultDir="es"/>
    <ROW Directory="et_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="et"/>
    <ROW Directory="et_Dir" Directory_Parent="locale_Dir" DefaultDir="et"/>
    <ROW Directory="etc_Dir" Directory_Parent="APPDIR" DefaultDir="etc"/>
    <ROW Directory="eu_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="eu"/>
    <ROW Directory="eu_Dir" Directory_Parent="locale_Dir" DefaultDir="eu"/>
    <ROW Directory="fa_Dir" Directory_Parent="locale_3_Dir" DefaultDir="fa"/>
    <ROW Directory="fi_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="fi"/>
    <ROW Directory="fi_Dir" Directory_Parent="locale_Dir" DefaultDir="fi"/>
    <ROW Directory="fr_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="fr"/>
    <ROW Directory="fr_Dir" Directory_Parent="locale_Dir" DefaultDir="fr"/>
    <ROW Directory="ga_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ga"/>
    <ROW Directory="gl_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="gl"/>
    <ROW Directory="gl_Dir" Directory_Parent="locale_Dir" DefaultDir="gl"/>
    <ROW Directory="gtk_2.0_7_Dir" Directory_Parent="lib_Dir" DefaultDir="gtk-2.0"/>
    <ROW Directory="gtk_2.0_Dir" Directory_Parent="etc_Dir" DefaultDir="gtk-2.0"/>
    <ROW Directory="gu_Dir" Directory_Parent="locale_3_Dir" DefaultDir="gu"/>
    <ROW Directory="he_Dir" Directory_Parent="locale_3_Dir" DefaultDir="he"/>
    <ROW Directory="hi_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="hi"/>
    <ROW Directory="hi_Dir" Directory_Parent="locale_Dir" DefaultDir="hi"/>
    <ROW Directory="hr_Dir" Directory_Parent="locale_3_Dir" DefaultDir="hr"/>
    <ROW Directory="hu_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="hu"/>
    <ROW Directory="hu_Dir" Directory_Parent="locale_Dir" DefaultDir="hu"/>
    <ROW Directory="hy_Dir" Directory_Parent="locale_3_Dir" DefaultDir="hy"/>
    <ROW Directory="ia_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ia"/>
    <ROW Directory="id_Dir" Directory_Parent="locale_3_Dir" DefaultDir="id"/>
    <ROW Directory="io_Dir" Directory_Parent="locale_3_Dir" DefaultDir="io"/>
    <ROW Directory="is_Dir" Directory_Parent="locale_3_Dir" DefaultDir="is"/>
    <ROW Directory="iso_codes_Dir" Directory_Parent="xml_Dir" DefaultDir="iso-co~1|iso-codes"/>
    <ROW Directory="it_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="it"/>
    <ROW Directory="it_Dir" Directory_Parent="locale_Dir" DefaultDir="it"/>
    <ROW Directory="ja_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ja"/>
    <ROW Directory="ja_Dir" Directory_Parent="locale_Dir" DefaultDir="ja"/>
    <ROW Directory="ka_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ka"/>
    <ROW Directory="kk_Dir" Directory_Parent="locale_3_Dir" DefaultDir="kk"/>
    <ROW Directory="kn_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="kn"/>
    <ROW Directory="kn_Dir" Directory_Parent="locale_Dir" DefaultDir="kn"/>
    <ROW Directory="ko_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ko"/>
    <ROW Directory="ko_Dir" Directory_Parent="locale_Dir" DefaultDir="ko"/>
    <ROW Directory="ku_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ku"/>
    <ROW Directory="li_Dir" Directory_Parent="locale_3_Dir" DefaultDir="li"/>
    <ROW Directory="lib_Dir" Directory_Parent="APPDIR" DefaultDir="lib"/>
    <ROW Directory="locale_3_Dir" Directory_Parent="share_Dir" DefaultDir="locale"/>
    <ROW Directory="locale_Dir" Directory_Parent="APPDIR" DefaultDir="locale"/>
    <ROW Directory="lt_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="lt"/>
    <ROW Directory="lt_Dir" Directory_Parent="locale_Dir" DefaultDir="lt"/>
    <ROW Directory="lv_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="lv"/>
    <ROW Directory="lv_Dir" Directory_Parent="locale_Dir" DefaultDir="lv"/>
    <ROW Directory="mai_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mai"/>
    <ROW Directory="mg_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mg"/>
    <ROW Directory="mi_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mi"/>
    <ROW Directory="mk_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mk"/>
    <ROW Directory="mk_Dir" Directory_Parent="locale_Dir" DefaultDir="mk"/>
    <ROW Directory="ml_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ml"/>
    <ROW Directory="mn_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mn"/>
    <ROW Directory="modules_Dir" Directory_Parent="gtk_2.0_7_Dir" DefaultDir="modules"/>
    <ROW Directory="mr_Dir" Directory_Parent="locale_3_Dir" DefaultDir="mr"/>
    <ROW Directory="ms_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ms"/>
    <ROW Directory="ms_Dir" Directory_Parent="locale_Dir" DefaultDir="ms"/>
    <ROW Directory="nb_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="nb"/>
    <ROW Directory="nb_Dir" Directory_Parent="locale_Dir" DefaultDir="nb"/>
    <ROW Directory="nds_Dir" Directory_Parent="locale_3_Dir" DefaultDir="nds"/>
    <ROW Directory="ne_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ne"/>
    <ROW Directory="nl_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="nl"/>
    <ROW Directory="nl_Dir" Directory_Parent="locale_Dir" DefaultDir="nl"/>
    <ROW Directory="nn_Dir" Directory_Parent="locale_3_Dir" DefaultDir="nn"/>
    <ROW Directory="no_Dir" Directory_Parent="locale_Dir" DefaultDir="no"/>
    <ROW Directory="nso_Dir" Directory_Parent="locale_3_Dir" DefaultDir="nso"/>
    <ROW Directory="oc_Dir" Directory_Parent="locale_3_Dir" DefaultDir="oc"/>
    <ROW Directory="or_Dir" Directory_Parent="locale_3_Dir" DefaultDir="or"/>
    <ROW Directory="pa_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="pa"/>
    <ROW Directory="pa_Dir" Directory_Parent="locale_Dir" DefaultDir="pa"/>
    <ROW Directory="pl_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="pl"/>
    <ROW Directory="pl_Dir" Directory_Parent="locale_Dir" DefaultDir="pl"/>
    <ROW Directory="plugins_Dir" Directory_Parent="APPDIR" DefaultDir="plugins"/>
    <ROW Directory="ps_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ps"/>
    <ROW Directory="pt_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="pt"/>
    <ROW Directory="pt_BR_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="pt_BR"/>
    <ROW Directory="pt_BR_Dir" Directory_Parent="locale_Dir" DefaultDir="pt_BR"/>
    <ROW Directory="pt_Dir" Directory_Parent="locale_Dir" DefaultDir="pt"/>
    <ROW Directory="ro_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ro"/>
    <ROW Directory="ru_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ru"/>
    <ROW Directory="ru_Dir" Directory_Parent="locale_Dir" DefaultDir="ru"/>
    <ROW Directory="rw_Dir" Directory_Parent="locale_3_Dir" DefaultDir="rw"/>
    <ROW Directory="share_Dir" Directory_Parent="APPDIR" DefaultDir="share"/>
    <ROW Directory="si_Dir" Directory_Parent="locale_3_Dir" DefaultDir="si"/>
    <ROW Directory="sk_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sk"/>
    <ROW Directory="sk_Dir" Directory_Parent="locale_Dir" DefaultDir="sk"/>
    <ROW Directory="sl_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sl"/>
    <ROW Directory="sl_Dir" Directory_Parent="locale_Dir" DefaultDir="sl"/>
    <ROW Directory="sq_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sq"/>
    <ROW Directory="sq_Dir" Directory_Parent="locale_Dir" DefaultDir="sq"/>
    <ROW Directory="sr_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sr"/>
    <ROW Directory="sr_Dir" Directory_Parent="locale_Dir" DefaultDir="sr"/>
    <ROW Directory="sr_ije_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sr@ije"/>
    <ROW Directory="sr_latin_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sr@latin"/>
    <ROW Directory="sv_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="sv"/>
    <ROW Directory="sv_Dir" Directory_Parent="locale_Dir" DefaultDir="sv"/>
    <ROW Directory="ta_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ta"/>
    <ROW Directory="te_Dir" Directory_Parent="locale_3_Dir" DefaultDir="te"/>
    <ROW Directory="th_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="th"/>
    <ROW Directory="th_Dir" Directory_Parent="locale_Dir" DefaultDir="th"/>
    <ROW Directory="tk_Dir" Directory_Parent="locale_3_Dir" DefaultDir="tk"/>
    <ROW Directory="tl_Dir" Directory_Parent="locale_3_Dir" DefaultDir="tl"/>
    <ROW Directory="tr_Dir" Directory_Parent="locale_3_Dir" DefaultDir="tr"/>
    <ROW Directory="tt_Dir" Directory_Parent="locale_3_Dir" DefaultDir="tt"/>
    <ROW Directory="ug_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ug"/>
    <ROW Directory="uk_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="uk"/>
    <ROW Directory="uk_Dir" Directory_Parent="locale_Dir" DefaultDir="uk"/>
    <ROW Directory="ur_Dir" Directory_Parent="locale_3_Dir" DefaultDir="ur"/>
    <ROW Directory="uz_Dir" Directory_Parent="locale_3_Dir" DefaultDir="uz"/>
    <ROW Directory="uz_cyrillic_Dir" Directory_Parent="locale_3_Dir" DefaultDir="uz@cyr~1|uz@cyrillic"/>
    <ROW Directory="vi_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="vi"/>
    <ROW Directory="vi_Dir" Directory_Parent="locale_Dir" DefaultDir="vi"/>
    <ROW Directory="wa_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="wa"/>
    <ROW Directory="wa_Dir" Directory_Parent="locale_Dir" DefaultDir="wa"/>
    <ROW Directory="xh_Dir" Directory_Parent="locale_3_Dir" DefaultDir="xh"/>
    <ROW Directory="xml_Dir" Directory_Parent="share_Dir" DefaultDir="xml"/>
    <ROW Directory="yi_Dir" Directory_Parent="locale_3_Dir" DefaultDir="yi"/>
    <ROW Directory="zh_CN_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="zh_CN"/>
    <ROW Directory="zh_CN_Dir" Directory_Parent="locale_Dir" DefaultDir="zh_CN"/>
    <ROW Directory="zh_HK_Dir" Directory_Parent="locale_3_Dir" DefaultDir="zh_HK"/>
    <ROW Directory="zh_TW_3_Dir" Directory_Parent="locale_3_Dir" DefaultDir="zh_TW"/>
    <ROW Directory="zh_TW_Dir" Directory_Parent="locale_Dir" DefaultDir="zh_TW"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
    <ROW Component="AI_CustomARPName" ComponentId="{D7BBA10A-A7BB-43F8-B48C-C28A64499FB5}" Directory_="APPDIR" Attributes="4" KeyPath="DisplayName" Options="1"/>
    <ROW Component="AI_ExePath" ComponentId="{6F2CCC92-C3A5-4067-A3BF-C79450540A8E}" Directory_="APPDIR" Attributes="4" KeyPath="AI_ExePath"/>
    <ROW Component="ProductInformation" ComponentId="{7340FB38-A8CA-4674-BDB7-60DCA2AD2C98}" Directory_="APPDIR" Attributes="4" KeyPath="ProductName_"/>
    <ROW Component="SHORTCUTDIR" ComponentId="{557C8CFA-C096-4366-80D6-5D7D22B5A5E4}" Directory_="SHORTCUTDIR" Attributes="0"/>
    <ROW Component="atk10.mo" ComponentId="{A0D2687E-646A-4768-877C-FB698B74EDED}" Directory_="LC_MESSAGES_348_Dir" Attributes="0" KeyPath="atk10.mo"/>
    <ROW Component="atk10.mo_185" ComponentId="{0830061E-179D-42D7-AEB2-3D038E460DFE}" Directory_="LC_MESSAGES_349_Dir" Attributes="0" KeyPath="atk10.mo_185" Type="0"/>
    <ROW Component="atk10.mo_186" ComponentId="{9243544D-4D76-4A4F-848B-4FB30C66B24B}" Directory_="LC_MESSAGES_351_Dir" Attributes="0" KeyPath="atk10.mo_186" Type="0"/>
    <ROW Component="atk10.mo_187" ComponentId="{51A731D3-381A-440E-9843-91129E413E80}" Directory_="LC_MESSAGES_352_Dir" Attributes="0" KeyPath="atk10.mo_187" Type="0"/>
    <ROW Component="atk10.mo_188" ComponentId="{4B44AE74-F5A0-4B50-B0ED-5E8349B81FF8}" Directory_="LC_MESSAGES_353_Dir" Attributes="0" KeyPath="atk10.mo_188" Type="0"/>
    <ROW Component="atk10.mo_189" ComponentId="{0AF78803-C360-4263-803C-861ADAC81C7D}" Directory_="LC_MESSAGES_354_Dir" Attributes="0" KeyPath="atk10.mo_189" Type="0"/>
    <ROW Component="atk10.mo_190" ComponentId="{A0C2F60D-4974-4D65-A4B1-9E23E79DF6A0}" Directory_="LC_MESSAGES_356_Dir" Attributes="0" KeyPath="atk10.mo_190" Type="0"/>
    <ROW Component="atk10.mo_191" ComponentId="{C09675DB-4E0F-4F2B-996B-1EA4C23D85C8}" Directory_="LC_MESSAGES_357_Dir" Attributes="0" KeyPath="atk10.mo_191" Type="0"/>
    <ROW Component="atk10.mo_192" ComponentId="{1E3271A1-761D-445F-9C8A-E96D0186EE6D}" Directory_="LC_MESSAGES_358_Dir" Attributes="0" KeyPath="atk10.mo_192" Type="0"/>
    <ROW Component="atk10.mo_193" ComponentId="{10EC0BDF-31A3-4299-8169-4E062953E4C5}" Directory_="LC_MESSAGES_359_Dir" Attributes="0" KeyPath="atk10.mo_193" Type="0"/>
    <ROW Component="atk10.mo_194" ComponentId="{97B82F92-0E97-4070-9C00-EF3E23FE0059}" Directory_="LC_MESSAGES_360_Dir" Attributes="0" KeyPath="atk10.mo_194" Type="0"/>
    <ROW Component="atk10.mo_195" ComponentId="{1C127E5A-D251-4767-A947-B6F6B7294986}" Directory_="LC_MESSAGES_362_Dir" Attributes="0" KeyPath="atk10.mo_195" Type="0"/>
    <ROW Component="atk10.mo_196" ComponentId="{EDACC216-1E09-46E7-8EC3-9CB3F20F711C}" Directory_="LC_MESSAGES_363_Dir" Attributes="0" KeyPath="atk10.mo_196" Type="0"/>
    <ROW Component="atk10.mo_197" ComponentId="{9926DF9B-F722-4D00-9B73-44F7C55C811F}" Directory_="LC_MESSAGES_364_Dir" Attributes="0" KeyPath="atk10.mo_197" Type="0"/>
    <ROW Component="atk10.mo_198" ComponentId="{BF044ABD-CC30-433D-9897-DC492D12796D}" Directory_="LC_MESSAGES_366_Dir" Attributes="0" KeyPath="atk10.mo_198" Type="0"/>
    <ROW Component="atk10.mo_199" ComponentId="{3A038DC5-3A4A-446B-82BD-1054FA853FCD}" Directory_="LC_MESSAGES_367_Dir" Attributes="0" KeyPath="atk10.mo_199" Type="0"/>
    <ROW Component="atk10.mo_200" ComponentId="{D73DBF13-D4D7-4305-BF73-F8B157052A1A}" Directory_="LC_MESSAGES_368_Dir" Attributes="0" KeyPath="atk10.mo_200" Type="0"/>
    <ROW Component="atk10.mo_201" ComponentId="{17FD8A85-15CE-453D-8916-0F1E76E1D7FB}" Directory_="LC_MESSAGES_369_Dir" Attributes="0" KeyPath="atk10.mo_201" Type="0"/>
    <ROW Component="atk10.mo_202" ComponentId="{873912C1-C7DF-4FE4-AE46-B6D4AB2139A1}" Directory_="LC_MESSAGES_370_Dir" Attributes="0" KeyPath="atk10.mo_202" Type="0"/>
    <ROW Component="atk10.mo_203" ComponentId="{61AA5AE4-1544-42BB-910B-0BC26B2E0CAB}" Directory_="LC_MESSAGES_371_Dir" Attributes="0" KeyPath="atk10.mo_203" Type="0"/>
    <ROW Component="atk10.mo_204" ComponentId="{033CDB2D-3248-46BC-9E3E-A32A3AEFB6F4}" Directory_="LC_MESSAGES_372_Dir" Attributes="0" KeyPath="atk10.mo_204" Type="0"/>
    <ROW Component="atk10.mo_205" ComponentId="{E0C487C7-D06D-4DC7-BE0D-657E0B7D823F}" Directory_="LC_MESSAGES_373_Dir" Attributes="0" KeyPath="atk10.mo_205" Type="0"/>
    <ROW Component="atk10.mo_206" ComponentId="{2FC064D8-61B9-4061-A9C8-4E44DD670E4E}" Directory_="LC_MESSAGES_374_Dir" Attributes="0" KeyPath="atk10.mo_206" Type="0"/>
    <ROW Component="atk10.mo_207" ComponentId="{1D1842A7-2FA1-45EE-9C07-8CA4F9230341}" Directory_="LC_MESSAGES_375_Dir" Attributes="0" KeyPath="atk10.mo_207" Type="0"/>
    <ROW Component="atk10.mo_208" ComponentId="{FFF9F034-3FB6-4DC7-95B8-5CE2AE05631A}" Directory_="LC_MESSAGES_376_Dir" Attributes="0" KeyPath="atk10.mo_208" Type="0"/>
    <ROW Component="atk10.mo_209" ComponentId="{328B8343-4E65-465F-BF88-7A4366F90D53}" Directory_="LC_MESSAGES_377_Dir" Attributes="0" KeyPath="atk10.mo_209" Type="0"/>
    <ROW Component="atk10.mo_210" ComponentId="{392DE9BA-EAA4-49F9-96A7-50C1C0EA592B}" Directory_="LC_MESSAGES_378_Dir" Attributes="0" KeyPath="atk10.mo_210" Type="0"/>
    <ROW Component="atk10.mo_211" ComponentId="{41D3F641-C7C8-4A11-A270-265F31307583}" Directory_="LC_MESSAGES_379_Dir" Attributes="0" KeyPath="atk10.mo_211" Type="0"/>
    <ROW Component="atk10.mo_212" ComponentId="{AB957FEA-5B47-49BE-BC84-93DDE06A0E4B}" Directory_="LC_MESSAGES_380_Dir" Attributes="0" KeyPath="atk10.mo_212" Type="0"/>
    <ROW Component="atk10.mo_213" ComponentId="{B4141E46-29F8-4498-B1E6-2BB91ABF945D}" Directory_="LC_MESSAGES_381_Dir" Attributes="0" KeyPath="atk10.mo_213" Type="0"/>
    <ROW Component="atk10.mo_214" ComponentId="{6D309831-3731-4794-8DB0-142877F1DD10}" Directory_="LC_MESSAGES_382_Dir" Attributes="0" KeyPath="atk10.mo_214" Type="0"/>
    <ROW Component="atk10.mo_215" ComponentId="{461860A5-4E5D-4F55-9212-50EB4C2A72CC}" Directory_="LC_MESSAGES_383_Dir" Attributes="0" KeyPath="atk10.mo_215" Type="0"/>
    <ROW Component="atk10.mo_216" ComponentId="{8A624770-A884-4A76-A2AA-F0E2D987D179}" Directory_="LC_MESSAGES_384_Dir" Attributes="0" KeyPath="atk10.mo_216" Type="0"/>
    <ROW Component="atk10.mo_217" ComponentId="{9D34962F-B016-420B-8B3A-C54F1C8C859B}" Directory_="LC_MESSAGES_385_Dir" Attributes="0" KeyPath="atk10.mo_217" Type="0"/>
    <ROW Component="atk10.mo_218" ComponentId="{75362F8A-6157-42A5-9950-C1979DB59A07}" Directory_="LC_MESSAGES_386_Dir" Attributes="0" KeyPath="atk10.mo_218" Type="0"/>
    <ROW Component="atk10.mo_219" ComponentId="{2C71D2AA-5E8F-4E4B-8CC5-CE1FD23AE77F}" Directory_="LC_MESSAGES_387_Dir" Attributes="0" KeyPath="atk10.mo_219" Type="0"/>
    <ROW Component="atk10.mo_220" ComponentId="{A61BC50A-B246-4D5F-B7AD-FAAA65F4E61D}" Directory_="LC_MESSAGES_388_Dir" Attributes="0" KeyPath="atk10.mo_220" Type="0"/>
    <ROW Component="atk10.mo_221" ComponentId="{2D5F329A-6814-497E-B3E1-3CA2B4D6DB1C}" Directory_="LC_MESSAGES_389_Dir" Attributes="0" KeyPath="atk10.mo_221" Type="0"/>
    <ROW Component="atk10.mo_222" ComponentId="{3937A42E-B2FC-443D-BD74-2C8B68F00FA2}" Directory_="LC_MESSAGES_391_Dir" Attributes="0" KeyPath="atk10.mo_222" Type="0"/>
    <ROW Component="atk10.mo_223" ComponentId="{E5002896-016B-429A-96F2-E513EFDB44FD}" Directory_="LC_MESSAGES_393_Dir" Attributes="0" KeyPath="atk10.mo_223" Type="0"/>
    <ROW Component="atk10.mo_224" ComponentId="{23E464F7-CEC4-458B-8CB2-91F8D7DC1CAA}" Directory_="LC_MESSAGES_394_Dir" Attributes="0" KeyPath="atk10.mo_224" Type="0"/>
    <ROW Component="atk10.mo_225" ComponentId="{8F806F99-A224-4AFB-874C-2C5DBA3E63BC}" Directory_="LC_MESSAGES_395_Dir" Attributes="0" KeyPath="atk10.mo_225" Type="0"/>
    <ROW Component="atk10.mo_226" ComponentId="{1EF4CAA4-2487-4889-810B-9CE97E8FD970}" Directory_="LC_MESSAGES_396_Dir" Attributes="0" KeyPath="atk10.mo_226" Type="0"/>
    <ROW Component="atk10.mo_227" ComponentId="{47D64C76-E263-4896-9649-C697F8FE5F4D}" Directory_="LC_MESSAGES_397_Dir" Attributes="0" KeyPath="atk10.mo_227" Type="0"/>
    <ROW Component="atk10.mo_228" ComponentId="{504BB42B-A99C-4E5E-8954-53F85637A322}" Directory_="LC_MESSAGES_398_Dir" Attributes="0" KeyPath="atk10.mo_228" Type="0"/>
    <ROW Component="atk10.mo_229" ComponentId="{F1FA2684-EE77-4B7F-921B-9A045B211D03}" Directory_="LC_MESSAGES_399_Dir" Attributes="0" KeyPath="atk10.mo_229" Type="0"/>
    <ROW Component="atk10.mo_230" ComponentId="{FCB0ACC9-75D4-4D07-B6FF-9BD8AAC052C6}" Directory_="LC_MESSAGES_400_Dir" Attributes="0" KeyPath="atk10.mo_230" Type="0"/>
    <ROW Component="atk10.mo_231" ComponentId="{C90BBCBE-B510-4117-91F1-664086FDF81F}" Directory_="LC_MESSAGES_401_Dir" Attributes="0" KeyPath="atk10.mo_231" Type="0"/>
    <ROW Component="atk10.mo_232" ComponentId="{B2CAADF3-6A2A-41A6-8599-A061A9DB756D}" Directory_="LC_MESSAGES_402_Dir" Attributes="0" KeyPath="atk10.mo_232" Type="0"/>
    <ROW Component="atk10.mo_233" ComponentId="{3809F56C-DCFA-4FEF-A044-9129791794F8}" Directory_="LC_MESSAGES_403_Dir" Attributes="0" KeyPath="atk10.mo_233" Type="0"/>
    <ROW Component="atk10.mo_234" ComponentId="{55D71158-E03F-45AE-9786-74D80C459B75}" Directory_="LC_MESSAGES_404_Dir" Attributes="0" KeyPath="atk10.mo_234" Type="0"/>
    <ROW Component="atk10.mo_235" ComponentId="{EA0B610E-4E01-404D-92D2-088B5588DCDA}" Directory_="LC_MESSAGES_407_Dir" Attributes="0" KeyPath="atk10.mo_235" Type="0"/>
    <ROW Component="atk10.mo_236" ComponentId="{DCD8D1D6-E58B-4AEC-A372-BEDEBA51928D}" Directory_="LC_MESSAGES_408_Dir" Attributes="0" KeyPath="atk10.mo_236" Type="0"/>
    <ROW Component="atk10.mo_237" ComponentId="{769D834C-B54D-449C-B591-A73FDC1754C9}" Directory_="LC_MESSAGES_409_Dir" Attributes="0" KeyPath="atk10.mo_237" Type="0"/>
    <ROW Component="atk10.mo_238" ComponentId="{F9205B99-DE1F-43E1-9A0D-FFB1666FF7A1}" Directory_="LC_MESSAGES_410_Dir" Attributes="0" KeyPath="atk10.mo_238" Type="0"/>
    <ROW Component="atk10.mo_239" ComponentId="{9E7201E5-12A4-4C40-88BE-0995FD9137AF}" Directory_="LC_MESSAGES_411_Dir" Attributes="0" KeyPath="atk10.mo_239" Type="0"/>
    <ROW Component="atk10.mo_240" ComponentId="{097DBA45-7DC7-48D7-AF86-AC7D1660A6C7}" Directory_="LC_MESSAGES_412_Dir" Attributes="0" KeyPath="atk10.mo_240" Type="0"/>
    <ROW Component="atk10.mo_241" ComponentId="{245377D6-5BF9-446A-8A43-8E47C2CED5E1}" Directory_="LC_MESSAGES_414_Dir" Attributes="0" KeyPath="atk10.mo_241" Type="0"/>
    <ROW Component="atk10.mo_242" ComponentId="{AB28B526-998F-4C30-8646-31C3BBBAE509}" Directory_="LC_MESSAGES_415_Dir" Attributes="0" KeyPath="atk10.mo_242" Type="0"/>
    <ROW Component="atk10.mo_243" ComponentId="{A09BB1A9-AF7B-49A4-A24E-10D8B40A3B95}" Directory_="LC_MESSAGES_416_Dir" Attributes="0" KeyPath="atk10.mo_243" Type="0"/>
    <ROW Component="atk10.mo_244" ComponentId="{BC674C3F-E712-4ED6-AC14-026724A2141E}" Directory_="LC_MESSAGES_418_Dir" Attributes="0" KeyPath="atk10.mo_244" Type="0"/>
    <ROW Component="atk10.mo_245" ComponentId="{AD7EA8EF-3ED6-4102-938F-5B365C5A9D5C}" Directory_="LC_MESSAGES_419_Dir" Attributes="0" KeyPath="atk10.mo_245" Type="0"/>
    <ROW Component="atk10.mo_246" ComponentId="{E109EB02-CD74-4616-925F-A91991132C7F}" Directory_="LC_MESSAGES_420_Dir" Attributes="0" KeyPath="atk10.mo_246" Type="0"/>
    <ROW Component="atk10.mo_247" ComponentId="{D4820CD3-2DFA-4D5C-82B9-87F810A99C79}" Directory_="LC_MESSAGES_421_Dir" Attributes="0" KeyPath="atk10.mo_247" Type="0"/>
    <ROW Component="atk10.mo_248" ComponentId="{06BDB080-C8DF-4925-BD7F-D28D125CD106}" Directory_="LC_MESSAGES_422_Dir" Attributes="0" KeyPath="atk10.mo_248" Type="0"/>
    <ROW Component="atk10.mo_249" ComponentId="{A8F919B0-D26F-454D-BECB-A372B52E268D}" Directory_="LC_MESSAGES_423_Dir" Attributes="0" KeyPath="atk10.mo_249" Type="0"/>
    <ROW Component="atk10.mo_250" ComponentId="{BB850F01-5C8F-48C3-813C-F7BDE63FFF15}" Directory_="LC_MESSAGES_424_Dir" Attributes="0" KeyPath="atk10.mo_250" Type="0"/>
    <ROW Component="atk10.mo_251" ComponentId="{4C7B2246-E418-4376-93DF-0DEBAEC3DAD2}" Directory_="LC_MESSAGES_425_Dir" Attributes="0" KeyPath="atk10.mo_251" Type="0"/>
    <ROW Component="atk10.mo_252" ComponentId="{AAC88259-FBA2-4A6C-95CC-DCF577F1515C}" Directory_="LC_MESSAGES_426_Dir" Attributes="0" KeyPath="atk10.mo_252" Type="0"/>
    <ROW Component="atk10.mo_253" ComponentId="{4373F384-4EA8-4B8E-A20D-898563529544}" Directory_="LC_MESSAGES_427_Dir" Attributes="0" KeyPath="atk10.mo_253" Type="0"/>
    <ROW Component="atk10.mo_254" ComponentId="{949F2578-157D-471A-B22B-C01C934CF5D1}" Directory_="LC_MESSAGES_428_Dir" Attributes="0" KeyPath="atk10.mo_254" Type="0"/>
    <ROW Component="atk10.mo_255" ComponentId="{5C92DDBE-2254-4D34-AF1B-8C4B64565013}" Directory_="LC_MESSAGES_429_Dir" Attributes="0" KeyPath="atk10.mo_255" Type="0"/>
    <ROW Component="atk10.mo_256" ComponentId="{27E91EB0-0FB1-4F5A-BEB6-8299977E916E}" Directory_="LC_MESSAGES_430_Dir" Attributes="0" KeyPath="atk10.mo_256" Type="0"/>
    <ROW Component="atk10.mo_257" ComponentId="{36FFB258-3B93-4208-AFDD-038A6F9C498E}" Directory_="LC_MESSAGES_431_Dir" Attributes="0" KeyPath="atk10.mo_257" Type="0"/>
    <ROW Component="atk10.mo_258" ComponentId="{242590B6-7DF0-4A5D-B870-96B16A0B7319}" Directory_="LC_MESSAGES_432_Dir" Attributes="0" KeyPath="atk10.mo_258" Type="0"/>
    <ROW Component="atk10.mo_259" ComponentId="{BA26BBFC-71D7-4A12-A181-ED3BCE962D1D}" Directory_="LC_MESSAGES_433_Dir" Attributes="0" KeyPath="atk10.mo_259" Type="0"/>
    <ROW Component="atk10.mo_260" ComponentId="{4017EE43-577D-4CFA-9C3A-8E7DD5AE7595}" Directory_="LC_MESSAGES_434_Dir" Attributes="0" KeyPath="atk10.mo_260" Type="0"/>
    <ROW Component="atk10.mo_261" ComponentId="{CD5C526E-734D-4A1A-8E69-EE7E918BA756}" Directory_="LC_MESSAGES_435_Dir" Attributes="0" KeyPath="atk10.mo_261" Type="0"/>
    <ROW Component="atk10.mo_262" ComponentId="{CBA32A37-5FD7-41C1-B329-2B231E1492BB}" Directory_="LC_MESSAGES_436_Dir" Attributes="0" KeyPath="atk10.mo_262" Type="0"/>
    <ROW Component="atk10.mo_263" ComponentId="{4B5B7E7F-8751-435D-BC92-C9567174D46F}" Directory_="LC_MESSAGES_437_Dir" Attributes="0" KeyPath="atk10.mo_263" Type="0"/>
    <ROW Component="atk10.mo_264" ComponentId="{AD1BC8C6-8207-4389-AA02-859DA79191BC}" Directory_="LC_MESSAGES_438_Dir" Attributes="0" KeyPath="atk10.mo_264" Type="0"/>
    <ROW Component="atk10.mo_265" ComponentId="{54E750F1-B134-4CD0-9EF7-678B5E9420A1}" Directory_="LC_MESSAGES_439_Dir" Attributes="0" KeyPath="atk10.mo_265" Type="0"/>
    <ROW Component="atk10.mo_266" ComponentId="{E7464ECF-E1D5-4372-A562-3114C073C700}" Directory_="LC_MESSAGES_441_Dir" Attributes="0" KeyPath="atk10.mo_266" Type="0"/>
    <ROW Component="atk10.mo_267" ComponentId="{EB975A2A-C769-4B41-B6A7-8A40A3E4BD82}" Directory_="LC_MESSAGES_442_Dir" Attributes="0" KeyPath="atk10.mo_267" Type="0"/>
    <ROW Component="atk10.mo_268" ComponentId="{4972EBAB-F59A-4FFB-B4DB-B1495C3C8D74}" Directory_="LC_MESSAGES_443_Dir" Attributes="0" KeyPath="atk10.mo_268" Type="0"/>
    <ROW Component="atk10.mo_269" ComponentId="{A03AD30E-B2E0-4BF9-A5FE-4D80DE074D12}" Directory_="LC_MESSAGES_444_Dir" Attributes="0" KeyPath="atk10.mo_269" Type="0"/>
    <ROW Component="atk10.mo_270" ComponentId="{421F9EDB-9274-4485-A657-48BA2AE7B166}" Directory_="LC_MESSAGES_448_Dir" Attributes="0" KeyPath="atk10.mo_270" Type="0"/>
    <ROW Component="atk10.mo_271" ComponentId="{1D1534D7-1DE8-41E9-A361-DFF9013851CB}" Directory_="LC_MESSAGES_449_Dir" Attributes="0" KeyPath="atk10.mo_271" Type="0"/>
    <ROW Component="atk10.mo_272" ComponentId="{697F14FE-7DFC-4899-9F5B-88123A3B1E9D}" Directory_="LC_MESSAGES_450_Dir" Attributes="0" KeyPath="atk10.mo_272" Type="0"/>
    <ROW Component="atk10.mo_273" ComponentId="{50361C6F-0798-4DE8-8C29-84B3361FFD3B}" Directory_="LC_MESSAGES_451_Dir" Attributes="0" KeyPath="atk10.mo_273" Type="0"/>
    <ROW Component="atk10.mo_274" ComponentId="{3E52B167-1A42-42F8-BEC3-DA0EEDE200E6}" Directory_="LC_MESSAGES_452_Dir" Attributes="0" KeyPath="atk10.mo_274" Type="0"/>
    <ROW Component="atk10.mo_275" ComponentId="{E3E4778E-C749-421D-A6FB-21F7DA0A434F}" Directory_="LC_MESSAGES_453_Dir" Attributes="0" KeyPath="atk10.mo_275" Type="0"/>
    <ROW Component="atk10.mo_276" ComponentId="{B8F8D3FF-4D17-4E03-8D6C-DC4BBA6CF52B}" Directory_="LC_MESSAGES_454_Dir" Attributes="0" KeyPath="atk10.mo_276" Type="0"/>
    <ROW Component="cert.pem" ComponentId="{CE66904E-0093-4B8B-8040-728CBFE7935B}" Directory_="APPDIR" Attributes="0" KeyPath="cert.pem" Type="0"/>
    <ROW Component="download.png" ComponentId="{D033F768-6351-4835-9A73-C62F41DE2F46}" Directory_="etc_Dir" Attributes="0" KeyPath="download.png" Type="0"/>
    <ROW Component="freetype6.dll" ComponentId="{7FBD56B6-C09F-4BE3-9355-5D2766C0CAED}" Directory_="APPDIR" Attributes="0" KeyPath="freetype6.dll"/>
    <ROW Component="glib20.mo" ComponentId="{AF097392-9D2A-487A-9A6F-772C4E3D73A7}" Directory_="LC_MESSAGES_405_Dir" Attributes="0" KeyPath="glib20.mo_234" Type="0"/>
    <ROW Component="glib20.mo_5" ComponentId="{4956B1EB-967F-4BF8-B5CB-28DE5ABC562E}" Directory_="LC_MESSAGES_413_Dir" Attributes="0" KeyPath="glib20.mo_241" Type="0"/>
    <ROW Component="glib20.mo_6" ComponentId="{D6AAF7B4-F372-4B12-A35A-C36EC8D355E8}" Directory_="LC_MESSAGES_440_Dir" Attributes="0" KeyPath="glib20.mo_266" Type="0"/>
    <ROW Component="gtk20_properties.mo" ComponentId="{0DE462B3-5943-4D2D-AAA8-EE3C9EE683CE}" Directory_="LC_MESSAGES_350_Dir" Attributes="0" KeyPath="gtk20_properties.mo_202" Type="0"/>
    <ROW Component="gtk20_properties.mo_21" ComponentId="{C9C9B251-B8D6-4C7E-A035-2233B2A19B12}" Directory_="LC_MESSAGES_355_Dir" Attributes="0" KeyPath="gtk20_properties.mo_207" Type="0"/>
    <ROW Component="gtk20_properties.mo_22" ComponentId="{49647FBF-7C4A-48AA-8CD3-4C93779C4737}" Directory_="LC_MESSAGES_361_Dir" Attributes="0" KeyPath="gtk20_properties.mo_213" Type="0"/>
    <ROW Component="gtk20_properties.mo_23" ComponentId="{828C9981-95E5-4B9D-95AD-B476674F80A1}" Directory_="LC_MESSAGES_365_Dir" Attributes="0" KeyPath="gtk20_properties.mo_217" Type="0"/>
    <ROW Component="gtk20_properties.mo_24" ComponentId="{9B86DE75-D5CF-42A8-B021-7AA6CD525A7F}" Directory_="LC_MESSAGES_390_Dir" Attributes="0" KeyPath="gtk20_properties.mo_241" Type="0"/>
    <ROW Component="gtk20_properties.mo_25" ComponentId="{B1F2F9BA-A466-47D1-B998-7492D2ACB9A3}" Directory_="LC_MESSAGES_392_Dir" Attributes="0" KeyPath="gtk20_properties.mo_243" Type="0"/>
    <ROW Component="gtk20_properties.mo_26" ComponentId="{442B6AE2-4466-4220-B5CD-9A55D153BEEF}" Directory_="LC_MESSAGES_406_Dir" Attributes="0" KeyPath="gtk20_properties.mo_255" Type="0"/>
    <ROW Component="gtk20_properties.mo_27" ComponentId="{6E673C8C-2C73-488E-8E0F-CD38DE0B91C4}" Directory_="LC_MESSAGES_417_Dir" Attributes="0" KeyPath="gtk20_properties.mo_265" Type="0"/>
    <ROW Component="gtk20_properties.mo_28" ComponentId="{FF8138A1-8C02-4839-8D0D-8FBA6F4CE2BD}" Directory_="LC_MESSAGES_445_Dir" Attributes="0" KeyPath="gtk20_properties.mo_291" Type="0"/>
    <ROW Component="gtk20_properties.mo_29" ComponentId="{21836A53-D7B8-4102-8D72-DC2AA19A12F3}" Directory_="LC_MESSAGES_446_Dir" Attributes="0" KeyPath="gtk20_properties.mo_292" Type="0"/>
    <ROW Component="gtk20_properties.mo_30" ComponentId="{E74ED291-8A8A-4A14-AAF4-651DD524AE25}" Directory_="LC_MESSAGES_447_Dir" Attributes="0" KeyPath="gtk20_properties.mo_293" Type="0"/>
    <ROW Component="gtkrc" ComponentId="{76DEECFD-FE56-4F5F-84AE-4BBC12AF9AC6}" Directory_="gtk_2.0_Dir" Attributes="0" KeyPath="gtkrc" Type="0"/>
    <ROW Component="intl.dll" ComponentId="{02772218-F45D-44CE-A3B0-991A643870EC}" Directory_="APPDIR" Attributes="0" KeyPath="intl.dll"/>
    <ROW Component="iso_3166.xml" ComponentId="{232A21C8-130F-4B52-A3F2-AA19F708A8EC}" Directory_="iso_codes_Dir" Attributes="0" KeyPath="iso_3166.xml" Type="0"/>
    <ROW Component="libatk_1.0_0.dll" ComponentId="{E143C476-EE13-4810-A7C1-454F7CC978BF}" Directory_="APPDIR" Attributes="0" KeyPath="libatk_1.0_0.dll"/>
    <ROW Component="libcairo_2.dll" ComponentId="{69C18F8A-9215-42F5-8824-7A7D270CBA97}" Directory_="APPDIR" Attributes="0" KeyPath="libcairo_2.dll"/>
    <ROW Component="libeay32.dll" ComponentId="{D0D288B3-1771-4A32-BBD7-C51B02C1F3BF}" Directory_="APPDIR" Attributes="0" KeyPath="libeay32.dll"/>
    <ROW Component="libenchant.dll" ComponentId="{B280C722-7C9B-4DFC-818E-5831FD742AAD}" Directory_="APPDIR" Attributes="0" KeyPath="libenchant.dll"/>
    <ROW Component="libenchant_myspell.dll" ComponentId="{1E036411-7DA6-4CB6-9391-520ADDC06A58}" Directory_="enchant_Dir" Attributes="0" KeyPath="libenchant_myspell.dll"/>
    <ROW Component="libexpat_1.dll" ComponentId="{B2412F4A-5EE2-4FB6-9A94-7937DAAFC68F}" Directory_="APPDIR" Attributes="0" KeyPath="libexpat_1.dll"/>
    <ROW Component="libfontconfig_1.dll" ComponentId="{D620F60D-AF82-4D13-8B43-2F02930129D9}" Directory_="APPDIR" Attributes="0" KeyPath="libfontconfig_1.dll"/>
    <ROW Component="libgail.dll" ComponentId="{CB315B24-819D-4FC0-A4AC-6E1E18242DBA}" Directory_="modules_Dir" Attributes="0" KeyPath="libgail.dll"/>
    <ROW Component="libgdk_pixbuf_2.0_0.dll" ComponentId="{0E333A1B-AB42-4882-9809-9DF264DB659E}" Directory_="APPDIR" Attributes="0" KeyPath="libgdk_pixbuf_2.0_0.dll"/>
    <ROW Component="libgdk_win32_2.0_0.dll" ComponentId="{A2A045D4-2922-490D-BF5F-99718533BF23}" Directory_="APPDIR" Attributes="0" KeyPath="libgdk_win32_2.0_0.dll"/>
    <ROW Component="libgio_2.0_0.dll" ComponentId="{79B441FF-A4A2-4648-8DBB-482D749C81CB}" Directory_="APPDIR" Attributes="0" KeyPath="libgio_2.0_0.dll"/>
    <ROW Component="libglib_2.0_0.dll" ComponentId="{6355F70C-4072-4DBF-B0B7-1DD8D8053BAF}" Directory_="APPDIR" Attributes="0" KeyPath="libglib_2.0_0.dll"/>
    <ROW Component="libgmodule_2.0_0.dll" ComponentId="{D5AF2780-9639-4372-9EE0-3C5D4A64547E}" Directory_="APPDIR" Attributes="0" KeyPath="libgmodule_2.0_0.dll"/>
    <ROW Component="libgobject_2.0_0.dll" ComponentId="{4B04AC24-EA71-4278-A730-8BA9FB65F0F6}" Directory_="APPDIR" Attributes="0" KeyPath="libgobject_2.0_0.dll"/>
    <ROW Component="libgthread_2.0_0.dll" ComponentId="{E7FB17F0-D091-4CA5-A32A-EF4212CB821D}" Directory_="APPDIR" Attributes="0" KeyPath="libgthread_2.0_0.dll"/>
    <ROW Component="libgtk_win32_2.0_0.dll" ComponentId="{46CC44F1-43D1-4007-9057-F50FCE763017}" Directory_="APPDIR" Attributes="0" KeyPath="libgtk_win32_2.0_0.dll"/>
    <ROW Component="libpango_1.0_0.dll" ComponentId="{2B63E9F0-9D12-44F5-AC58-45EF348EEEDE}" Directory_="APPDIR" Attributes="0" KeyPath="libpango_1.0_0.dll"/>
    <ROW Component="libpangocairo_1.0_0.dll" ComponentId="{2CD17971-58A0-4B38-BCD9-AC70A2DEE124}" Directory_="APPDIR" Attributes="0" KeyPath="libpangocairo_1.0_0.dll"/>
    <ROW Component="libpangoft2_1.0_0.dll" ComponentId="{2DA32856-E5E9-4BDA-848A-92C075C08DB5}" Directory_="APPDIR" Attributes="0" KeyPath="libpangoft2_1.0_0.dll"/>
    <ROW Component="libpangowin32_1.0_0.dll" ComponentId="{0C835979-94FC-4EF1-98E0-3434840E0604}" Directory_="APPDIR" Attributes="0" KeyPath="libpangowin32_1.0_0.dll"/>
    <ROW Component="libpixmap.dll" ComponentId="{D4C39BEB-87CA-4410-BED8-FC98EC793C90}" Directory_="engines_Dir" Attributes="0" KeyPath="libpixmap.dll"/>
    <ROW Component="libpng14_14.dll" ComponentId="{9D1FD7A0-A142-4131-9002-A457AAE6F3FA}" Directory_="APPDIR" Attributes="0" KeyPath="libpng14_14.dll"/>
    <ROW Component="libwimp.dll" ComponentId="{70D7C9E1-EA9E-472D-A618-F9F94904B1FE}" Directory_="engines_Dir" Attributes="0" KeyPath="libwimp.dll"/>
    <ROW Component="libxml2.dll" ComponentId="{943F6150-D849-412B-9618-72C6EF866A7C}" Directory_="APPDIR" Attributes="0" KeyPath="libxml2.dll"/>
    <ROW Component="locale.alias" ComponentId="{18678AFC-879A-41EB-9563-AFDA4CB5BE87}" Directory_="locale_3_Dir" Attributes="0" KeyPath="locale.alias" Type="0"/>
    <ROW Component="lua51.dll" ComponentId="{A409D57F-7542-4650-8F8B-6F51ADB3B48B}" Directory_="APPDIR" Attributes="0" KeyPath="lua51.dll"/>
    <ROW Component="portable_mode" ComponentId="{8981C989-80B0-4749-A8F5-B22564C94909}" Directory_="APPDIR" Attributes="0" KeyPath="portable_mode"/>
    <ROW Component="ssleay32.dll" ComponentId="{0108EC78-A3CF-4060-9EEB-E25C0F45E8FF}" Directory_="APPDIR" Attributes="0" KeyPath="ssleay32.dll"/>
    <ROW Component="xcchecksum.dll" ComponentId="{AC652105-7FD8-412E-9598-04DD05DD4B95}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcchecksum.dll"/>
    <ROW Component="xcdoat.dll" ComponentId="{A98785B7-C8E4-42BB-9F0E-469D41C4B6F9}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcdoat.dll"/>
    <ROW Component="xchat.exe" ComponentId="{6A143F50-A592-4D89-8BC7-351B34625411}" Directory_="APPDIR" Attributes="0" KeyPath="xchat.exe"/>
    <ROW Component="xchat.mo" ComponentId="{2F968A16-F285-495C-AC28-FABDBF184F6E}" Directory_="LC_MESSAGES_Dir" Attributes="0" KeyPath="xchat.mo" Type="0"/>
    <ROW Component="xchat.mo_100" ComponentId="{C0575D36-922F-4021-BE40-E88DD1306E36}" Directory_="LC_MESSAGES_318_Dir" Attributes="0" KeyPath="xchat.mo_100" Type="0"/>
    <ROW Component="xchat.mo_101" ComponentId="{2294C317-1595-44FD-8A23-3EC2F215D1C2}" Directory_="LC_MESSAGES_319_Dir" Attributes="0" KeyPath="xchat.mo_101" Type="0"/>
    <ROW Component="xchat.mo_102" ComponentId="{4746FC0F-9C07-4A01-B4BB-7CBD635035BB}" Directory_="LC_MESSAGES_320_Dir" Attributes="0" KeyPath="xchat.mo_102" Type="0"/>
    <ROW Component="xchat.mo_103" ComponentId="{31D7501E-5E09-4E6E-B313-D2575C9874E9}" Directory_="LC_MESSAGES_321_Dir" Attributes="0" KeyPath="xchat.mo_103" Type="0"/>
    <ROW Component="xchat.mo_104" ComponentId="{1C3BBF88-65C2-4380-845B-098FF75F3B2C}" Directory_="LC_MESSAGES_322_Dir" Attributes="0" KeyPath="xchat.mo_104" Type="0"/>
    <ROW Component="xchat.mo_105" ComponentId="{A7E44F90-1512-47C1-ACD6-86EDDBC51CB7}" Directory_="LC_MESSAGES_323_Dir" Attributes="0" KeyPath="xchat.mo_105" Type="0"/>
    <ROW Component="xchat.mo_106" ComponentId="{2AF59A87-BA9D-4838-BD2F-08ACC81BF83B}" Directory_="LC_MESSAGES_324_Dir" Attributes="0" KeyPath="xchat.mo_106" Type="0"/>
    <ROW Component="xchat.mo_107" ComponentId="{E645BC65-717D-49C5-9C31-775A868E01AF}" Directory_="LC_MESSAGES_325_Dir" Attributes="0" KeyPath="xchat.mo_107" Type="0"/>
    <ROW Component="xchat.mo_108" ComponentId="{6262C151-9258-437F-BB98-8BAAD1ABD984}" Directory_="LC_MESSAGES_326_Dir" Attributes="0" KeyPath="xchat.mo_108" Type="0"/>
    <ROW Component="xchat.mo_109" ComponentId="{DAB2A2D2-3483-4B2C-AF7B-AD5407C16427}" Directory_="LC_MESSAGES_327_Dir" Attributes="0" KeyPath="xchat.mo_109" Type="0"/>
    <ROW Component="xchat.mo_110" ComponentId="{9D393BA3-DD41-4529-8F9D-C210DBD90792}" Directory_="LC_MESSAGES_328_Dir" Attributes="0" KeyPath="xchat.mo_110" Type="0"/>
    <ROW Component="xchat.mo_111" ComponentId="{9E7E1BEA-F459-4A2A-8C16-232F224FC7C6}" Directory_="LC_MESSAGES_329_Dir" Attributes="0" KeyPath="xchat.mo_111" Type="0"/>
    <ROW Component="xchat.mo_112" ComponentId="{403DC2D5-F1C2-4FF9-B711-B021A5957868}" Directory_="LC_MESSAGES_330_Dir" Attributes="0" KeyPath="xchat.mo_112" Type="0"/>
    <ROW Component="xchat.mo_113" ComponentId="{EA49851B-C1BC-419C-91E6-415A230B940C}" Directory_="LC_MESSAGES_331_Dir" Attributes="0" KeyPath="xchat.mo_113" Type="0"/>
    <ROW Component="xchat.mo_114" ComponentId="{1516F73A-3453-4244-A417-121CAAE6A810}" Directory_="LC_MESSAGES_332_Dir" Attributes="0" KeyPath="xchat.mo_114" Type="0"/>
    <ROW Component="xchat.mo_115" ComponentId="{14A3A6AF-9BF4-45E6-8D72-787D9AFE9B01}" Directory_="LC_MESSAGES_333_Dir" Attributes="0" KeyPath="xchat.mo_115" Type="0"/>
    <ROW Component="xchat.mo_116" ComponentId="{2CF8E122-5DC3-41E4-BA9E-A6F1192CA194}" Directory_="LC_MESSAGES_334_Dir" Attributes="0" KeyPath="xchat.mo_116" Type="0"/>
    <ROW Component="xchat.mo_117" ComponentId="{142070F0-2FC2-4867-B0FA-850D91E2D22C}" Directory_="LC_MESSAGES_335_Dir" Attributes="0" KeyPath="xchat.mo_117" Type="0"/>
    <ROW Component="xchat.mo_118" ComponentId="{E0481346-8553-431F-9B47-1BA19C4CF244}" Directory_="LC_MESSAGES_336_Dir" Attributes="0" KeyPath="xchat.mo_118" Type="0"/>
    <ROW Component="xchat.mo_119" ComponentId="{E7FDB94F-F933-4FC1-B27B-B969826E3706}" Directory_="LC_MESSAGES_337_Dir" Attributes="0" KeyPath="xchat.mo_119" Type="0"/>
    <ROW Component="xchat.mo_120" ComponentId="{2D01E218-0CCD-4024-92DD-B68571F296CA}" Directory_="LC_MESSAGES_338_Dir" Attributes="0" KeyPath="xchat.mo_120" Type="0"/>
    <ROW Component="xchat.mo_121" ComponentId="{CFD62259-F0FC-4FFA-9A53-B9E474E9A014}" Directory_="LC_MESSAGES_339_Dir" Attributes="0" KeyPath="xchat.mo_121" Type="0"/>
    <ROW Component="xchat.mo_122" ComponentId="{990A8112-A1E8-4C42-BAB7-9EA9909CBFCC}" Directory_="LC_MESSAGES_340_Dir" Attributes="0" KeyPath="xchat.mo_122" Type="0"/>
    <ROW Component="xchat.mo_123" ComponentId="{91EB1BAA-5A07-4A8D-B617-C1E7B72F1B60}" Directory_="LC_MESSAGES_341_Dir" Attributes="0" KeyPath="xchat.mo_123" Type="0"/>
    <ROW Component="xchat.mo_124" ComponentId="{8000E68F-A121-46EE-89E8-2F24BF875553}" Directory_="LC_MESSAGES_342_Dir" Attributes="0" KeyPath="xchat.mo_124" Type="0"/>
    <ROW Component="xchat.mo_125" ComponentId="{62F4CD4F-3B9D-4CE6-AB93-9027C4B53657}" Directory_="LC_MESSAGES_343_Dir" Attributes="0" KeyPath="xchat.mo_125" Type="0"/>
    <ROW Component="xchat.mo_126" ComponentId="{B66DE5F0-346D-4219-A7F6-9BAF39435F6D}" Directory_="LC_MESSAGES_344_Dir" Attributes="0" KeyPath="xchat.mo_126" Type="0"/>
    <ROW Component="xchat.mo_127" ComponentId="{6C84DFA8-1591-4611-BF8C-28EAF064859C}" Directory_="LC_MESSAGES_345_Dir" Attributes="0" KeyPath="xchat.mo_127" Type="0"/>
    <ROW Component="xchat.mo_128" ComponentId="{B66AC51B-E8C4-43BD-BB1D-35C6F714ABC7}" Directory_="LC_MESSAGES_346_Dir" Attributes="0" KeyPath="xchat.mo_128" Type="0"/>
    <ROW Component="xchat.mo_129" ComponentId="{39228F63-06CB-4784-B9FC-20A3450E2CD1}" Directory_="LC_MESSAGES_347_Dir" Attributes="0" KeyPath="xchat.mo_129" Type="0"/>
    <ROW Component="xchat.mo_87" ComponentId="{7E5078A3-0922-4833-86E1-5B5653B5DABB}" Directory_="LC_MESSAGES_305_Dir" Attributes="0" KeyPath="xchat.mo_87" Type="0"/>
    <ROW Component="xchat.mo_88" ComponentId="{703BDFDD-6977-4F1F-BC17-A7E81AD633F7}" Directory_="LC_MESSAGES_306_Dir" Attributes="0" KeyPath="xchat.mo_88" Type="0"/>
    <ROW Component="xchat.mo_89" ComponentId="{E0260A95-935C-469D-87E0-16117C01691F}" Directory_="LC_MESSAGES_307_Dir" Attributes="0" KeyPath="xchat.mo_89" Type="0"/>
    <ROW Component="xchat.mo_90" ComponentId="{D008A4EB-E516-47D0-B5CF-F43D7E229406}" Directory_="LC_MESSAGES_308_Dir" Attributes="0" KeyPath="xchat.mo_90" Type="0"/>
    <ROW Component="xchat.mo_91" ComponentId="{86976D1F-ED44-469E-BA42-6F10D4C9C98D}" Directory_="LC_MESSAGES_309_Dir" Attributes="0" KeyPath="xchat.mo_91" Type="0"/>
    <ROW Component="xchat.mo_92" ComponentId="{9F361E70-0B8E-4169-B660-E24BA1EA5203}" Directory_="LC_MESSAGES_310_Dir" Attributes="0" KeyPath="xchat.mo_92" Type="0"/>
    <ROW Component="xchat.mo_93" ComponentId="{C7748DE5-5108-41E0-937B-BFDA4420B3D4}" Directory_="LC_MESSAGES_311_Dir" Attributes="0" KeyPath="xchat.mo_93" Type="0"/>
    <ROW Component="xchat.mo_94" ComponentId="{1935B22B-12C1-4D4E-A05B-5201DD561DE9}" Directory_="LC_MESSAGES_312_Dir" Attributes="0" KeyPath="xchat.mo_94" Type="0"/>
    <ROW Component="xchat.mo_95" ComponentId="{53D6D512-B484-4AD2-B372-A9FD1827AE3E}" Directory_="LC_MESSAGES_313_Dir" Attributes="0" KeyPath="xchat.mo_95"/>
    <ROW Component="xchat.mo_96" ComponentId="{29A1B19C-35AA-4D74-B2E7-529D3ED30EE5}" Directory_="LC_MESSAGES_314_Dir" Attributes="0" KeyPath="xchat.mo_96"/>
    <ROW Component="xchat.mo_97" ComponentId="{8E34019B-22E9-429C-A739-DB0FA20B1910}" Directory_="LC_MESSAGES_315_Dir" Attributes="0" KeyPath="xchat.mo_97"/>
    <ROW Component="xchat.mo_98" ComponentId="{66B9BEBA-269A-4EF5-9E61-5923ADC552C9}" Directory_="LC_MESSAGES_316_Dir" Attributes="0" KeyPath="xchat.mo_98"/>
    <ROW Component="xchat.mo_99" ComponentId="{344E9C2E-C48F-4B6A-9D8D-B44A1AF084BB}" Directory_="LC_MESSAGES_317_Dir" Attributes="0" KeyPath="xchat.mo_99"/>
    <ROW Component="xchat_text.exe" ComponentId="{7DAC3044-43F4-4972-9CC9-636E0419C3C7}" Directory_="APPDIR" Attributes="0" KeyPath="xchat_text.exe"/>
    <ROW Component="xclua.dll" ComponentId="{8917B319-E158-4A09-BBE1-10A448768CBA}" Directory_="plugins_Dir" Attributes="0" KeyPath="xclua.dll"/>
    <ROW Component="xcmpcinfo.dll" ComponentId="{24ABE392-6744-407D-9CDE-C60AC1F39AF9}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcmpcinfo.dll"/>
    <ROW Component="xcperl_512.dll" ComponentId="{5A41E317-3557-4E56-A6DC-4602E024CEF5}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcperl_512.dll"/>
    <ROW Component="xcperl_514.dll" ComponentId="{98B3D6A2-F8A0-4FC2-9BBC-FA32F2BEBA94}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcperl_514.dll"/>
    <ROW Component="xcpython.dll" ComponentId="{40E7E121-9D5F-4657-AF93-0F4464DC9E6B}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcpython.dll"/>
    <ROW Component="xctcl.dll" ComponentId="{D7F87C74-F7F8-4410-B297-C2D3B4B29567}" Directory_="plugins_Dir" Attributes="0" KeyPath="xctcl.dll"/>
    <ROW Component="xcupd.dll" ComponentId="{3E6764BA-2392-4DCC-8134-970380C25945}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcupd.dll"/>
    <ROW Component="xcwinamp.dll" ComponentId="{B98AF69A-7B20-4D48-AE86-EB7D65E11DE4}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcwinamp.dll"/>
    <ROW Component="xcwmpa.dll" ComponentId="{68019777-09B8-4CE0-9DC5-9C46B123F4DC}" Directory_="plugins_Dir" Attributes="0" KeyPath="xcwmpa.dll"/>
    <ROW Component="xtray.dll" ComponentId="{4DA16C22-1F4B-431A-8834-C1490E492A98}" Directory_="plugins_Dir" Attributes="0" KeyPath="xtray.dll"/>
    <ROW Component="zlib1.dll" ComponentId="{42A63715-A1CC-43AF-B35A-B97C70DFCB3F}" Directory_="APPDIR" Attributes="0" KeyPath="zlib1.dll"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiFeatsComponent">
    <ROW Feature="Feature" Title="Translations" Description="Translations" Display="5" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName atk10.mo atk10.mo_185 atk10.mo_186 atk10.mo_187 atk10.mo_188 atk10.mo_189 atk10.mo_190 atk10.mo_191 atk10.mo_192 atk10.mo_193 atk10.mo_194 atk10.mo_195 atk10.mo_196 atk10.mo_197 atk10.mo_198 atk10.mo_199 atk10.mo_200 atk10.mo_201 atk10.mo_202 atk10.mo_203 atk10.mo_204 atk10.mo_205 atk10.mo_206 atk10.mo_207 atk10.mo_208 atk10.mo_209 atk10.mo_210 atk10.mo_211 atk10.mo_212 atk10.mo_213 atk10.mo_214 atk10.mo_215 atk10.mo_216 atk10.mo_217 atk10.mo_218 atk10.mo_219 atk10.mo_220 atk10.mo_221 atk10.mo_222 atk10.mo_223 atk10.mo_224 atk10.mo_225 atk10.mo_226 atk10.mo_227 atk10.mo_228 atk10.mo_229 atk10.mo_230 atk10.mo_231 atk10.mo_232 atk10.mo_233 atk10.mo_234 atk10.mo_235 atk10.mo_236 atk10.mo_237 atk10.mo_238 atk10.mo_239 atk10.mo_240 atk10.mo_241 atk10.mo_242 atk10.mo_243 atk10.mo_244 atk10.mo_245 atk10.mo_246 atk10.mo_247 atk10.mo_248 atk10.mo_249 atk10.mo_250 atk10.mo_251 atk10.mo_252 atk10.mo_253 atk10.mo_254 atk10.mo_255 atk10.mo_256 atk10.mo_257 atk10.mo_258 atk10.mo_259 atk10.mo_260 atk10.mo_261 atk10.mo_262 atk10.mo_263 atk10.mo_264 atk10.mo_265 atk10.mo_266 atk10.mo_267 atk10.mo_268 atk10.mo_269 atk10.mo_270 atk10.mo_271 atk10.mo_272 atk10.mo_273 atk10.mo_274 atk10.mo_275 atk10.mo_276 glib20.mo glib20.mo_5 glib20.mo_6 gtk20_properties.mo gtk20_properties.mo_21 gtk20_properties.mo_22 gtk20_properties.mo_23 gtk20_properties.mo_24 gtk20_properties.mo_25 gtk20_properties.mo_26 gtk20_properties.mo_27 gtk20_properties.mo_28 gtk20_properties.mo_29 gtk20_properties.mo_30 locale.alias xchat.mo xchat.mo_100 xchat.mo_101 xchat.mo_102 xchat.mo_103 xchat.mo_104 xchat.mo_105 xchat.mo_106 xchat.mo_107 xchat.mo_108 xchat.mo_109 xchat.mo_110 xchat.mo_111 xchat.mo_112 xchat.mo_113 xchat.mo_114 xchat.mo_115 xchat.mo_116 xchat.mo_117 xchat.mo_118 xchat.mo_119 xchat.mo_120 xchat.mo_121 xchat.mo_122 xchat.mo_123 xchat.mo_124 xchat.mo_125 xchat.mo_126 xchat.mo_127 xchat.mo_128 xchat.mo_129 xchat.mo_87 xchat.mo_88 xchat.mo_89 xchat.mo_90 xchat.mo_91 xchat.mo_92 xchat.mo_93 xchat.mo_94 xchat.mo_95 xchat.mo_96 xchat.mo_97 xchat.mo_98 xchat.mo_99"/>
    <ROW Feature="Feature_1" Title="XChat-Text" Description="XChat-Text" Display="7" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xchat_text.exe"/>
    <ROW Feature="Feature_10" Title="Language Interfaces" Description="Language Interfaces" Display="11" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName"/>
    <ROW Feature="Feature_11" Feature_Parent="Feature_10" Title="Lua" Description="Description" Display="3" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xclua.dll"/>
    <ROW Feature="Feature_12" Feature_Parent="Feature_10" Title="Perl" Description="Description" Display="5" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName"/>
    <ROW Feature="Feature_13" Feature_Parent="Feature_10" Title="Python" Description="Description" Display="7" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcpython.dll"/>
    <ROW Feature="Feature_14" Feature_Parent="Feature_10" Title="Tcl" Description="Description" Display="9" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xctcl.dll"/>
    <ROW Feature="Feature_15" Feature_Parent="Feature_12" Title="5.12" Description="Description" Display="3" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcperl_512.dll"/>
    <ROW Feature="Feature_16" Feature_Parent="Feature_12" Title="5.14" Description="Description" Display="5" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcperl_514.dll"/>
    <ROW Feature="Feature_17" Title="Portable Mode" Description="Description" Display="13" Level="0" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName portable_mode"/>
    <ROW Feature="Feature_2" Title="Plugins" Description="Plugins" Display="9" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName"/>
    <ROW Feature="Feature_3" Feature_Parent="Feature_2" Title="Checksum" Description="Checksum" Display="3" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcchecksum.dll"/>
    <ROW Feature="Feature_4" Feature_Parent="Feature_2" Title="mpcInfo" Description="mpcInfo" Display="7" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcmpcinfo.dll"/>
    <ROW Feature="Feature_5" Feature_Parent="Feature_2" Title="Update Checker" Description="Update Checker" Display="9" Level="1" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcupd.dll"/>
    <ROW Feature="Feature_6" Feature_Parent="Feature_2" Title="Winamp" Description="Winamp" Display="11" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcwinamp.dll"/>
    <ROW Feature="Feature_7" Feature_Parent="Feature_2" Title="Windows Media Player Announcer" Description="Windows Media Player Announcer" Display="13" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcwmpa.dll"/>
    <ROW Feature="Feature_8" Feature_Parent="Feature_2" Title="X-Tray" Description="X-Tray" Display="15" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xtray.dll"/>
    <ROW Feature="Feature_9" Feature_Parent="Feature_2" Title="Do At" Description="Do At" Display="5" Level="4" Directory_="APPDIR" Attributes="0" Components="AI_CustomARPName xcdoat.dll"/>
    <ROW Feature="MainFeature" Title="XChat-WDK" Description="XChat-WDK" Display="3" Level="1" Directory_="APPDIR" Attributes="16" Components="AI_CustomARPName AI_ExePath ProductInformation SHORTCUTDIR cert.pem download.png freetype6.dll gtkrc intl.dll iso_3166.xml libatk_1.0_0.dll libcairo_2.dll libeay32.dll libenchant.dll libenchant_myspell.dll libexpat_1.dll libfontconfig_1.dll libgail.dll libgdk_pixbuf_2.0_0.dll libgdk_win32_2.0_0.dll libgio_2.0_0.dll libglib_2.0_0.dll libgmodule_2.0_0.dll libgobject_2.0_0.dll libgthread_2.0_0.dll libgtk_win32_2.0_0.dll libpango_1.0_0.dll libpangocairo_1.0_0.dll libpangoft2_1.0_0.dll libpangowin32_1.0_0.dll libpixmap.dll libpng14_14.dll libwimp.dll libxml2.dll lua51.dll ssleay32.dll xchat.exe zlib1.dll"/>
    <ATTRIBUTE name="CurrentFeature" value="MainFeature"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiFilesComponent">
    <ROW File="COPYING" Component_="cert.pem" FileName="COPYING" Attributes="0" SourcePath="..\dist-x86\COPYING" SelfReg="false" NextFile="freetype6.dll"/>
    <ROW File="LICENSE.CAIRO" Component_="cert.pem" FileName="LICENS~1.CAI|LICENSE.CAIRO" Attributes="0" SourcePath="..\dist-x86\LICENSE.CAIRO" SelfReg="false" NextFile="LICENSE.ENCHANT"/>
    <ROW File="LICENSE.ENCHANT" Component_="cert.pem" FileName="LICENS~1.ENC|LICENSE.ENCHANT" Attributes="0" SourcePath="..\dist-x86\LICENSE.ENCHANT" SelfReg="false" NextFile="LICENSE.GTK"/>
    <ROW File="LICENSE.GTK" Component_="cert.pem" FileName="LICENSE.GTK" Attributes="0" SourcePath="..\dist-x86\LICENSE.GTK" SelfReg="false" NextFile="LICENSE.LUA"/>
    <ROW File="LICENSE.LUA" Component_="cert.pem" FileName="LICENSE.LUA" Attributes="0" SourcePath="..\dist-x86\LICENSE.LUA" SelfReg="false" NextFile="LICENSE.OPENSSL"/>
    <ROW File="LICENSE.OPENSSL" Component_="cert.pem" FileName="LICENS~1.OPE|LICENSE.OPENSSL" Attributes="0" SourcePath="..\dist-x86\LICENSE.OPENSSL" SelfReg="false" NextFile="LICENSE.ZLIB"/>
    <ROW File="LICENSE.ZLIB" Component_="cert.pem" FileName="LICENS~1.ZLI|LICENSE.ZLIB" Attributes="0" SourcePath="..\dist-x86\LICENSE.ZLIB" SelfReg="false" NextFile="lua51.dll"/>
    <ROW File="atk10.mo" Component_="atk10.mo" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\af\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo"/>
    <ROW File="atk10.mo_185" Component_="atk10.mo_185" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\am\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_185"/>
    <ROW File="atk10.mo_186" Component_="atk10.mo_186" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ar\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_186"/>
    <ROW File="atk10.mo_187" Component_="atk10.mo_187" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\as\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_187"/>
    <ROW File="atk10.mo_188" Component_="atk10.mo_188" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ast\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_188"/>
    <ROW File="atk10.mo_189" Component_="atk10.mo_189" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_189"/>
    <ROW File="atk10.mo_190" Component_="atk10.mo_190" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_190"/>
    <ROW File="atk10.mo_191" Component_="atk10.mo_191" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be@latin\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_191"/>
    <ROW File="atk10.mo_192" Component_="atk10.mo_192" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bg\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_192"/>
    <ROW File="atk10.mo_193" Component_="atk10.mo_193" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_193"/>
    <ROW File="atk10.mo_194" Component_="atk10.mo_194" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn_IN\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_194"/>
    <ROW File="atk10.mo_195" Component_="atk10.mo_195" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bs\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_195"/>
    <ROW File="atk10.mo_196" Component_="atk10.mo_196" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_196"/>
    <ROW File="atk10.mo_197" Component_="atk10.mo_197" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca@valencia\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_197"/>
    <ROW File="atk10.mo_198" Component_="atk10.mo_198" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cs\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_198"/>
    <ROW File="atk10.mo_199" Component_="atk10.mo_199" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cy\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_199"/>
    <ROW File="atk10.mo_200" Component_="atk10.mo_200" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\da\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_200"/>
    <ROW File="atk10.mo_201" Component_="atk10.mo_201" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\de\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_201"/>
    <ROW File="atk10.mo_202" Component_="atk10.mo_202" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\dz\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_202"/>
    <ROW File="atk10.mo_203" Component_="atk10.mo_203" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\el\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_203"/>
    <ROW File="atk10.mo_204" Component_="atk10.mo_204" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en@shaw\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_204"/>
    <ROW File="atk10.mo_205" Component_="atk10.mo_205" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_CA\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_205"/>
    <ROW File="atk10.mo_206" Component_="atk10.mo_206" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_GB\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_206"/>
    <ROW File="atk10.mo_207" Component_="atk10.mo_207" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eo\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_207"/>
    <ROW File="atk10.mo_208" Component_="atk10.mo_208" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\es\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_208"/>
    <ROW File="atk10.mo_209" Component_="atk10.mo_209" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\et\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_209"/>
    <ROW File="atk10.mo_210" Component_="atk10.mo_210" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eu\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_210"/>
    <ROW File="atk10.mo_211" Component_="atk10.mo_211" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fa\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_211"/>
    <ROW File="atk10.mo_212" Component_="atk10.mo_212" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fi\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_212"/>
    <ROW File="atk10.mo_213" Component_="atk10.mo_213" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fr\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_213"/>
    <ROW File="atk10.mo_214" Component_="atk10.mo_214" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ga\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_214"/>
    <ROW File="atk10.mo_215" Component_="atk10.mo_215" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gl\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_215"/>
    <ROW File="atk10.mo_216" Component_="atk10.mo_216" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gu\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_216"/>
    <ROW File="atk10.mo_217" Component_="atk10.mo_217" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\he\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_217"/>
    <ROW File="atk10.mo_218" Component_="atk10.mo_218" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hi\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_218"/>
    <ROW File="atk10.mo_219" Component_="atk10.mo_219" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hr\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_219"/>
    <ROW File="atk10.mo_220" Component_="atk10.mo_220" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hu\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_220"/>
    <ROW File="atk10.mo_221" Component_="atk10.mo_221" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hy\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_221"/>
    <ROW File="atk10.mo_222" Component_="atk10.mo_222" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\id\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_222"/>
    <ROW File="atk10.mo_223" Component_="atk10.mo_223" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\is\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_223"/>
    <ROW File="atk10.mo_224" Component_="atk10.mo_224" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\it\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_224"/>
    <ROW File="atk10.mo_225" Component_="atk10.mo_225" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ja\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_225"/>
    <ROW File="atk10.mo_226" Component_="atk10.mo_226" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ka\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_226"/>
    <ROW File="atk10.mo_227" Component_="atk10.mo_227" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kk\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_227"/>
    <ROW File="atk10.mo_228" Component_="atk10.mo_228" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kn\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_228"/>
    <ROW File="atk10.mo_229" Component_="atk10.mo_229" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ko\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_229"/>
    <ROW File="atk10.mo_230" Component_="atk10.mo_230" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ku\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_230"/>
    <ROW File="atk10.mo_231" Component_="atk10.mo_231" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\li\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="gtk20_properties.mo_251"/>
    <ROW File="atk10.mo_232" Component_="atk10.mo_232" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lt\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_231"/>
    <ROW File="atk10.mo_233" Component_="atk10.mo_233" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lv\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_232"/>
    <ROW File="atk10.mo_234" Component_="atk10.mo_234" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mai\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_233"/>
    <ROW File="atk10.mo_235" Component_="atk10.mo_235" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mk\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_235"/>
    <ROW File="atk10.mo_236" Component_="atk10.mo_236" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ml\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_236"/>
    <ROW File="atk10.mo_237" Component_="atk10.mo_237" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mn\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_237"/>
    <ROW File="atk10.mo_238" Component_="atk10.mo_238" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mr\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_238"/>
    <ROW File="atk10.mo_239" Component_="atk10.mo_239" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ms\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_239"/>
    <ROW File="atk10.mo_240" Component_="atk10.mo_240" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nb\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_240"/>
    <ROW File="atk10.mo_241" Component_="atk10.mo_241" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ne\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_242"/>
    <ROW File="atk10.mo_242" Component_="atk10.mo_242" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nl\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_243"/>
    <ROW File="atk10.mo_243" Component_="atk10.mo_243" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nn\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_244"/>
    <ROW File="atk10.mo_244" Component_="atk10.mo_244" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\oc\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_245"/>
    <ROW File="atk10.mo_245" Component_="atk10.mo_245" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\or\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_246"/>
    <ROW File="atk10.mo_246" Component_="atk10.mo_246" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pa\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_247"/>
    <ROW File="atk10.mo_247" Component_="atk10.mo_247" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pl\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_248"/>
    <ROW File="atk10.mo_248" Component_="atk10.mo_248" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ps\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_249"/>
    <ROW File="atk10.mo_249" Component_="atk10.mo_249" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_250"/>
    <ROW File="atk10.mo_250" Component_="atk10.mo_250" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt_BR\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_251"/>
    <ROW File="atk10.mo_251" Component_="atk10.mo_251" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ro\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_252"/>
    <ROW File="atk10.mo_252" Component_="atk10.mo_252" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ru\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_253"/>
    <ROW File="atk10.mo_253" Component_="atk10.mo_253" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\rw\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_254"/>
    <ROW File="atk10.mo_254" Component_="atk10.mo_254" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\si\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_255"/>
    <ROW File="atk10.mo_255" Component_="atk10.mo_255" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sk\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_256"/>
    <ROW File="atk10.mo_256" Component_="atk10.mo_256" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sl\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_257"/>
    <ROW File="atk10.mo_257" Component_="atk10.mo_257" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sq\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_258"/>
    <ROW File="atk10.mo_258" Component_="atk10.mo_258" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_259"/>
    <ROW File="atk10.mo_259" Component_="atk10.mo_259" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@ije\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_260"/>
    <ROW File="atk10.mo_260" Component_="atk10.mo_260" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@latin\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_261"/>
    <ROW File="atk10.mo_261" Component_="atk10.mo_261" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sv\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_262"/>
    <ROW File="atk10.mo_262" Component_="atk10.mo_262" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ta\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_263"/>
    <ROW File="atk10.mo_263" Component_="atk10.mo_263" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\te\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_264"/>
    <ROW File="atk10.mo_264" Component_="atk10.mo_264" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\th\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_265"/>
    <ROW File="atk10.mo_265" Component_="atk10.mo_265" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tk\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="gtk20_properties.mo_287"/>
    <ROW File="atk10.mo_266" Component_="atk10.mo_266" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tr\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_267"/>
    <ROW File="atk10.mo_267" Component_="atk10.mo_267" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tt\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_268"/>
    <ROW File="atk10.mo_268" Component_="atk10.mo_268" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ug\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="atk10.mo_269"/>
    <ROW File="atk10.mo_269" Component_="atk10.mo_269" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uk\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_269"/>
    <ROW File="atk10.mo_270" Component_="atk10.mo_270" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\vi\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_270"/>
    <ROW File="atk10.mo_271" Component_="atk10.mo_271" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\wa\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_271"/>
    <ROW File="atk10.mo_272" Component_="atk10.mo_272" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\xh\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_272"/>
    <ROW File="atk10.mo_273" Component_="atk10.mo_273" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\yi\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_273"/>
    <ROW File="atk10.mo_274" Component_="atk10.mo_274" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_CN\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_274"/>
    <ROW File="atk10.mo_275" Component_="atk10.mo_275" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_HK\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_275"/>
    <ROW File="atk10.mo_276" Component_="atk10.mo_276" FileName="atk10.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_TW\LC_MESSAGES\atk10.mo" SelfReg="false" NextFile="glib20.mo_276"/>
    <ROW File="cert.pem" Component_="cert.pem" FileName="cert.pem" Attributes="0" SourcePath="..\dist-x86\cert.pem" SelfReg="false" NextFile="COPYING"/>
    <ROW File="download.png" Component_="download.png" FileName="download.png" Attributes="0" SourcePath="..\dist-x86\etc\download.png" SelfReg="false" NextFile="gtkrc"/>
    <ROW File="freetype6.dll" Component_="freetype6.dll" FileName="freety~1.dll|freetype6.dll" Attributes="0" SourcePath="..\dist-x86\freetype6.dll" SelfReg="false" NextFile="intl.dll"/>
    <ROW File="glib20.mo" Component_="atk10.mo" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\af\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo"/>
    <ROW File="glib20.mo_185" Component_="atk10.mo_185" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\am\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_201"/>
    <ROW File="glib20.mo_186" Component_="atk10.mo_186" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ar\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_203"/>
    <ROW File="glib20.mo_187" Component_="atk10.mo_187" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\as\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_204"/>
    <ROW File="glib20.mo_188" Component_="atk10.mo_188" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ast\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_205"/>
    <ROW File="glib20.mo_189" Component_="atk10.mo_189" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_206"/>
    <ROW File="glib20.mo_190" Component_="atk10.mo_190" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_208"/>
    <ROW File="glib20.mo_191" Component_="atk10.mo_191" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be@latin\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_209"/>
    <ROW File="glib20.mo_192" Component_="atk10.mo_192" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bg\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_210"/>
    <ROW File="glib20.mo_193" Component_="atk10.mo_193" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_211"/>
    <ROW File="glib20.mo_194" Component_="atk10.mo_194" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn_IN\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_212"/>
    <ROW File="glib20.mo_195" Component_="atk10.mo_195" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bs\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_214"/>
    <ROW File="glib20.mo_196" Component_="atk10.mo_196" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_215"/>
    <ROW File="glib20.mo_197" Component_="atk10.mo_197" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca@valencia\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_216"/>
    <ROW File="glib20.mo_198" Component_="atk10.mo_198" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cs\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_218"/>
    <ROW File="glib20.mo_199" Component_="atk10.mo_199" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cy\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_219"/>
    <ROW File="glib20.mo_200" Component_="atk10.mo_200" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\da\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_220"/>
    <ROW File="glib20.mo_201" Component_="atk10.mo_201" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\de\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_221"/>
    <ROW File="glib20.mo_202" Component_="atk10.mo_202" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\dz\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_222"/>
    <ROW File="glib20.mo_203" Component_="atk10.mo_203" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\el\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_223"/>
    <ROW File="glib20.mo_204" Component_="atk10.mo_204" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en@shaw\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="atk10.mo_205"/>
    <ROW File="glib20.mo_205" Component_="atk10.mo_205" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_CA\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_224"/>
    <ROW File="glib20.mo_206" Component_="atk10.mo_206" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_GB\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_225"/>
    <ROW File="glib20.mo_207" Component_="atk10.mo_207" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eo\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_226"/>
    <ROW File="glib20.mo_208" Component_="atk10.mo_208" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\es\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_227"/>
    <ROW File="glib20.mo_209" Component_="atk10.mo_209" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\et\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_228"/>
    <ROW File="glib20.mo_210" Component_="atk10.mo_210" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eu\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_229"/>
    <ROW File="glib20.mo_211" Component_="atk10.mo_211" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fa\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_230"/>
    <ROW File="glib20.mo_212" Component_="atk10.mo_212" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fi\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_231"/>
    <ROW File="glib20.mo_213" Component_="atk10.mo_213" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fr\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_232"/>
    <ROW File="glib20.mo_214" Component_="atk10.mo_214" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ga\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_233"/>
    <ROW File="glib20.mo_215" Component_="atk10.mo_215" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gl\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_234"/>
    <ROW File="glib20.mo_216" Component_="atk10.mo_216" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gu\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_235"/>
    <ROW File="glib20.mo_217" Component_="atk10.mo_217" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\he\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_236"/>
    <ROW File="glib20.mo_218" Component_="atk10.mo_218" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hi\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_237"/>
    <ROW File="glib20.mo_219" Component_="atk10.mo_219" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hr\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_238"/>
    <ROW File="glib20.mo_220" Component_="atk10.mo_220" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hu\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_239"/>
    <ROW File="glib20.mo_221" Component_="atk10.mo_221" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hy\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_240"/>
    <ROW File="glib20.mo_222" Component_="atk10.mo_222" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\id\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_242"/>
    <ROW File="glib20.mo_223" Component_="atk10.mo_223" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\is\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_244"/>
    <ROW File="glib20.mo_224" Component_="atk10.mo_224" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\it\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_245"/>
    <ROW File="glib20.mo_225" Component_="atk10.mo_225" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ja\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_246"/>
    <ROW File="glib20.mo_226" Component_="atk10.mo_226" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ka\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_247"/>
    <ROW File="glib20.mo_227" Component_="atk10.mo_227" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kk\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="atk10.mo_228"/>
    <ROW File="glib20.mo_228" Component_="atk10.mo_228" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kn\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_248"/>
    <ROW File="glib20.mo_229" Component_="atk10.mo_229" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ko\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_249"/>
    <ROW File="glib20.mo_230" Component_="atk10.mo_230" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ku\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_250"/>
    <ROW File="glib20.mo_231" Component_="atk10.mo_232" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lt\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_252"/>
    <ROW File="glib20.mo_232" Component_="atk10.mo_233" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lv\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_253"/>
    <ROW File="glib20.mo_233" Component_="atk10.mo_234" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mai\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_254"/>
    <ROW File="glib20.mo_234" Component_="glib20.mo" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mg\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_255"/>
    <ROW File="glib20.mo_235" Component_="atk10.mo_235" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mk\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_256"/>
    <ROW File="glib20.mo_236" Component_="atk10.mo_236" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ml\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_257"/>
    <ROW File="glib20.mo_237" Component_="atk10.mo_237" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mn\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_258"/>
    <ROW File="glib20.mo_238" Component_="atk10.mo_238" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mr\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_259"/>
    <ROW File="glib20.mo_239" Component_="atk10.mo_239" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ms\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_260"/>
    <ROW File="glib20.mo_240" Component_="atk10.mo_240" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nb\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_261"/>
    <ROW File="glib20.mo_241" Component_="glib20.mo_5" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nds\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="atk10.mo_241"/>
    <ROW File="glib20.mo_242" Component_="atk10.mo_241" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ne\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_262"/>
    <ROW File="glib20.mo_243" Component_="atk10.mo_242" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nl\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_263"/>
    <ROW File="glib20.mo_244" Component_="atk10.mo_243" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nn\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_264"/>
    <ROW File="glib20.mo_245" Component_="atk10.mo_244" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\oc\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_266"/>
    <ROW File="glib20.mo_246" Component_="atk10.mo_245" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\or\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_267"/>
    <ROW File="glib20.mo_247" Component_="atk10.mo_246" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pa\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_268"/>
    <ROW File="glib20.mo_248" Component_="atk10.mo_247" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pl\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_269"/>
    <ROW File="glib20.mo_249" Component_="atk10.mo_248" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ps\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_270"/>
    <ROW File="glib20.mo_250" Component_="atk10.mo_249" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_271"/>
    <ROW File="glib20.mo_251" Component_="atk10.mo_250" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt_BR\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_272"/>
    <ROW File="glib20.mo_252" Component_="atk10.mo_251" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ro\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_273"/>
    <ROW File="glib20.mo_253" Component_="atk10.mo_252" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ru\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_274"/>
    <ROW File="glib20.mo_254" Component_="atk10.mo_253" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\rw\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_275"/>
    <ROW File="glib20.mo_255" Component_="atk10.mo_254" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\si\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_276"/>
    <ROW File="glib20.mo_256" Component_="atk10.mo_255" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sk\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_277"/>
    <ROW File="glib20.mo_257" Component_="atk10.mo_256" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sl\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_278"/>
    <ROW File="glib20.mo_258" Component_="atk10.mo_257" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sq\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_279"/>
    <ROW File="glib20.mo_259" Component_="atk10.mo_258" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_280"/>
    <ROW File="glib20.mo_260" Component_="atk10.mo_259" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@ije\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_281"/>
    <ROW File="glib20.mo_261" Component_="atk10.mo_260" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@latin\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_282"/>
    <ROW File="glib20.mo_262" Component_="atk10.mo_261" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sv\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_283"/>
    <ROW File="glib20.mo_263" Component_="atk10.mo_262" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ta\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_284"/>
    <ROW File="glib20.mo_264" Component_="atk10.mo_263" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\te\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_285"/>
    <ROW File="glib20.mo_265" Component_="atk10.mo_264" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\th\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_286"/>
    <ROW File="glib20.mo_266" Component_="glib20.mo_6" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tl\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="atk10.mo_266"/>
    <ROW File="glib20.mo_267" Component_="atk10.mo_266" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tr\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_288"/>
    <ROW File="glib20.mo_268" Component_="atk10.mo_267" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tt\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_289"/>
    <ROW File="glib20.mo_269" Component_="atk10.mo_269" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uk\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_290"/>
    <ROW File="glib20.mo_270" Component_="atk10.mo_270" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\vi\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_294"/>
    <ROW File="glib20.mo_271" Component_="atk10.mo_271" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\wa\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_295"/>
    <ROW File="glib20.mo_272" Component_="atk10.mo_272" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\xh\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_296"/>
    <ROW File="glib20.mo_273" Component_="atk10.mo_273" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\yi\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_297"/>
    <ROW File="glib20.mo_274" Component_="atk10.mo_274" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_CN\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_298"/>
    <ROW File="glib20.mo_275" Component_="atk10.mo_275" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_HK\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_299"/>
    <ROW File="glib20.mo_276" Component_="atk10.mo_276" FileName="glib20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_TW\LC_MESSAGES\glib20.mo" SelfReg="false" NextFile="gtk20_properties.mo_300"/>
    <ROW File="gtk20.mo" Component_="atk10.mo" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\af\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_185"/>
    <ROW File="gtk20.mo_201" Component_="atk10.mo_185" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\am\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_202"/>
    <ROW File="gtk20.mo_202" Component_="gtk20_properties.mo" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ang\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_186"/>
    <ROW File="gtk20.mo_203" Component_="atk10.mo_186" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ar\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_187"/>
    <ROW File="gtk20.mo_204" Component_="atk10.mo_187" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\as\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_188"/>
    <ROW File="gtk20.mo_205" Component_="atk10.mo_188" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ast\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_189"/>
    <ROW File="gtk20.mo_206" Component_="atk10.mo_189" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_207"/>
    <ROW File="gtk20.mo_207" Component_="gtk20_properties.mo_21" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az_IR\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_190"/>
    <ROW File="gtk20.mo_208" Component_="atk10.mo_190" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_191"/>
    <ROW File="gtk20.mo_209" Component_="atk10.mo_191" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be@latin\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_192"/>
    <ROW File="gtk20.mo_210" Component_="atk10.mo_192" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bg\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_193"/>
    <ROW File="gtk20.mo_211" Component_="atk10.mo_193" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_194"/>
    <ROW File="gtk20.mo_212" Component_="atk10.mo_194" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn_IN\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_213"/>
    <ROW File="gtk20.mo_213" Component_="gtk20_properties.mo_22" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\br\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_195"/>
    <ROW File="gtk20.mo_214" Component_="atk10.mo_195" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bs\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_196"/>
    <ROW File="gtk20.mo_215" Component_="atk10.mo_196" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_197"/>
    <ROW File="gtk20.mo_216" Component_="atk10.mo_197" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca@valencia\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_217"/>
    <ROW File="gtk20.mo_217" Component_="gtk20_properties.mo_23" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\crh\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_198"/>
    <ROW File="gtk20.mo_218" Component_="atk10.mo_198" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cs\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_199"/>
    <ROW File="gtk20.mo_219" Component_="atk10.mo_199" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cy\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_200"/>
    <ROW File="gtk20.mo_220" Component_="atk10.mo_200" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\da\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_201"/>
    <ROW File="gtk20.mo_221" Component_="atk10.mo_201" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\de\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_202"/>
    <ROW File="gtk20.mo_222" Component_="atk10.mo_202" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\dz\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_203"/>
    <ROW File="gtk20.mo_223" Component_="atk10.mo_203" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\el\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_204"/>
    <ROW File="gtk20.mo_224" Component_="atk10.mo_205" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_CA\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_206"/>
    <ROW File="gtk20.mo_225" Component_="atk10.mo_206" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_GB\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_207"/>
    <ROW File="gtk20.mo_226" Component_="atk10.mo_207" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eo\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_208"/>
    <ROW File="gtk20.mo_227" Component_="atk10.mo_208" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\es\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_209"/>
    <ROW File="gtk20.mo_228" Component_="atk10.mo_209" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\et\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_210"/>
    <ROW File="gtk20.mo_229" Component_="atk10.mo_210" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eu\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_211"/>
    <ROW File="gtk20.mo_230" Component_="atk10.mo_211" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fa\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_212"/>
    <ROW File="gtk20.mo_231" Component_="atk10.mo_212" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fi\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_213"/>
    <ROW File="gtk20.mo_232" Component_="atk10.mo_213" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fr\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_214"/>
    <ROW File="gtk20.mo_233" Component_="atk10.mo_214" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ga\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_215"/>
    <ROW File="gtk20.mo_234" Component_="atk10.mo_215" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gl\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_216"/>
    <ROW File="gtk20.mo_235" Component_="atk10.mo_216" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gu\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_217"/>
    <ROW File="gtk20.mo_236" Component_="atk10.mo_217" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\he\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_218"/>
    <ROW File="gtk20.mo_237" Component_="atk10.mo_218" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hi\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_219"/>
    <ROW File="gtk20.mo_238" Component_="atk10.mo_219" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hr\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_220"/>
    <ROW File="gtk20.mo_239" Component_="atk10.mo_220" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hu\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_221"/>
    <ROW File="gtk20.mo_240" Component_="atk10.mo_221" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hy\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_241"/>
    <ROW File="gtk20.mo_241" Component_="gtk20_properties.mo_24" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ia\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_222"/>
    <ROW File="gtk20.mo_242" Component_="atk10.mo_222" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\id\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_243"/>
    <ROW File="gtk20.mo_243" Component_="gtk20_properties.mo_25" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\io\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_223"/>
    <ROW File="gtk20.mo_244" Component_="atk10.mo_223" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\is\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_224"/>
    <ROW File="gtk20.mo_245" Component_="atk10.mo_224" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\it\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_225"/>
    <ROW File="gtk20.mo_246" Component_="atk10.mo_225" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ja\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_226"/>
    <ROW File="gtk20.mo_247" Component_="atk10.mo_226" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ka\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_227"/>
    <ROW File="gtk20.mo_248" Component_="atk10.mo_228" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kn\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_229"/>
    <ROW File="gtk20.mo_249" Component_="atk10.mo_229" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ko\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_230"/>
    <ROW File="gtk20.mo_250" Component_="atk10.mo_230" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ku\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_231"/>
    <ROW File="gtk20.mo_251" Component_="atk10.mo_231" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\li\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="locale.alias"/>
    <ROW File="gtk20.mo_252" Component_="atk10.mo_232" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lt\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_233"/>
    <ROW File="gtk20.mo_253" Component_="atk10.mo_233" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lv\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_234"/>
    <ROW File="gtk20.mo_254" Component_="atk10.mo_234" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mai\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="glib20.mo_234"/>
    <ROW File="gtk20.mo_255" Component_="gtk20_properties.mo_26" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mi\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_235"/>
    <ROW File="gtk20.mo_256" Component_="atk10.mo_235" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mk\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_236"/>
    <ROW File="gtk20.mo_257" Component_="atk10.mo_236" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ml\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_237"/>
    <ROW File="gtk20.mo_258" Component_="atk10.mo_237" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mn\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_238"/>
    <ROW File="gtk20.mo_259" Component_="atk10.mo_238" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mr\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_239"/>
    <ROW File="gtk20.mo_260" Component_="atk10.mo_239" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ms\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_240"/>
    <ROW File="gtk20.mo_261" Component_="atk10.mo_240" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nb\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="glib20.mo_241"/>
    <ROW File="gtk20.mo_262" Component_="atk10.mo_241" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ne\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_242"/>
    <ROW File="gtk20.mo_263" Component_="atk10.mo_242" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nl\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_243"/>
    <ROW File="gtk20.mo_264" Component_="atk10.mo_243" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nn\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_265"/>
    <ROW File="gtk20.mo_265" Component_="gtk20_properties.mo_27" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nso\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_244"/>
    <ROW File="gtk20.mo_266" Component_="atk10.mo_244" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\oc\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_245"/>
    <ROW File="gtk20.mo_267" Component_="atk10.mo_245" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\or\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_246"/>
    <ROW File="gtk20.mo_268" Component_="atk10.mo_246" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pa\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_247"/>
    <ROW File="gtk20.mo_269" Component_="atk10.mo_247" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pl\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_248"/>
    <ROW File="gtk20.mo_270" Component_="atk10.mo_248" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ps\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_249"/>
    <ROW File="gtk20.mo_271" Component_="atk10.mo_249" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_250"/>
    <ROW File="gtk20.mo_272" Component_="atk10.mo_250" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt_BR\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_251"/>
    <ROW File="gtk20.mo_273" Component_="atk10.mo_251" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ro\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_252"/>
    <ROW File="gtk20.mo_274" Component_="atk10.mo_252" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ru\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_253"/>
    <ROW File="gtk20.mo_275" Component_="atk10.mo_253" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\rw\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_254"/>
    <ROW File="gtk20.mo_276" Component_="atk10.mo_254" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\si\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_255"/>
    <ROW File="gtk20.mo_277" Component_="atk10.mo_255" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sk\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_256"/>
    <ROW File="gtk20.mo_278" Component_="atk10.mo_256" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sl\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_257"/>
    <ROW File="gtk20.mo_279" Component_="atk10.mo_257" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sq\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_258"/>
    <ROW File="gtk20.mo_280" Component_="atk10.mo_258" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_259"/>
    <ROW File="gtk20.mo_281" Component_="atk10.mo_259" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@ije\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_260"/>
    <ROW File="gtk20.mo_282" Component_="atk10.mo_260" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@latin\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_261"/>
    <ROW File="gtk20.mo_283" Component_="atk10.mo_261" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sv\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_262"/>
    <ROW File="gtk20.mo_284" Component_="atk10.mo_262" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ta\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_263"/>
    <ROW File="gtk20.mo_285" Component_="atk10.mo_263" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\te\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_264"/>
    <ROW File="gtk20.mo_286" Component_="atk10.mo_264" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\th\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_265"/>
    <ROW File="gtk20.mo_287" Component_="atk10.mo_265" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tk\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="glib20.mo_266"/>
    <ROW File="gtk20.mo_288" Component_="atk10.mo_266" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tr\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_267"/>
    <ROW File="gtk20.mo_289" Component_="atk10.mo_267" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tt\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_268"/>
    <ROW File="gtk20.mo_290" Component_="atk10.mo_269" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uk\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_291"/>
    <ROW File="gtk20.mo_291" Component_="gtk20_properties.mo_28" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ur\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_292"/>
    <ROW File="gtk20.mo_292" Component_="gtk20_properties.mo_29" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uz\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="gtk20_properties.mo_293"/>
    <ROW File="gtk20.mo_293" Component_="gtk20_properties.mo_30" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uz@cyrillic\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_270"/>
    <ROW File="gtk20.mo_294" Component_="atk10.mo_270" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\vi\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_271"/>
    <ROW File="gtk20.mo_295" Component_="atk10.mo_271" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\wa\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_272"/>
    <ROW File="gtk20.mo_296" Component_="atk10.mo_272" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\xh\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_273"/>
    <ROW File="gtk20.mo_297" Component_="atk10.mo_273" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\yi\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_274"/>
    <ROW File="gtk20.mo_298" Component_="atk10.mo_274" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_CN\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_275"/>
    <ROW File="gtk20.mo_299" Component_="atk10.mo_275" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_HK\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="atk10.mo_276"/>
    <ROW File="gtk20.mo_300" Component_="atk10.mo_276" FileName="gtk20.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_TW\LC_MESSAGES\gtk20.mo" SelfReg="false" NextFile="iso_3166.xml"/>
    <ROW File="gtk20_properties.mo" Component_="atk10.mo" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\af\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo"/>
    <ROW File="gtk20_properties.mo_201" Component_="atk10.mo_185" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\am\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_201"/>
    <ROW File="gtk20_properties.mo_202" Component_="gtk20_properties.mo" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ang\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_202"/>
    <ROW File="gtk20_properties.mo_203" Component_="atk10.mo_186" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ar\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_203"/>
    <ROW File="gtk20_properties.mo_204" Component_="atk10.mo_187" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\as\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_204"/>
    <ROW File="gtk20_properties.mo_205" Component_="atk10.mo_188" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ast\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_205"/>
    <ROW File="gtk20_properties.mo_206" Component_="atk10.mo_189" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_206"/>
    <ROW File="gtk20_properties.mo_207" Component_="gtk20_properties.mo_21" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\az_IR\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_207"/>
    <ROW File="gtk20_properties.mo_208" Component_="atk10.mo_190" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_208"/>
    <ROW File="gtk20_properties.mo_209" Component_="atk10.mo_191" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\be@latin\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_209"/>
    <ROW File="gtk20_properties.mo_210" Component_="atk10.mo_192" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bg\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_210"/>
    <ROW File="gtk20_properties.mo_211" Component_="atk10.mo_193" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_211"/>
    <ROW File="gtk20_properties.mo_212" Component_="atk10.mo_194" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bn_IN\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_212"/>
    <ROW File="gtk20_properties.mo_213" Component_="gtk20_properties.mo_22" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\br\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_213"/>
    <ROW File="gtk20_properties.mo_214" Component_="atk10.mo_195" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\bs\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_214"/>
    <ROW File="gtk20_properties.mo_215" Component_="atk10.mo_196" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_215"/>
    <ROW File="gtk20_properties.mo_216" Component_="atk10.mo_197" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ca@valencia\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_216"/>
    <ROW File="gtk20_properties.mo_217" Component_="gtk20_properties.mo_23" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\crh\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_217"/>
    <ROW File="gtk20_properties.mo_218" Component_="atk10.mo_198" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cs\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_218"/>
    <ROW File="gtk20_properties.mo_219" Component_="atk10.mo_199" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\cy\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_219"/>
    <ROW File="gtk20_properties.mo_220" Component_="atk10.mo_200" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\da\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_220"/>
    <ROW File="gtk20_properties.mo_221" Component_="atk10.mo_201" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\de\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_221"/>
    <ROW File="gtk20_properties.mo_222" Component_="atk10.mo_202" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\dz\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_222"/>
    <ROW File="gtk20_properties.mo_223" Component_="atk10.mo_203" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\el\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_223"/>
    <ROW File="gtk20_properties.mo_224" Component_="atk10.mo_205" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_CA\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_224"/>
    <ROW File="gtk20_properties.mo_225" Component_="atk10.mo_206" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\en_GB\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_225"/>
    <ROW File="gtk20_properties.mo_226" Component_="atk10.mo_207" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eo\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_226"/>
    <ROW File="gtk20_properties.mo_227" Component_="atk10.mo_208" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\es\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_227"/>
    <ROW File="gtk20_properties.mo_228" Component_="atk10.mo_209" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\et\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_228"/>
    <ROW File="gtk20_properties.mo_229" Component_="atk10.mo_210" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\eu\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_229"/>
    <ROW File="gtk20_properties.mo_230" Component_="atk10.mo_211" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fa\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_230"/>
    <ROW File="gtk20_properties.mo_231" Component_="atk10.mo_212" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fi\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_231"/>
    <ROW File="gtk20_properties.mo_232" Component_="atk10.mo_213" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\fr\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_232"/>
    <ROW File="gtk20_properties.mo_233" Component_="atk10.mo_214" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ga\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_233"/>
    <ROW File="gtk20_properties.mo_234" Component_="atk10.mo_215" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gl\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_234"/>
    <ROW File="gtk20_properties.mo_235" Component_="atk10.mo_216" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\gu\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_235"/>
    <ROW File="gtk20_properties.mo_236" Component_="atk10.mo_217" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\he\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_236"/>
    <ROW File="gtk20_properties.mo_237" Component_="atk10.mo_218" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hi\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_237"/>
    <ROW File="gtk20_properties.mo_238" Component_="atk10.mo_219" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hr\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_238"/>
    <ROW File="gtk20_properties.mo_239" Component_="atk10.mo_220" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hu\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_239"/>
    <ROW File="gtk20_properties.mo_240" Component_="atk10.mo_221" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\hy\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_240"/>
    <ROW File="gtk20_properties.mo_241" Component_="gtk20_properties.mo_24" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ia\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_241"/>
    <ROW File="gtk20_properties.mo_242" Component_="atk10.mo_222" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\id\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_242"/>
    <ROW File="gtk20_properties.mo_243" Component_="gtk20_properties.mo_25" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\io\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_243"/>
    <ROW File="gtk20_properties.mo_244" Component_="atk10.mo_223" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\is\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_244"/>
    <ROW File="gtk20_properties.mo_245" Component_="atk10.mo_224" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\it\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_245"/>
    <ROW File="gtk20_properties.mo_246" Component_="atk10.mo_225" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ja\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_246"/>
    <ROW File="gtk20_properties.mo_247" Component_="atk10.mo_226" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ka\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_247"/>
    <ROW File="gtk20_properties.mo_248" Component_="atk10.mo_228" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\kn\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_248"/>
    <ROW File="gtk20_properties.mo_249" Component_="atk10.mo_229" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ko\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_249"/>
    <ROW File="gtk20_properties.mo_250" Component_="atk10.mo_230" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ku\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_250"/>
    <ROW File="gtk20_properties.mo_251" Component_="atk10.mo_231" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\li\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_251"/>
    <ROW File="gtk20_properties.mo_252" Component_="atk10.mo_232" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lt\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_252"/>
    <ROW File="gtk20_properties.mo_253" Component_="atk10.mo_233" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\lv\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_253"/>
    <ROW File="gtk20_properties.mo_254" Component_="atk10.mo_234" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mai\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_254"/>
    <ROW File="gtk20_properties.mo_255" Component_="gtk20_properties.mo_26" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mi\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_255"/>
    <ROW File="gtk20_properties.mo_256" Component_="atk10.mo_235" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mk\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_256"/>
    <ROW File="gtk20_properties.mo_257" Component_="atk10.mo_236" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ml\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_257"/>
    <ROW File="gtk20_properties.mo_258" Component_="atk10.mo_237" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mn\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_258"/>
    <ROW File="gtk20_properties.mo_259" Component_="atk10.mo_238" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\mr\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_259"/>
    <ROW File="gtk20_properties.mo_260" Component_="atk10.mo_239" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ms\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_260"/>
    <ROW File="gtk20_properties.mo_261" Component_="atk10.mo_240" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nb\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_261"/>
    <ROW File="gtk20_properties.mo_262" Component_="atk10.mo_241" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ne\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_262"/>
    <ROW File="gtk20_properties.mo_263" Component_="atk10.mo_242" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nl\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_263"/>
    <ROW File="gtk20_properties.mo_264" Component_="atk10.mo_243" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nn\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_264"/>
    <ROW File="gtk20_properties.mo_265" Component_="gtk20_properties.mo_27" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\nso\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_265"/>
    <ROW File="gtk20_properties.mo_266" Component_="atk10.mo_244" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\oc\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_266"/>
    <ROW File="gtk20_properties.mo_267" Component_="atk10.mo_245" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\or\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_267"/>
    <ROW File="gtk20_properties.mo_268" Component_="atk10.mo_246" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pa\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_268"/>
    <ROW File="gtk20_properties.mo_269" Component_="atk10.mo_247" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pl\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_269"/>
    <ROW File="gtk20_properties.mo_270" Component_="atk10.mo_248" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ps\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_270"/>
    <ROW File="gtk20_properties.mo_271" Component_="atk10.mo_249" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_271"/>
    <ROW File="gtk20_properties.mo_272" Component_="atk10.mo_250" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\pt_BR\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_272"/>
    <ROW File="gtk20_properties.mo_273" Component_="atk10.mo_251" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ro\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_273"/>
    <ROW File="gtk20_properties.mo_274" Component_="atk10.mo_252" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ru\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_274"/>
    <ROW File="gtk20_properties.mo_275" Component_="atk10.mo_253" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\rw\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_275"/>
    <ROW File="gtk20_properties.mo_276" Component_="atk10.mo_254" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\si\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_276"/>
    <ROW File="gtk20_properties.mo_277" Component_="atk10.mo_255" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sk\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_277"/>
    <ROW File="gtk20_properties.mo_278" Component_="atk10.mo_256" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sl\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_278"/>
    <ROW File="gtk20_properties.mo_279" Component_="atk10.mo_257" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sq\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_279"/>
    <ROW File="gtk20_properties.mo_280" Component_="atk10.mo_258" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_280"/>
    <ROW File="gtk20_properties.mo_281" Component_="atk10.mo_259" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@ije\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_281"/>
    <ROW File="gtk20_properties.mo_282" Component_="atk10.mo_260" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sr@latin\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_282"/>
    <ROW File="gtk20_properties.mo_283" Component_="atk10.mo_261" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\sv\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_283"/>
    <ROW File="gtk20_properties.mo_284" Component_="atk10.mo_262" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ta\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_284"/>
    <ROW File="gtk20_properties.mo_285" Component_="atk10.mo_263" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\te\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_285"/>
    <ROW File="gtk20_properties.mo_286" Component_="atk10.mo_264" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\th\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_286"/>
    <ROW File="gtk20_properties.mo_287" Component_="atk10.mo_265" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tk\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_287"/>
    <ROW File="gtk20_properties.mo_288" Component_="atk10.mo_266" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tr\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_288"/>
    <ROW File="gtk20_properties.mo_289" Component_="atk10.mo_267" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\tt\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_289"/>
    <ROW File="gtk20_properties.mo_290" Component_="atk10.mo_269" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uk\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_290"/>
    <ROW File="gtk20_properties.mo_291" Component_="gtk20_properties.mo_28" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\ur\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_291"/>
    <ROW File="gtk20_properties.mo_292" Component_="gtk20_properties.mo_29" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uz\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_292"/>
    <ROW File="gtk20_properties.mo_293" Component_="gtk20_properties.mo_30" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\uz@cyrillic\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_293"/>
    <ROW File="gtk20_properties.mo_294" Component_="atk10.mo_270" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\vi\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_294"/>
    <ROW File="gtk20_properties.mo_295" Component_="atk10.mo_271" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\wa\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_295"/>
    <ROW File="gtk20_properties.mo_296" Component_="atk10.mo_272" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\xh\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_296"/>
    <ROW File="gtk20_properties.mo_297" Component_="atk10.mo_273" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\yi\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_297"/>
    <ROW File="gtk20_properties.mo_298" Component_="atk10.mo_274" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_CN\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_298"/>
    <ROW File="gtk20_properties.mo_299" Component_="atk10.mo_275" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_HK\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_299"/>
    <ROW File="gtk20_properties.mo_300" Component_="atk10.mo_276" FileName="gtk20-~1.mo|gtk20-properties.mo" Attributes="0" SourcePath="..\dist-x86\share\locale\zh_TW\LC_MESSAGES\gtk20-properties.mo" SelfReg="false" NextFile="gtk20.mo_300"/>
    <ROW File="gtkpref.png" Component_="download.png" FileName="gtkpref.png" Attributes="0" SourcePath="..\dist-x86\etc\gtkpref.png" SelfReg="false" NextFile="music.png"/>
    <ROW File="gtkrc" Component_="gtkrc" FileName="gtkrc" Attributes="0" SourcePath="..\dist-x86\etc\gtk-2.0\gtkrc" SelfReg="false" NextFile="gtkpref.png"/>
    <ROW File="intl.dll" Component_="intl.dll" FileName="intl.dll" Attributes="0" SourcePath="..\dist-x86\intl.dll" SelfReg="false" NextFile="libatk_1.0_0.dll"/>
    <ROW File="iso_3166.xml" Component_="iso_3166.xml" FileName="iso_3166.xml" Attributes="0" SourcePath="..\dist-x86\share\xml\iso-codes\iso_3166.xml" SelfReg="false" NextFile="iso_639.xml"/>
    <ROW File="iso_639.xml" Component_="iso_3166.xml" FileName="iso_639.xml" Attributes="0" SourcePath="..\dist-x86\share\xml\iso-codes\iso_639.xml" SelfReg="false" NextFile="cert.pem"/>
    <ROW File="libatk_1.0_0.dll" Component_="libatk_1.0_0.dll" FileName="libatk~1.dll|libatk-1.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libatk-1.0-0.dll" SelfReg="false" NextFile="libcairo_2.dll"/>
    <ROW File="libcairo_2.dll" Component_="libcairo_2.dll" FileName="libcai~1.dll|libcairo-2.dll" Attributes="0" SourcePath="..\dist-x86\libcairo-2.dll" SelfReg="false" NextFile="libeay32.dll"/>
    <ROW File="libeay32.dll" Component_="libeay32.dll" FileName="libeay32.dll" Attributes="0" SourcePath="..\dist-x86\libeay32.dll" SelfReg="false" NextFile="libenchant.dll"/>
    <ROW File="libenchant.dll" Component_="libenchant.dll" FileName="libenc~1.dll|libenchant.dll" Attributes="0" SourcePath="..\dist-x86\libenchant.dll" SelfReg="false" NextFile="libexpat_1.dll"/>
    <ROW File="libenchant_myspell.dll" Component_="libenchant_myspell.dll" FileName="libenc~1.dll|libenchant_myspell.dll" Attributes="0" SourcePath="..\dist-x86\lib\enchant\libenchant_myspell.dll" SelfReg="false" NextFile="libpixmap.dll"/>
    <ROW File="libexpat_1.dll" Component_="libexpat_1.dll" FileName="libexp~1.dll|libexpat-1.dll" Attributes="0" SourcePath="..\dist-x86\libexpat-1.dll" SelfReg="false" NextFile="libfontconfig_1.dll"/>
    <ROW File="libfontconfig_1.dll" Component_="libfontconfig_1.dll" FileName="libfon~1.dll|libfontconfig-1.dll" Attributes="0" SourcePath="..\dist-x86\libfontconfig-1.dll" SelfReg="false" NextFile="libgdk_pixbuf_2.0_0.dll"/>
    <ROW File="libgail.dll" Component_="libgail.dll" FileName="libgail.dll" Attributes="0" SourcePath="..\dist-x86\lib\gtk-2.0\modules\libgail.dll" SelfReg="false" NextFile="xchat.mo"/>
    <ROW File="libgdk_pixbuf_2.0_0.dll" Component_="libgdk_pixbuf_2.0_0.dll" FileName="libgdk~1.dll|libgdk_pixbuf-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgdk_pixbuf-2.0-0.dll" SelfReg="false" NextFile="libgdk_win32_2.0_0.dll"/>
    <ROW File="libgdk_win32_2.0_0.dll" Component_="libgdk_win32_2.0_0.dll" FileName="libgdk~2.dll|libgdk-win32-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgdk-win32-2.0-0.dll" SelfReg="false" NextFile="libgio_2.0_0.dll"/>
    <ROW File="libgio_2.0_0.dll" Component_="libgio_2.0_0.dll" FileName="libgio~1.dll|libgio-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgio-2.0-0.dll" SelfReg="false" NextFile="libglib_2.0_0.dll"/>
    <ROW File="libglib_2.0_0.dll" Component_="libglib_2.0_0.dll" FileName="libgli~1.dll|libglib-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libglib-2.0-0.dll" SelfReg="false" NextFile="libgmodule_2.0_0.dll"/>
    <ROW File="libgmodule_2.0_0.dll" Component_="libgmodule_2.0_0.dll" FileName="libgmo~1.dll|libgmodule-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgmodule-2.0-0.dll" SelfReg="false" NextFile="libgobject_2.0_0.dll"/>
    <ROW File="libgobject_2.0_0.dll" Component_="libgobject_2.0_0.dll" FileName="libgob~1.dll|libgobject-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgobject-2.0-0.dll" SelfReg="false" NextFile="libgthread_2.0_0.dll"/>
    <ROW File="libgthread_2.0_0.dll" Component_="libgthread_2.0_0.dll" FileName="libgth~1.dll|libgthread-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgthread-2.0-0.dll" SelfReg="false" NextFile="libgtk_win32_2.0_0.dll"/>
    <ROW File="libgtk_win32_2.0_0.dll" Component_="libgtk_win32_2.0_0.dll" FileName="libgtk~1.dll|libgtk-win32-2.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libgtk-win32-2.0-0.dll" SelfReg="false" NextFile="libpango_1.0_0.dll"/>
    <ROW File="libpango_1.0_0.dll" Component_="libpango_1.0_0.dll" FileName="libpan~1.dll|libpango-1.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libpango-1.0-0.dll" SelfReg="false" NextFile="libpangocairo_1.0_0.dll"/>
    <ROW File="libpangocairo_1.0_0.dll" Component_="libpangocairo_1.0_0.dll" FileName="libpan~2.dll|libpangocairo-1.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libpangocairo-1.0-0.dll" SelfReg="false" NextFile="libpangoft2_1.0_0.dll"/>
    <ROW File="libpangoft2_1.0_0.dll" Component_="libpangoft2_1.0_0.dll" FileName="libpan~3.dll|libpangoft2-1.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libpangoft2-1.0-0.dll" SelfReg="false" NextFile="libpangowin32_1.0_0.dll"/>
    <ROW File="libpangowin32_1.0_0.dll" Component_="libpangowin32_1.0_0.dll" FileName="libpan~4.dll|libpangowin32-1.0-0.dll" Attributes="0" SourcePath="..\dist-x86\libpangowin32-1.0-0.dll" SelfReg="false" NextFile="libpng14_14.dll"/>
    <ROW File="libpixmap.dll" Component_="libpixmap.dll" FileName="libpix~1.dll|libpixmap.dll" Attributes="0" SourcePath="..\dist-x86\lib\gtk-2.0\2.10.0\engines\libpixmap.dll" SelfReg="false" NextFile="libwimp.dll"/>
    <ROW File="libpng14_14.dll" Component_="libpng14_14.dll" FileName="libpng~1.dll|libpng14-14.dll" Attributes="0" SourcePath="..\dist-x86\libpng14-14.dll" SelfReg="false" NextFile="libxml2.dll"/>
    <ROW File="libwimp.dll" Component_="libwimp.dll" FileName="libwimp.dll" Attributes="0" SourcePath="..\dist-x86\lib\gtk-2.0\2.10.0\engines\libwimp.dll" SelfReg="false" NextFile="libgail.dll"/>
    <ROW File="libxml2.dll" Component_="libxml2.dll" FileName="libxml2.dll" Attributes="0" SourcePath="..\dist-x86\libxml2.dll" SelfReg="false" NextFile="LICENSE.CAIRO"/>
    <ROW File="locale.alias" Component_="locale.alias" FileName="locale~1.ali|locale.alias" Attributes="0" SourcePath="..\dist-x86\share\locale\locale.alias" SelfReg="false" NextFile="atk10.mo_232"/>
    <ROW File="lua51.dll" Component_="lua51.dll" FileName="lua51.dll" Attributes="0" SourcePath="..\dist-x86\lua51.dll" SelfReg="false" NextFile="portable_mode"/>
    <ROW File="music.png" Component_="download.png" FileName="music.png" Attributes="0" SourcePath="..\dist-x86\etc\music.png" SelfReg="false" NextFile="libenchant_myspell.dll"/>
    <ROW File="portable_mode" Component_="portable_mode" FileName="portab~1|portable-mode" Attributes="0" SourcePath="..\dist-x86\portable-mode" SelfReg="false" NextFile="ssleay32.dll"/>
    <ROW File="ssleay32.dll" Component_="ssleay32.dll" FileName="ssleay32.dll" Attributes="0" SourcePath="..\dist-x86\ssleay32.dll" SelfReg="false" NextFile="xchat.exe"/>
    <ROW File="xcchecksum.dll" Component_="xcchecksum.dll" FileName="xcchec~1.dll|xcchecksum.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcchecksum.dll" SelfReg="false" NextFile="xcdoat.dll"/>
    <ROW File="xcdoat.dll" Component_="xcdoat.dll" FileName="xcdoat.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcdoat.dll" SelfReg="false" NextFile="xclua.dll"/>
    <ROW File="xchat.exe" Component_="xchat.exe" FileName="xchat.exe" Attributes="0" SourcePath="..\dist-x86\xchat.exe" SelfReg="false" NextFile="xchat_text.exe"/>
    <ROW File="xchat.mo" Component_="xchat.mo" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\am\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_87"/>
    <ROW File="xchat.mo_100" Component_="xchat.mo_100" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\gl\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_101"/>
    <ROW File="xchat.mo_101" Component_="xchat.mo_101" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\hi\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_102"/>
    <ROW File="xchat.mo_102" Component_="xchat.mo_102" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\hu\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_103"/>
    <ROW File="xchat.mo_103" Component_="xchat.mo_103" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\it\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_104"/>
    <ROW File="xchat.mo_104" Component_="xchat.mo_104" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\ja\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_105"/>
    <ROW File="xchat.mo_105" Component_="xchat.mo_105" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\kn\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_106"/>
    <ROW File="xchat.mo_106" Component_="xchat.mo_106" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\ko\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_107"/>
    <ROW File="xchat.mo_107" Component_="xchat.mo_107" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\lt\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_108"/>
    <ROW File="xchat.mo_108" Component_="xchat.mo_108" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\lv\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_109"/>
    <ROW File="xchat.mo_109" Component_="xchat.mo_109" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\mk\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_110"/>
    <ROW File="xchat.mo_110" Component_="xchat.mo_110" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\ms\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_111"/>
    <ROW File="xchat.mo_111" Component_="xchat.mo_111" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\nb\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_112"/>
    <ROW File="xchat.mo_112" Component_="xchat.mo_112" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\nl\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_113"/>
    <ROW File="xchat.mo_113" Component_="xchat.mo_113" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\no\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_114"/>
    <ROW File="xchat.mo_114" Component_="xchat.mo_114" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\pa\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_115"/>
    <ROW File="xchat.mo_115" Component_="xchat.mo_115" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\pl\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_116"/>
    <ROW File="xchat.mo_116" Component_="xchat.mo_116" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\pt\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_117"/>
    <ROW File="xchat.mo_117" Component_="xchat.mo_117" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\pt_BR\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_118"/>
    <ROW File="xchat.mo_118" Component_="xchat.mo_118" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\ru\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_119"/>
    <ROW File="xchat.mo_119" Component_="xchat.mo_119" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\sk\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_120"/>
    <ROW File="xchat.mo_120" Component_="xchat.mo_120" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\sl\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_121"/>
    <ROW File="xchat.mo_121" Component_="xchat.mo_121" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\sq\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_122"/>
    <ROW File="xchat.mo_122" Component_="xchat.mo_122" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\sr\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_123"/>
    <ROW File="xchat.mo_123" Component_="xchat.mo_123" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\sv\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_124"/>
    <ROW File="xchat.mo_124" Component_="xchat.mo_124" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\th\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_125"/>
    <ROW File="xchat.mo_125" Component_="xchat.mo_125" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\uk\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_126"/>
    <ROW File="xchat.mo_126" Component_="xchat.mo_126" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\vi\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_127"/>
    <ROW File="xchat.mo_127" Component_="xchat.mo_127" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\wa\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_128"/>
    <ROW File="xchat.mo_128" Component_="xchat.mo_128" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\zh_CN\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_129"/>
    <ROW File="xchat.mo_129" Component_="xchat.mo_129" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\zh_TW\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xcchecksum.dll"/>
    <ROW File="xchat.mo_87" Component_="xchat.mo_87" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\az\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_88"/>
    <ROW File="xchat.mo_88" Component_="xchat.mo_88" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\be\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_89"/>
    <ROW File="xchat.mo_89" Component_="xchat.mo_89" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\bg\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_90"/>
    <ROW File="xchat.mo_90" Component_="xchat.mo_90" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\ca\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_91"/>
    <ROW File="xchat.mo_91" Component_="xchat.mo_91" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\cs\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_92"/>
    <ROW File="xchat.mo_92" Component_="xchat.mo_92" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\de\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_93"/>
    <ROW File="xchat.mo_93" Component_="xchat.mo_93" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\el\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_94"/>
    <ROW File="xchat.mo_94" Component_="xchat.mo_94" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\en_GB\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_95"/>
    <ROW File="xchat.mo_95" Component_="xchat.mo_95" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\es\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_96"/>
    <ROW File="xchat.mo_96" Component_="xchat.mo_96" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\et\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_97"/>
    <ROW File="xchat.mo_97" Component_="xchat.mo_97" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\eu\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_98"/>
    <ROW File="xchat.mo_98" Component_="xchat.mo_98" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\fi\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_99"/>
    <ROW File="xchat.mo_99" Component_="xchat.mo_99" FileName="xchat.mo" Attributes="0" SourcePath="..\dist-x86\locale\fr\LC_MESSAGES\xchat.mo" SelfReg="false" NextFile="xchat.mo_100"/>
    <ROW File="xchat_text.exe" Component_="xchat_text.exe" FileName="xchat-~1.exe|xchat-text.exe" Attributes="0" SourcePath="..\dist-x86\xchat-text.exe" SelfReg="false" NextFile="zlib1.dll"/>
    <ROW File="xclua.dll" Component_="xclua.dll" FileName="xclua.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xclua.dll" SelfReg="false" NextFile="xcmpcinfo.dll"/>
    <ROW File="xcmpcinfo.dll" Component_="xcmpcinfo.dll" FileName="xcmpci~1.dll|xcmpcinfo.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcmpcinfo.dll" SelfReg="false" NextFile="xcperl_512.dll"/>
    <ROW File="xcperl_512.dll" Component_="xcperl_512.dll" FileName="xcperl~1.dll|xcperl-512.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcperl-512.dll" SelfReg="false" NextFile="xcperl_514.dll"/>
    <ROW File="xcperl_514.dll" Component_="xcperl_514.dll" FileName="xcperl~2.dll|xcperl-514.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcperl-514.dll" SelfReg="false" NextFile="xcpython.dll"/>
    <ROW File="xcpython.dll" Component_="xcpython.dll" FileName="xcpython.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcpython.dll" SelfReg="false" NextFile="xctcl.dll"/>
    <ROW File="xctcl.dll" Component_="xctcl.dll" FileName="xctcl.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xctcl.dll" SelfReg="false" NextFile="xcupd.dll"/>
    <ROW File="xcupd.dll" Component_="xcupd.dll" FileName="xcupd.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcupd.dll" SelfReg="false" NextFile="xcwinamp.dll"/>
    <ROW File="xcwinamp.dll" Component_="xcwinamp.dll" FileName="xcwinamp.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcwinamp.dll" SelfReg="false" NextFile="xcwmpa.dll"/>
    <ROW File="xcwmpa.dll" Component_="xcwmpa.dll" FileName="xcwmpa.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xcwmpa.dll" SelfReg="false" NextFile="xtray.dll"/>
    <ROW File="xtray.dll" Component_="xtray.dll" FileName="xtray.dll" Attributes="0" SourcePath="..\dist-x86\plugins\xtray.dll" SelfReg="false" NextFile="atk10.mo"/>
    <ROW File="zlib1.dll" Component_="zlib1.dll" FileName="zlib1.dll" Attributes="0" SourcePath="..\dist-x86\zlib1.dll" SelfReg="false"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.BuildComponent">
    <ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" PackageFolder="." PackageFileName="XChat-WDK 1498 x86" Languages="en" InstallationType="4" CabsLocation="1" PackageType="1" FilesInsideExe="true" ExeIconPath="..\xchat.ico" ExtractionFolder="[AppDataFolder][|Manufacturer]\[|ProductName] [|ProductVersion]\install" ExtUI="true" ExeName="XChat-WDK 1498 x86"/>
    <ATTRIBUTE name="CurrentBuild" value="DefaultBuild"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.DictionaryComponent">
    <ROW Path="&lt;AI_DICTS&gt;ui.ail"/>
    <ROW Path="&lt;AI_DICTS&gt;ui_en.ail"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.FragmentComponent">
    <ROW Fragment="CommonUI.aip" Path="&lt;AI_FRAGS&gt;CommonUI.aip"/>
    <ROW Fragment="FolderDlg.aip" Path="&lt;AI_THEMES&gt;graphite\fragments\FolderDlg.aip"/>
    <ROW Fragment="LicenseAgreementDlg.aip" Path="&lt;AI_THEMES&gt;graphite\fragments\LicenseAgreementDlg.aip"/>
    <ROW Fragment="SequenceDialogs.aip" Path="&lt;AI_THEMES&gt;graphite\fragments\SequenceDialogs.aip"/>
    <ROW Fragment="Sequences.aip" Path="&lt;AI_FRAGS&gt;Sequences.aip"/>
    <ROW Fragment="SetupTypeDlg.aip" Path="&lt;AI_THEMES&gt;graphite\fragments\SetupTypeDlg.aip"/>
    <ROW Fragment="StaticUIStrings.aip" Path="&lt;AI_FRAGS&gt;StaticUIStrings.aip"/>
    <ROW Fragment="UI.aip" Path="&lt;AI_THEMES&gt;graphite\fragments\UI.aip"/>
    <ROW Fragment="Validation.aip" Path="&lt;AI_FRAGS&gt;Validation.aip"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiActionTextComponent">
    <ROW Action="AI_DeleteLzma" Description="Deleting files extracted from archive" DescriptionLocId="ActionText.Description.AI_DeleteLzma" TemplateLocId="-"/>
    <ROW Action="AI_DeleteRLzma" Description="Deleting files extracted from archive" DescriptionLocId="ActionText.Description.AI_DeleteLzma" TemplateLocId="-"/>
    <ROW Action="AI_ExtractLzma" Description="Extracting files from archive" DescriptionLocId="ActionText.Description.AI_ExtractLzma" TemplateLocId="-"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiAppSearchComponent">
    <ROW Property="AI_SETUPEXEPATH" Signature_="AI_EXE_PATH_CU" Builds="DefaultBuild"/>
    <ROW Property="AI_SETUPEXEPATH" Signature_="AI_EXE_PATH_LM" Builds="DefaultBuild"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiBinaryComponent">
    <ROW Name="ExternalUICleaner.dll" SourcePath="&lt;AI_CUSTACTS&gt;ExternalUICleaner.dll"/>
    <ROW Name="aicustact.dll" SourcePath="&lt;AI_CUSTACTS&gt;aicustact.dll"/>
    <ROW Name="frame_bottom_left.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_left.bmp"/>
    <ROW Name="frame_bottom_left_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_left_inactive.bmp"/>
    <ROW Name="frame_bottom_mid.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_mid.bmp"/>
    <ROW Name="frame_bottom_mid_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_mid_inactive.bmp"/>
    <ROW Name="frame_bottom_right.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_right.bmp"/>
    <ROW Name="frame_bottom_right_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_bottom_right_inactive.bmp"/>
    <ROW Name="frame_caption.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_caption.bmp"/>
    <ROW Name="frame_caption_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_caption_inactive.bmp"/>
    <ROW Name="frame_left.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_left.bmp"/>
    <ROW Name="frame_left_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_left_inactive.bmp"/>
    <ROW Name="frame_right.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_right.bmp"/>
    <ROW Name="frame_right_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_right_inactive.bmp"/>
    <ROW Name="frame_top_left.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_left.bmp"/>
    <ROW Name="frame_top_left_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_left_inactive.bmp"/>
    <ROW Name="frame_top_mid.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_mid.bmp"/>
    <ROW Name="frame_top_mid_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_mid_inactive.bmp"/>
    <ROW Name="frame_top_right.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_right.bmp"/>
    <ROW Name="frame_top_right_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;frame_top_right_inactive.bmp"/>
    <ROW Name="lzmaextractor.dll" SourcePath="&lt;AI_CUSTACTS&gt;lzmaextractor.dll"/>
    <ROW Name="sys_close_down.bmp" SourcePath="&lt;AI_FRAME_BTNS&gt;sys_close_down.bmp"/>
    <ROW Name="sys_close_hot.bmp" SourcePath="&lt;AI_FRAME_BTNS&gt;sys_close_hot.bmp"/>
    <ROW Name="sys_close_inactive.bmp" SourcePath="&lt;AI_FRAME_BTNS&gt;sys_close_inactive.bmp"/>
    <ROW Name="sys_close_normal.bmp" SourcePath="&lt;AI_FRAME_BTNS&gt;sys_close_normal.bmp"/>
    <ROW Name="sys_min_down.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;sys_min_down.bmp"/>
    <ROW Name="sys_min_hot.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;sys_min_hot.bmp"/>
    <ROW Name="sys_min_inactive.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;sys_min_inactive.bmp"/>
    <ROW Name="sys_min_normal.bmp" SourcePath="&lt;AI_FRAME_COLOR&gt;sys_min_normal.bmp"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiControlComponent">
    <ROW Dialog_="LicenseAgreementDlg" Control="AgreementText" Type="FileScrollableText" X="175" Y="104" Width="323" Height="120" Attributes="7" Text="..\COPYING.rtf" Control_Next="Buttons" TextLocId="Control.Text.LicenseAgreementDlg#AgreementText" MsiKey="LicenseAgreementDlg#AgreementText"/>
    <ATTRIBUTE name="FixedSizeBitmaps" value="0"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiControlEventComponent">
    <ROW Dialog_="FolderDlg" Control_="Back" Event="NewDialog" Argument="LicenseAgreementDlg" Condition="AI_INSTALL" Ordering="1"/>
    <ROW Dialog_="WelcomeDlg" Control_="Next" Event="NewDialog" Argument="LicenseAgreementDlg" Condition="AI_INSTALL" Ordering="1"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Back" Event="NewDialog" Argument="SetupTypeDlg" Condition="AI_INSTALL" Ordering="201"/>
    <ROW Dialog_="FolderDlg" Control_="Next" Event="NewDialog" Argument="SetupTypeDlg" Condition="AI_INSTALL" Ordering="201"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Install" Event="EndDialog" Argument="Return" Condition="AI_INSTALL" Ordering="197"/>
    <ROW Dialog_="MaintenanceTypeDlg" Control_="Back" Event="NewDialog" Argument="MaintenanceWelcomeDlg" Condition="AI_MAINT" Ordering="1"/>
    <ROW Dialog_="MaintenanceWelcomeDlg" Control_="Next" Event="NewDialog" Argument="MaintenanceTypeDlg" Condition="AI_MAINT" Ordering="99"/>
    <ROW Dialog_="CustomizeDlg" Control_="Back" Event="NewDialog" Argument="MaintenanceTypeDlg" Condition="AI_MAINT" Ordering="1"/>
    <ROW Dialog_="MaintenanceTypeDlg" Control_="Next" Event="NewDialog" Argument="CustomizeDlg" Condition="AI_MAINT" Ordering="699"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Back" Event="NewDialog" Argument="CustomizeDlg" Condition="AI_MAINT" Ordering="203"/>
    <ROW Dialog_="CustomizeDlg" Control_="Next" Event="NewDialog" Argument="VerifyReadyDlg" Condition="AI_MAINT" Ordering="1"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Install" Event="EndDialog" Argument="Return" Condition="AI_MAINT" Ordering="198"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Back" Event="NewDialog" Argument="PatchWelcomeDlg" Condition="AI_PATCH" Ordering="204"/>
    <ROW Dialog_="PatchWelcomeDlg" Control_="Next" Event="NewDialog" Argument="VerifyReadyDlg" Condition="AI_PATCH" Ordering="201"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Install" Event="EndDialog" Argument="Return" Condition="AI_PATCH" Ordering="199"/>
    <ROW Dialog_="ResumeDlg" Control_="Install" Event="EndDialog" Argument="Return" Condition="AI_RESUME" Ordering="299"/>
    <ROW Dialog_="SetupTypeDlg" Control_="Next" Event="NewDialog" Argument="VerifyReadyDlg" Condition="AI_INSTALL" Ordering="201"/>
    <ROW Dialog_="SetupTypeDlg" Control_="Back" Event="NewDialog" Argument="FolderDlg" Condition="AI_INSTALL" Ordering="1"/>
    <ROW Dialog_="SetupTypeDlg" Control_="Next" Event="NewDialog" Argument="CustomizeDlg" Condition="AI_INSTALL AND SetupTypeOption=&quot;Custom&quot;" Ordering="202"/>
    <ROW Dialog_="CustomizeDlg" Control_="Back" Event="NewDialog" Argument="SetupTypeDlg" Condition="AI_INSTALL AND SetupTypeOption=&quot;Custom&quot;" Ordering="2"/>
    <ROW Dialog_="CustomizeDlg" Control_="Next" Event="NewDialog" Argument="VerifyReadyDlg" Condition="AI_INSTALL AND SetupTypeOption=&quot;Custom&quot;" Ordering="2"/>
    <ROW Dialog_="VerifyReadyDlg" Control_="Back" Event="NewDialog" Argument="CustomizeDlg" Condition="AI_INSTALL AND SetupTypeOption=&quot;Custom&quot;" Ordering="202"/>
    <ROW Dialog_="LicenseAgreementDlg" Control_="Next" Event="NewDialog" Argument="FolderDlg" Condition="AI_INSTALL" Ordering="1"/>
    <ROW Dialog_="LicenseAgreementDlg" Control_="Back" Event="NewDialog" Argument="WelcomeDlg" Condition="AI_INSTALL" Ordering="1"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiCreateFolderComponent">
    <ROW Directory_="SHORTCUTDIR" Component_="SHORTCUTDIR"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiCustActComponent">
    <ROW Action="AI_DOWNGRADE" Type="19" Target="4010"/>
    <ROW Action="AI_DeleteCadLzma" Type="51" Source="AI_DeleteLzma" Target="[AI_SETUPEXEPATH]"/>
    <ROW Action="AI_DeleteLzma" Type="1025" Source="lzmaextractor.dll" Target="DeleteLZMAFiles"/>
    <ROW Action="AI_DeleteRCadLzma" Type="51" Source="AI_DeleteRLzma" Target="[AI_SETUPEXEPATH]"/>
    <ROW Action="AI_DeleteRLzma" Type="1281" Source="lzmaextractor.dll" Target="DeleteLZMAFiles"/>
    <ROW Action="AI_DoRemoveExternalUIStub" Type="3585" Source="ExternalUICleaner.dll" Target="DoRemoveExternalUIStub" WithoutSeq="true"/>
    <ROW Action="AI_ExtractCadLzma" Type="51" Source="AI_ExtractLzma" Target="[AI_SETUPEXEPATH]"/>
    <ROW Action="AI_ExtractLzma" Type="1025" Source="lzmaextractor.dll" Target="ExtractLZMAFiles"/>
    <ROW Action="AI_FindExeLzma" Type="1" Source="lzmaextractor.dll" Target="FindEXE"/>
    <ROW Action="AI_GetArpIconPath" Type="1" Source="aicustact.dll" Target="GetArpIconPath"/>
    <ROW Action="AI_LaunchApp" Type="1" Source="aicustact.dll" Target="[#xchat.exe]"/>
    <ROW Action="AI_PREPARE_UPGRADE" Type="65" Source="aicustact.dll" Target="PrepareUpgrade"/>
    <ROW Action="AI_RESTORE_LOCATION" Type="65" Source="aicustact.dll" Target="RestoreLocation"/>
    <ROW Action="AI_RemoveExternalUIStub" Type="1" Source="ExternalUICleaner.dll" Target="RemoveExternalUIStub"/>
    <ROW Action="AI_ResolveKnownFolders" Type="1" Source="aicustact.dll" Target="AI_ResolveKnownFolders"/>
    <ROW Action="AI_SHOW_LOG" Type="65" Source="aicustact.dll" Target="LaunchLogFile" WithoutSeq="true"/>
    <ROW Action="AI_STORE_LOCATION" Type="51" Source="ARPINSTALLLOCATION" Target="[APPDIR]"/>
    <ROW Action="SET_APPDIR" Type="307" Source="APPDIR" Target="[ProgramFilesFolder][Manufacturer]\[ProductName]" MultiBuildTarget="DefaultBuild:[ProgramFilesFolder]XChat-WDK"/>
    <ROW Action="SET_SHORTCUTDIR" Type="307" Source="SHORTCUTDIR" Target="[ProgramMenuFolder][ProductName]"/>
    <ROW Action="SET_TARGETDIR_TO_APPDIR" Type="51" Source="TARGETDIR" Target="[APPDIR]"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiIconsComponent">
    <ROW Name="SystemFolder_msiexec.exe" SourcePath="&lt;AI_RES&gt;uninstall.ico" Index="0"/>
    <ROW Name="xchat.exe" SourcePath="..\xchat.ico" Index="0"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiInstExSeqComponent">
    <ROW Action="AI_DOWNGRADE" Condition="AI_NEWERPRODUCTFOUND AND (UILevel &lt;&gt; 5)" Sequence="210"/>
    <ROW Action="AI_RESTORE_LOCATION" Condition="APPDIR=&quot;&quot;" Sequence="749"/>
    <ROW Action="AI_STORE_LOCATION" Condition="(Not Installed) OR REINSTALL" Sequence="1502"/>
    <ROW Action="AI_PREPARE_UPGRADE" Condition="AI_UPGRADE=&quot;No&quot; AND (Not Installed)" Sequence="1399"/>
    <ROW Action="AI_ResolveKnownFolders" Sequence="52"/>
    <ROW Action="AI_GetArpIconPath" Sequence="51"/>
    <ROW Action="AI_RemoveExternalUIStub" Condition="(REMOVE=&quot;ALL&quot;) AND ((VersionNT &gt; 500) OR((VersionNT = 500) AND (ServicePackLevel &gt;= 4)))" Sequence="1501"/>
    <ROW Action="AI_DeleteCadLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="199" Builds="DefaultBuild"/>
    <ROW Action="AI_DeleteRCadLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="198" Builds="DefaultBuild"/>
    <ROW Action="AI_ExtractCadLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="197" Builds="DefaultBuild"/>
    <ROW Action="AI_FindExeLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="196" Builds="DefaultBuild"/>
    <ROW Action="AI_ExtractLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="1549" Builds="DefaultBuild"/>
    <ROW Action="AI_DeleteRLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="1548" Builds="DefaultBuild"/>
    <ROW Action="AI_DeleteLzma" Condition="SETUPEXEDIR=&quot;&quot; AND Installed AND (REMOVE&lt;&gt;&quot;ALL&quot;) AND (NOT PATCH)" Sequence="6599" Builds="DefaultBuild"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiInstallUISequenceComponent">
    <ROW Action="AI_RESTORE_LOCATION" Condition="APPDIR=&quot;&quot;" Sequence="749"/>
    <ROW Action="AI_ResolveKnownFolders" Sequence="51"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiLaunchConditionsComponent">
    <ROW Condition="( Version9X OR VersionNT64 OR ( VersionNT AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &gt;= 1))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 1))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 2))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 3))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 4))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 5))) AND ((VersionNT &lt;&gt; 400) OR ((VersionNT = 400) AND (ServicePackLevel &lt;&gt; 6))) AND ((VersionNT &lt;&gt; 500) OR ((VersionNT = 500) AND (ServicePackLevel &gt;= 1))) AND ((VersionNT &lt;&gt; 500) OR ((VersionNT = 500) AND (ServicePackLevel &lt;&gt; 1))) AND ((VersionNT &lt;&gt; 500) OR ((VersionNT = 500) AND (ServicePackLevel &lt;&gt; 2))) AND ((VersionNT &lt;&gt; 500) OR ((VersionNT = 500) AND (ServicePackLevel &lt;&gt; 3))) AND ((VersionNT &lt;&gt; 500) OR ((VersionNT = 500) AND (ServicePackLevel &lt;&gt; 4))) ) )" Description="[ProductName] cannot be installed on the following Windows versions: [WindowsTypeNTDisplay]" DescriptionLocId="AI.LaunchCondition.NoSpecificNT" IsPredefined="true" Builds="DefaultBuild"/>
    <ROW Condition="VersionNT" Description="[ProductName] cannot be installed on [WindowsType9XDisplay]" DescriptionLocId="AI.LaunchCondition.No9X" IsPredefined="true" Builds="DefaultBuild"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiRegLocatorComponent">
    <ROW Signature_="AI_EXE_PATH_CU" Root="1" Key="Software\Caphyon\Advanced Installer\LZMA\[ProductCode]\[ProductVersion]" Name="AI_ExePath" Type="2"/>
    <ROW Signature_="AI_EXE_PATH_LM" Root="2" Key="Software\Caphyon\Advanced Installer\LZMA\[ProductCode]\[ProductVersion]" Name="AI_ExePath" Type="2"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiRegsComponent">
    <ROW Registry="AI_ExePath" Root="-1" Key="Software\Caphyon\Advanced Installer\LZMA\[ProductCode]\[ProductVersion]" Name="AI_ExePath" Value="[AI_SETUPEXEPATH]" Component_="AI_ExePath"/>
    <ROW Registry="Comments" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="Comments" Value="[ARPCOMMENTS]" Component_="AI_CustomARPName"/>
    <ROW Registry="Contact" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="Contact" Value="[ARPCONTACT]" Component_="AI_CustomARPName"/>
    <ROW Registry="DisplayIcon" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="DisplayIcon" Value="[ARP_ICON_PATH]" Component_="AI_CustomARPName"/>
    <ROW Registry="DisplayName" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="DisplayName" Value="[AI_PRODUCTNAME_ARP]" Component_="AI_CustomARPName"/>
    <ROW Registry="DisplayVersion" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="DisplayVersion" Value="[ProductVersion]" Component_="AI_CustomARPName"/>
    <ROW Registry="HelpLink" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="HelpLink" Value="[ARPHELPLINK]" Component_="AI_CustomARPName"/>
    <ROW Registry="HelpTelephone" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="HelpTelephone" Value="[ARPHELPTELEPHONE]" Component_="AI_CustomARPName"/>
    <ROW Registry="InstallLocation" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="InstallLocation" Value="[APPDIR]" Component_="AI_CustomARPName"/>
    <ROW Registry="ModifyPath" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="ModifyPath" Value="[AI_UNINSTALLER] /I [ProductCode]" Component_="AI_CustomARPName"/>
    <ROW Registry="NoRepair" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="NoRepair" Value="#1" Component_="AI_CustomARPName"/>
    <ROW Registry="Path" Root="-1" Key="Software\[Manufacturer]\[ProductName]" Name="Path" Value="[APPDIR]" Component_="ProductInformation"/>
    <ROW Registry="ProductName_" Root="-1" Key="Software\[Manufacturer]\[ProductName]" Name="+" Component_="ProductInformation"/>
    <ROW Registry="Publisher" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="Publisher" Value="[Manufacturer]" Component_="AI_CustomARPName"/>
    <ROW Registry="URLInfoAbout" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="URLInfoAbout" Value="[ARPURLINFOABOUT]" Component_="AI_CustomARPName"/>
    <ROW Registry="URLUpdateInfo" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="URLUpdateInfo" Value="[ARPURLUPDATEINFO]" Component_="AI_CustomARPName"/>
    <ROW Registry="UninstallString" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="UninstallString" Value="[AI_UNINSTALLER] /x [ProductCode]" Component_="AI_CustomARPName"/>
    <ROW Registry="Version" Root="-1" Key="Software\[Manufacturer]\[ProductName]" Name="Version" Value="[ProductVersion]" Component_="ProductInformation"/>
    <ROW Registry="VersionMajor" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="VersionMajor" Value="#14" Component_="AI_CustomARPName"/>
    <ROW Registry="VersionMinor" Root="-1" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\[ProductName] [ProductVersion]" Name="VersionMinor" Value="#98" Component_="AI_CustomARPName"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiShortsComponent">
    <ROW Shortcut="Uninstall_XChat_WDK__x86_" Directory_="SHORTCUTDIR" Name="Uninst~1|Uninstall XChat-WDK (x86)" Component_="AI_ExePath" Target="[SystemFolder]msiexec.exe" Arguments="/x [ProductCode]" Hotkey="0" Icon_="SystemFolder_msiexec.exe" IconIndex="0" ShowCmd="1"/>
    <ROW Shortcut="XChat_Text__x86_" Directory_="SHORTCUTDIR" Name="XChat-~2|XChat-Text (x86)" Component_="xchat_text.exe" Target="[#xchat_text.exe]" Hotkey="0" IconIndex="0" ShowCmd="1" WkDir="APPDIR"/>
    <ROW Shortcut="XChat_WDK__x86_" Directory_="SHORTCUTDIR" Name="XChat-~1|XChat-WDK (x86)" Component_="xchat.exe" Target="[#xchat.exe]" Hotkey="0" IconIndex="0" ShowCmd="1" WkDir="APPDIR"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiThemeComponent">
    <ATTRIBUTE name="UsedTheme" value="graphite"/>
  </COMPONENT>
  <COMPONENT cid="caphyon.advinst.msicomp.MsiUpgradeComponent">
    <ROW UpgradeCode="[|UpgradeCode]" VersionMax="[|ProductVersion]" Attributes="1025" ActionProperty="OLDPRODUCTS"/>
    <ROW UpgradeCode="[|UpgradeCode]" VersionMin="[|ProductVersion]" Attributes="2" ActionProperty="AI_NEWERPRODUCTFOUND"/>
  </COMPONENT>
</DOCUMENT>