-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnited Colonies of Mankind.cat
2611 lines (2611 loc) · 192 KB
/
United Colonies of Mankind.cat
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="889e-ba35-f5c2-036d" name="United Colonies of Mankind" revision="17" battleScribeVersion="2.03" authorName="morvael; Giftgruen; John Kemp" authorUrl="https://github.com/BSData/dropfleet-commander/issues" library="false" gameSystemId="bb34-1413-3527-b957" gameSystemRevision="15" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<entryLinks>
<entryLink id="b01d-a541-c9f2-a1ec" name="Fleet" hidden="false" collective="false" import="true" targetId="5699-604a-8095-058b" type="selectionEntry"/>
<entryLink id="cd74-f01d-9bac-fb52" name="Dreadnought Battlegroup" hidden="false" collective="false" import="true" targetId="c98d-4061-a6df-51ef" type="selectionEntry"/>
<entryLink id="37b9-e435-ebae-3c52" name="Flag Battlegroup" hidden="false" collective="false" import="true" targetId="d344-138c-c6d0-cc19" type="selectionEntry"/>
<entryLink id="3bae-3609-8753-6408" name="Vanguard Battlegroup" hidden="false" collective="false" import="true" targetId="d130-a78a-632e-9040" type="selectionEntry"/>
<entryLink id="3ed8-763f-cbf1-0625" name="Line Battlegroup" hidden="false" collective="false" import="true" targetId="ed7f-288f-cba9-0ab1" type="selectionEntry"/>
<entryLink id="96b1-0bb3-b939-5623" name="Pathfinder Battlegroup" hidden="false" collective="false" import="true" targetId="12c3-eb29-1aea-ef48" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="8677-d079-42d4-09f6" name="London Dreadnought" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="1">
<profiles>
<profile id="6064-3f06-7d12-3a84" name="London" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">14"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">16"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">26</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">2+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">18</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S2</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Aegis (8), Dreadnought, Command Ship</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="788e-0653-a2c8-bdc2" name="Aegis (X)" hidden="false" targetId="f7b4-257c-0fc5-8fe3" type="rule"/>
<infoLink name="Command Ship" id="16b6-d12e-62d6-3169" hidden="false" type="rule" targetId="7ed1-7d4c-0969-21b9"/>
<infoLink name="Dreadnought" id="bfcd-443f-62a4-13a6" hidden="false" type="rule" targetId="c77c-14da-96fe-32ac"/>
</infoLinks>
<categoryLinks>
<categoryLink id="dcfd-8da4-deb1-5c82" name="Super Heavy" hidden="false" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0730-879b-81e6-055a" name="Flagship (S2)" hidden="false" collective="false" import="true" targetId="b338-59f9-6801-038a" type="selectionEntry"/>
<entryLink import="true" name="UF-9000 Turret (Stbd & Port)" hidden="false" id="028b-37cf-e4f8-f61c" type="selectionEntry" targetId="f8e3-76b9-67d2-5b69" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turrets (Dorsal)" hidden="false" id="e952-d8e6-77dd-57ee" type="selectionEntry" targetId="55c2-eea8-9203-9e7d" sortIndex="2"/>
<entryLink import="true" name="UF-6400 Turrets (Ventral)" hidden="false" id="689e-faeb-11a3-49d5" type="selectionEntry" targetId="77a7-e56a-304e-843a" sortIndex="3"/>
<entryLink import="true" name="UF-4200 Turrets (Core)" hidden="false" id="a7b7-6c5d-b65c-8799" type="selectionEntry" targetId="4736-7555-be6b-231a" sortIndex="4"/>
<entryLink import="true" name="UF-4200 Turrets (Stbd & Port)" hidden="false" id="d90d-8c09-ba72-70f9" type="selectionEntry" targetId="5b53-0462-196d-6991" sortIndex="5"/>
<entryLink import="true" name="Leviathan Missiles" hidden="false" id="4f8e-25f2-30b5-b997" type="selectionEntry" targetId="3ea8-1f3f-be42-86db" sortIndex="6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="450"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="4020-c343-6517-ee2f" name="Washington Supercarrier" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="2">
<profiles>
<profile id="6938-3dd2-6be5-9ac1" name="Washington" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">14"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">16"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">26</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">2+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">18</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S2</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Dreadnought, Launch, Command Ship</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5519-348a-7122-78ad" name="Command Ship" hidden="false" targetId="7ed1-7d4c-0969-21b9" type="rule"/>
<infoLink id="45c5-adc0-a638-8621" name="Dreadnought" hidden="false" targetId="c77c-14da-96fe-32ac" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="db2f-5b06-9a22-20a2" name="Super Heavy" hidden="false" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5065-bf81-ae89-0072" name="Flagship (S2)" hidden="false" collective="false" import="true" targetId="b338-59f9-6801-038a" type="selectionEntry"/>
<entryLink import="true" name="UF-9000 Turret (Stbd & Port)" hidden="false" id="38ba-b194-3956-9116" type="selectionEntry" targetId="f8e3-76b9-67d2-5b69" sortIndex="1"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="9d85-4b36-d75d-8bc8" type="selectionEntry" targetId="128a-7ca7-f016-c265" sortIndex="5"/>
<entryLink import="true" name="UF-4200 Turrets (Core)" hidden="false" id="2f32-9654-f9b5-a76d" type="selectionEntry" targetId="4736-7555-be6b-231a" sortIndex="2"/>
<entryLink import="true" name="UF-4200 Turrets (Stbd & Port)" hidden="false" id="33cb-8cff-82a5-f27a" type="selectionEntry" targetId="5b53-0462-196d-6991" sortIndex="3"/>
<entryLink import="true" name="Leviathan Missiles" hidden="false" id="2795-a461-985c-961d" type="selectionEntry" targetId="3ea8-1f3f-be42-86db" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="440"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="15"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="7f6f-2e30-436f-b9de" name="Beijing Battleship" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="3">
<profiles>
<profile id="ab57-cc5c-ed6b-526a" name="Beijing" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">8"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">10"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">20</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">10</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e50e-cc63-88a0-1b82" name="Super Heavy" hidden="false" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="4f21-e00e-0476-be91" name="Flagship (S)" hidden="false" collective="false" import="true" targetId="5985-0d00-1fcc-b8be" type="selectionEntry"/>
<entryLink import="true" name="Python SH Laser" hidden="false" id="243a-e33a-d9f1-20f5" type="selectionEntry" targetId="dc27-f763-3416-e642" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="d2ea-b4f0-30c8-7a93" type="selectionEntry" targetId="2007-860e-719c-09e4" sortIndex="2"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="09dc-c902-2d92-f5a1" type="selectionEntry" targetId="5aa1-5470-249f-6389" sortIndex="3"/>
<entryLink import="true" name="Swordfish Missiles" hidden="false" id="ff93-4be3-5c1b-4308" type="selectionEntry" targetId="a803-5d32-d6a9-ec67" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="230"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="15"/>
</costs>
</selectionEntry>
<selectionEntry id="81fc-bf1b-7308-6ea3" name="New York Battleship" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="4">
<profiles>
<profile id="6011-2cf8-e73d-4aa4" name="New York" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">8"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">10"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">20</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">10</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9ab0-ab98-12da-cc31" name="Super Heavy" hidden="false" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="e904-ee8d-3c1b-5bd3" name="Flagship (S)" hidden="false" collective="false" import="true" targetId="5985-0d00-1fcc-b8be" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="3fbc-f208-67ea-373f" type="selectionEntry" targetId="2007-860e-719c-09e4" sortIndex="1"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="8804-1ab0-a34a-5584" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="2"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="343e-2c1b-8adf-a22f" type="selectionEntry" targetId="db90-b0d9-b641-a876" sortIndex="3"/>
<entryLink import="true" name="Torpedo" hidden="false" id="9ca0-f92e-8702-5945" type="selectionEntry" targetId="8daa-d170-e81a-ef8b" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="250"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="8"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="15"/>
</costs>
</selectionEntry>
<selectionEntry id="285b-7dc2-665b-d972" name="Tokyo Battleship" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="5">
<profiles>
<profile id="3645-be2b-8a67-3aed" name="Tokyo" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">8"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">10"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">20</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">10</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6a21-fe60-0c25-3324" name="Super Heavy" hidden="false" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a0c5-bf88-e6cc-e04f" name="Flagship (S)" hidden="false" collective="false" import="true" targetId="5985-0d00-1fcc-b8be" type="selectionEntry"/>
<entryLink import="true" name="Python SH Laser" hidden="false" id="a784-4b21-adb7-d80b" type="selectionEntry" targetId="dc27-f763-3416-e642" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="245f-b8ce-a2e8-4d14" type="selectionEntry" targetId="2007-860e-719c-09e4" sortIndex="2"/>
<entryLink import="true" name="UF-B-8000" hidden="false" id="0b32-15b5-0493-994f" type="selectionEntry" targetId="487a-b8ba-1320-a199" sortIndex="3">
<modifiers>
<modifier type="set" value="2" field="462d-2d48-bbfa-08b5-min"/>
<modifier type="set" value="2" field="462d-2d48-bbfa-08b5-max"/>
<modifier type="set" value="2" field="defaultAmount"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Swordfish Missiles" hidden="false" id="ea42-23ae-ffc6-48e9" type="selectionEntry" targetId="a803-5d32-d6a9-ec67" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="220"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Delhi Battleship" hidden="false" id="d9ce-81e4-ffac-906e" collective="false" publicationId="f185-0072-424b-ef19" page="6">
<profiles>
<profile name="Delhi" typeId="ecce-1380-e182-c89e" typeName="Ship" hidden="false" id="0842-a3be-6be1-51bc">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">8"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">10"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">20</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">10</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Super Heavy" hidden="false" id="59ae-3cb2-e4b5-ea4f" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Flagship (S)" hidden="false" id="218f-7ac8-1a00-b6d9" collective="false" targetId="5985-0d00-1fcc-b8be" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="b099-eb95-29c4-cc0a" type="selectionEntry" targetId="2007-860e-719c-09e4" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="3369-ec40-f09c-1a11" type="selectionEntry" targetId="cded-9dfb-e373-b902" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="77d7-85ac-e855-f3c6" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
<entryLink import="true" name="Bulk Landers" hidden="false" id="76d6-aa08-d6dd-558f" type="selectionEntry" targetId="cceb-c35d-2166-c441" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="245"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="4"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Hanoi Battleship" hidden="false" id="a3d6-c54b-6c8b-9dc7" collective="false" publicationId="f185-0072-424b-ef19" page="7">
<profiles>
<profile name="Hanoi" typeId="ecce-1380-e182-c89e" typeName="Ship" hidden="false" id="db35-f6e0-4106-d37a">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">8"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">10"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">20</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">10</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">S</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Super Heavy" hidden="false" id="825b-1c4b-9277-f997" targetId="a74f-2082-f5bf-33a5" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Flagship (S)" hidden="false" id="1d89-7a0e-68b5-ba40" collective="false" targetId="5985-0d00-1fcc-b8be" type="selectionEntry"/>
<entryLink import="true" name="UF-12000 Twin" hidden="false" id="5000-d37f-fcf6-f8d1" type="selectionEntry" targetId="f034-a745-8a86-485b" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="94a1-049d-23ac-3f3f" type="selectionEntry" targetId="2007-860e-719c-09e4" sortIndex="2"/>
<entryLink import="true" name="Swordfish Missiles" hidden="false" id="06fd-3ec8-73ec-c286" type="selectionEntry" targetId="a803-5d32-d6a9-ec67" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="250"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="15"/>
</costs>
</selectionEntry>
<selectionEntry id="cdab-9b19-6876-8592" name="Johannesburg Battlecruiser" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3a0e-9eed-b55b-f7d4" name="Johannesburg" publicationId="f185-0072-424b-ef19" page="8" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">14</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">7</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e1a6-6777-a8b2-78fe" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="9158-df9c-f5f7-590a" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="661c-8b84-f1ab-71e8" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turret" hidden="false" id="058d-58a1-b3fc-6c16" type="selectionEntry" targetId="f60a-3a13-80f9-a2c8" sortIndex="2"/>
<entryLink import="true" name="UF-6400 Turret" hidden="false" id="67ff-6912-b8ec-df19" type="selectionEntry" targetId="8a7b-a63f-6655-1e64" sortIndex="3"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="97c9-8bf3-2618-28fb" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="4"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="34ce-55f7-e1a3-c6ff" type="selectionEntry" targetId="45c2-3645-b3bd-2648" sortIndex="5"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="195"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="3"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="b603-088c-59d9-94f4" name="Perth Battlecruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="10">
<profiles>
<profile id="9401-eb7c-cfe3-7a4d" name="Perth" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">14</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">7</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="01fb-b592-8c98-5946" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2ec4-7337-8e1c-fbc2" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="Viper SH Laser" hidden="false" id="4968-b5ee-8cfa-63aa" type="selectionEntry" targetId="2d5a-a909-0aa2-880e" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turrets (Port & Stbd)" hidden="false" id="17b7-a824-6f96-9652" type="selectionEntry" targetId="eb81-0206-2ab7-9a5d" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="1a83-bb45-f4b3-0d1c" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="195"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="ca19-fb38-805b-1309" name="Rome Battlecruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="12">
<profiles>
<profile id="27b8-8b3f-2deb-9938" name="Rome" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">14</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">15</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Aegis (9), Launch</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f618-8ebe-e988-1ba7" name="Aegis (X)" hidden="false" targetId="f7b4-257c-0fc5-8fe3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9479-b31f-9173-1979" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="6edc-17fc-cd8a-eaa7" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="bee0-8939-db9e-17c3" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="cc8f-c5ed-443f-9020" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="2"/>
<entryLink import="true" name="Heavy Torpedo" hidden="false" id="c9cf-4483-6754-4305" type="selectionEntry" targetId="7ee2-ff87-ef1c-d493" sortIndex="3">
<modifiers>
<modifier type="set" value="2" field="f2fe-7521-8c03-5287-min"/>
<modifier type="set" value="2" field="f2fe-7521-8c03-5287-max"/>
<modifier type="set" value="2" field="defaultAmount"/>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="170"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="2"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="ef3c-342d-5472-e41c" name="Venice Command Battlecruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="13">
<profiles>
<profile id="e224-2818-eb7e-6452" name="Venice" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">14</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">7</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Command Deck, UCM Battlenet</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="5288-ca15-a464-25f2" name="Command Deck" hidden="false">
<description>If you mount your Admiral in this ship, when drawing Command Cards, you may draw 2 more than normal.</description>
</rule>
<rule id="233c-451c-0811-13b3" name="UCM Battlenet" hidden="false">
<description>As long as this ship is on the board, when a friendly Battlegroup within this ship’s weapons range activates, you may choose to discard 1 Command Card and that Battlegroup gains 1 of the following bonuses when on Special Orders:
• Any ships in that Battlegroup may add 4” to their movement this turn (after any Thrust modifiers).
• Special Orders that allow ships to fire weapon systems allow them to fire an additional weapon system. Special Orders that do not allow ships to fire weapon systems allow them to fire 1 Close Action weapon (but does not count for launching Launch Assets).
• Any ships in that Battlegroup may change Orbital Layer, even if they otherwise would not be allowed to do so (all normal restrictions apply such as costing Thrust distance and only entering Atmosphere if they have the Atmospheric special rule).</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="344e-304b-35d5-5795" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c82a-7542-2f02-ccb5" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="12a8-b1e0-8b00-b98e" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="f930-c65e-6ef0-f9a7" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="2"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="200"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="477a-d6ab-6ba0-5bb9" name="Burnaby Battlestar Carrier" hidden="false" collective="false" import="true" type="upgrade" publicationId="f185-0072-424b-ef19" page="14">
<profiles>
<profile id="77e6-7d5b-2f03-a55d" name="Burnaby" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">7"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">13</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="155"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="3"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
<entryLinks>
<entryLink import="true" name="Cobra H Laser" hidden="false" id="994d-a720-6e43-447e" type="selectionEntry" targetId="245d-9808-483a-d36c" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="1f90-7032-6a50-0d91" type="selectionEntry" targetId="cded-9dfb-e373-b902" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="1266-00f0-cefa-cb4f" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="0651-1804-f84c-ef44" type="selectionEntry" targetId="45c2-3645-b3bd-2648" sortIndex="4"/>
<entryLink import="true" name="Flagship (H)" hidden="false" id="52ca-ecf5-585b-c8a9" collective="false" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="1342-a92d-424c-140a" id="e976-866d-9346-cfc2" primary="true" name="Heavy"/>
</categoryLinks>
</selectionEntry>
<selectionEntry id="5254-88e5-d3a3-67bf" name="Moscow Heavy Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="15">
<profiles>
<profile id="cd58-a402-c6dc-09da" name="Moscow" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">7"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">13</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2bc4-7085-2417-10e3" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="459d-cf45-ca12-749d" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="ca26-102b-3eb6-d462" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="8ee6-09f5-4682-aaf8" type="selectionEntry" targetId="21c5-55a6-d824-4587" sortIndex="2"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="485c-7a1f-d1fa-ae8c" type="selectionEntry" targetId="cded-9dfb-e373-b902" sortIndex="3"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="2d17-5f73-ff8f-7883" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="150"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="0696-bd36-c854-a6ab" name="St. Petersburg Heavy Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="16">
<profiles>
<profile id="a17f-24bc-485b-85ec" name="St. Petersburg" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">7"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">13</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">H</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Rare</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="22aa-d06e-f7e4-0600" name="Rare" hidden="false" targetId="becc-b3c9-c26c-abde" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1600-f2ad-16b6-c8fa" name="Heavy" hidden="false" targetId="1342-a92d-424c-140a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="713a-7866-cf66-c46b" name="Flagship (H)" hidden="false" collective="false" import="true" targetId="f413-1384-f5c6-44c1" type="selectionEntry"/>
<entryLink import="true" name="Cobra H Laser Pair" hidden="false" id="5833-c186-c0c6-dbb1" type="selectionEntry" targetId="0835-f51c-d3a0-8888" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="b268-d03c-e798-0b03" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="b389-c85b-abf8-2e98" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="140"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="c0e6-52bc-3de0-8cc6" name="Rio Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="17">
<profiles>
<profile id="fc68-1666-863d-80c3" name="Rio" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">10</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-2</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7869-e5c6-f3c1-b96d" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2064-7ccb-c71d-312c" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="155c-f39f-0c6b-4905" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="8542-5f04-e6c5-3bac" type="selectionEntry" targetId="bf82-04d9-8a0e-7266" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="14cb-1dbd-b101-5f1c" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="105"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="7bd8-f7d2-81e5-1411" name="Berlin Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="19">
<profiles>
<profile id="8267-e6da-3a63-79aa" name="Berlin" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">10</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-2</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8955-d079-1954-8e85" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8171-5388-3378-1bd0" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="Cobra H Laser" hidden="false" id="aa74-b8c9-dd94-2a43" type="selectionEntry" targetId="245d-9808-483a-d36c" sortIndex="1"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="4c2d-e15f-2d4f-705e" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="dd9b-bc0c-ce9b-e14f" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="105"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="3580-4376-0fe2-07b6" name="Madrid Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="21">
<profiles>
<profile id="e10b-5aaf-a09a-8bcd" name="Madrid" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">10</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-2</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c54a-e6ce-5397-8f41" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d44e-7d3a-fedd-792f" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="561a-ce12-1c41-e233" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="UF-B-8000" hidden="false" id="066d-9708-aa72-43ce" type="selectionEntry" targetId="18da-f374-06df-9958" sortIndex="2"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="eb8f-30e4-4a5a-7926" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="79"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="e4e7-6b71-3fc1-b86c" name="Seattle Fleet Carrier" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="22">
<profiles>
<profile id="857a-b8c5-f76b-5261" name="Seattle" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">10</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9fee-fd32-c188-ceb4" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="dedc-ab05-dc7c-d71b" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="a741-6f15-7272-e1d0" type="selectionEntry" targetId="cded-9dfb-e373-b902" sortIndex="1"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="7a6d-d00a-fc61-eaf9" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="2"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="96c4-53d4-b407-c84b" type="selectionEntry" targetId="45c2-3645-b3bd-2648" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="132"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="3"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="4362-d0a6-4994-2b03" name="Osaka Light Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="23">
<profiles>
<profile id="e26f-c696-e79a-3575" name="Osaka" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">8</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e875-9139-5a4f-cafa" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ee52-403d-251a-8fe7" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="UF-6400 Turrets" hidden="false" id="44ba-950b-c34a-c060" type="selectionEntry" targetId="bf82-04d9-8a0e-7266" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="c30e-077c-eb6e-827f" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="82"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="1bab-a24b-0a86-5132" name="New Cairo Light Cruiser" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="25">
<profiles>
<profile id="4abe-72e7-c911-079e" name="New Cairo" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">8</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="82c4-eaac-5d1c-f370" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="9902-398a-5107-5621" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="Cobra H Laser" hidden="false" id="a18e-1c35-6d68-23b1" type="selectionEntry" targetId="245d-9808-483a-d36c" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="b093-3c67-2d8d-3e65" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="88"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="f8d2-01ed-3c3c-7354" name="San Francisco Troopship" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="27">
<profiles>
<profile id="1e7b-b9e8-e69c-11aa" name="San Francisco" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">6"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">8"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">10</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">3+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">5</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">M</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6213-64be-2f30-7e1a" name="Medium" hidden="false" targetId="d45f-e753-7ba7-3084" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="f8ad-401f-fe73-2b47" name="Flagship (M)" hidden="false" collective="false" import="true" targetId="7876-1198-be24-9d63" type="selectionEntry"/>
<entryLink import="true" name="UF-4200 Turret (Port & Stbd)" hidden="false" id="0d3d-9fd3-4658-c78a" type="selectionEntry" targetId="85ef-c4b5-9eb2-0077" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="4819-4b69-e755-5726" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
<entryLink import="true" name="Bulk Landers" hidden="false" id="253b-ce07-f4fc-8df4" type="selectionEntry" targetId="659a-d36a-45d6-795f" sortIndex="3"/>
</entryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="105"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="2"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="028e-2ba1-7bf1-1739" name="Toulon Frigate" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="28">
<profiles>
<profile id="6262-019b-1d63-549c" name="Toulon" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">3"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-4</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3510-2c94-19eb-62e0" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="35"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-2200 Triad" hidden="false" id="d212-bdbb-60ef-2398" type="selectionEntry" targetId="4f1c-0fc6-bc21-220d" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="c05c-e08e-cf73-e145" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="5556-6d8e-543c-f2a2" name="Taipei Missile Frigate" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="29">
<profiles>
<profile id="707c-e7f5-8935-bba5" name="Taipei" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">3"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-6</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5d04-2c85-9735-140b" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="39"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-2200 Turret" hidden="false" id="bad0-316e-a432-0769" type="selectionEntry" targetId="9ff8-5511-d0d4-48c2" sortIndex="1"/>
<entryLink import="true" name="Piranha Missiles" hidden="false" id="d99f-771c-6595-4720" type="selectionEntry" targetId="8a02-152a-962d-d9d5" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="6830-cbfc-20e6-4aec" name="Jakarta Aegis Frigate" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="30">
<profiles>
<profile id="ee3e-cef1-816d-c862" name="Jakarta" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">3"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-4</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Aegis (6)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6d83-228b-8cd2-e8f0" name="Aegis (X)" hidden="false" targetId="f7b4-257c-0fc5-8fe3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="11d6-2c02-ae2c-2af9" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="32"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-2200 Turret" hidden="false" id="4602-8eda-cb73-7e1e" type="selectionEntry" targetId="9ff8-5511-d0d4-48c2" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="687e-82a0-45cd-502b" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="dba1-e056-6281-9562" name="Lima Frigate" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="31">
<profiles>
<profile id="26e9-ee7d-0444-365b" name="Lima" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">3"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-2</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Detector, Outlier, Rare</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fc6f-7fb6-1854-673f" name="Detector" hidden="false" targetId="d671-a199-2d13-3b64" type="rule"/>
<infoLink id="2daf-860d-5893-cdd2" name="Rare" hidden="false" targetId="becc-b3c9-c26c-abde" type="rule"/>
<infoLink id="1d67-7064-de39-e101" name="Outlier" hidden="false" targetId="0a60-4c58-5666-78ee" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f6a1-47fe-2be9-1a66" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="37"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-2200 Turret" hidden="false" id="0400-bb9e-75a5-0da3" type="selectionEntry" targetId="9ff8-5511-d0d4-48c2" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="3d0f-9b02-6a16-2d71" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="7272-d3fc-0dd0-6859" name="New Orleans Strike Carrier" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="32">
<profiles>
<profile id="0a42-4f7b-be4f-9126" name="New Orleans" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">3"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-2</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Atmospheric, Launch, Open</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="be2b-c629-aec4-876a" name="Atmospheric" hidden="false" targetId="32d9-8628-d42c-4ddd" type="rule"/>
<infoLink id="596d-fb74-a3f1-c55f" name="Launch" hidden="false" targetId="6af7-681c-b2c8-5acc" type="rule"/>
<infoLink id="3ba9-46f9-190d-7422" name="Open" hidden="false" targetId="dad0-81c2-bbc4-9eee" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="953c-0e85-74b8-3c8c" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="32"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="1"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-2200 Turret" hidden="false" id="bb24-de9b-dfb3-2a7f" type="selectionEntry" targetId="9ff8-5511-d0d4-48c2" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="1b20-0037-71ab-7d2c" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
<entryLink import="true" name="Dropships" hidden="false" id="f471-2810-3691-4948" type="selectionEntry" targetId="931a-93fc-a36f-1955" sortIndex="3"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="4a56-a300-35cd-0e2f" name="Istanbul Monitor" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="33">
<profiles>
<profile id="2f0a-0bdc-177c-4c71" name="Istanbul" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">10"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">4"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">2+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Monitor</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0408-0639-6349-c52b" name="Monitor" hidden="false" targetId="bc43-3371-9c92-dfb6" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cbfa-aa8f-cbc1-f859" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="42"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="UF-B-9000" hidden="false" id="b5be-d1e6-1b32-b626" type="selectionEntry" targetId="1519-4036-572d-a581" sortIndex="1"/>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="3f24-da65-6cf6-ca6e" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="8b61-e695-f012-dd95" name="Vienna Escort Frigate" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="34">
<profiles>
<profile id="f382-8481-398b-823c" name="Vienna" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">4"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">6"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">4</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">2+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Aegis (4)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fbd2-f9ac-1052-b3dc" name="Aegis (X)" hidden="false" targetId="f7b4-257c-0fc5-8fe3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="66cd-b85f-e635-38e3" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="48"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="0"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="1"/>
</costs>
<entryLinks>
<entryLink import="true" name="Mamba Laser" hidden="false" id="2d5d-434b-0876-5d0e" type="selectionEntry" targetId="993e-5a0c-1223-3b21" sortIndex="1"/>
<entryLink import="true" name="Shark Missiles" hidden="false" id="56f3-411a-4501-4bc4" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="6ebc-e179-855e-e295" name="Havana Destroyer" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="35">
<profiles>
<profile id="cdd9-18f1-4398-1abe" name="Havana" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">4"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">6</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">2-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L2</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch, Rare</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="25ec-09ca-ec5e-453d" name="Rare" hidden="false" targetId="becc-b3c9-c26c-abde" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a221-690d-170c-d03f" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="55"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="1"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="2"/>
</costs>
<entryLinks>
<entryLink import="true" name="Shark Missiles" hidden="false" id="3a0b-b5a0-47db-efb5" type="selectionEntry" targetId="45e9-c67c-7c06-c84c" sortIndex="1"/>
<entryLink import="true" name="Light Torpedoes" hidden="false" id="2110-8de7-fe21-29ea" type="selectionEntry" targetId="548f-e23a-160e-952f" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="a35f-4ac4-cd75-c4d3" name="Vancouver Escort Carrier" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="36">
<profiles>
<profile id="c90c-b219-d255-e27b" name="Vancouver" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">4"</characteristic>
<characteristic name="Thrust" typeId="5033-56fa-1878-bbff">10"</characteristic>
<characteristic name="Hull" typeId="6277-95e1-d5cd-6d06">6</characteristic>
<characteristic name="A" typeId="41bf-5c81-5b4b-0aec">4+</characteristic>
<characteristic name="PD" typeId="47c4-a3c6-1e57-306b">3</characteristic>
<characteristic name="G" typeId="7396-9d6c-953f-4c4b">1-3</characteristic>
<characteristic name="T" typeId="5c7d-d46b-9c5f-4ac3">L2</characteristic>
<characteristic name="Special" typeId="4717-adad-0be5-3c60">Launch</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c387-0b42-72f1-fee8" name="Light" hidden="false" targetId="627b-146d-b78d-af3c" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="e888-2584-886f-7f2c" value="55"/>
<cost name="Launch" typeId="ac2f-9b71-e1c5-783a" value="2"/>
<cost name="SR" typeId="c0c3-cb79-19ac-1dbc" value="2"/>
</costs>
<entryLinks>
<entryLink import="true" name="Barracuda Missiles" hidden="false" id="5058-5f89-7f3a-1db5" type="selectionEntry" targetId="3470-dc96-83a6-2aef" sortIndex="1"/>
<entryLink import="true" name="Fighters & Bombers" hidden="false" id="6b2a-4329-e27c-aece" type="selectionEntry" targetId="c007-7e83-1041-f7fb" sortIndex="2"/>
</entryLinks>
</selectionEntry>
<selectionEntry id="de51-868f-f763-9053" name="Kyiv Heavy Destroyer" hidden="false" collective="false" import="true" type="model" publicationId="f185-0072-424b-ef19" page="37">
<profiles>
<profile id="3f7e-4d55-e535-8575" name="Kyiv" hidden="false" typeId="ecce-1380-e182-c89e" typeName="Ship">
<characteristics>
<characteristic name="Scan" typeId="a704-f2fa-371d-9dab">6"</characteristic>
<characteristic name="Sig" typeId="1402-313c-914d-f053">4"</characteristic>