-
Notifications
You must be signed in to change notification settings - Fork 13
/
Commonwealth.cat
11341 lines (11341 loc) · 847 KB
/
Commonwealth.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="6719-1f83-56dd-91fe" name="Commonwealth v3.05" revision="25" battleScribeVersion="2.03" authorName="Riccardo Sipone" authorContact="[email protected]" library="false" gameSystemId="1242-c30b-419f-8229" gameSystemRevision="10" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue" publicationId="e265-8c7f-a4b2-a48e">
<comment>Commonwealth ORBAT 3.05 (published 25/04/2024)</comment>
<readme>Review 1.02.01: correct Rurik and Oleg unit max size
Review 1.03.00: add new unit and new profile from ORBAT 1.03, fixed Battlefleet bonus managment
Review 1.04.a0: review after the v1.04a
Review 1.05.00: review after the v1.05
Review 1.06.00: review after the v1.06
Review 1.06.01: small correction based on ORBAT v1.06
Review 1.07.01: update to Commonwealth v1.07a
Review 3.02.00: update to Commonwealth v3.02
Review 3.02.01: minor bug fix
Review 3.02.02: minor bug fix befor the update to 3.03
Review 3.03.00: update to 3.03
Review 3.03.00: minor bug fix after update to 3.03
Review 3.03.01: minor bug fix after update to 3.03 (publish 2023-02-05)
Review 3.03.02: minor bug fix after update to 3.03 (publish 2023-02-05)
Review 3.03.03: minor bug fix after update to 3.03 (publish 2023-02-05)
Review 3.03.04: Giyena correction (publish 2023-02-05)
Review 3.03.05: Pakhtusov correction (publish 2023-02-05)
Review 3.04.00: new datafile for ORBAT 3.04 (rev.3)
Review 3.04.01: updated datafile for ORBAT 3.04 published 31/08/2023
Review 3.04.02: correction datafile for ORBAT 3.04 published 31/08/2023 (rev3)
Review 3.04.03: correction datafile for ORBAT 3.04 published 31/08/2023 (to be used in New Recruit)
Review 3.04.04: v21 rev 3, minor correction
Review 3.05.00: v22 updated datafile for ORBAT 3.05 published 25/04/2024
Review 3.05.01: v22 rev1 (Orbat 3.05 25/04/2024 released 06/07/2024)
Review 3.05.02: v23 (Orbat 3.05 25/04/2024 released 18/08/2024)
Review 3.05.03: v24 (Orbat 3.05 25/04/2024 released 22/10/2024)
Review 3.05.04: v25 (Orbat 3.05 25/04/2024 released 31/10/2024)</readme>
<categoryEntries>
<categoryEntry id="43a2-7e77-ff29-fb5c" name="Russian" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="10f8-2a4a-0324-de9d" name="Borodino-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="9bad-609b-b3cd-cd89" name="Mozhayski-Class" publicationId="e265-8c7f-a4b2-a48e" page="5" hidden="false"/>
<categoryEntry id="a437-c808-f047-cd5c" name="Khatanga-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="9573-ce70-b55f-58e8" name="Rurik-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="ed0a-242d-6092-8471" name="Sineus-Class" hidden="false"/>
<categoryEntry id="8acf-93d1-8b6d-33a5" name="Oleg-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="0a00-d349-874e-5599" name="Kutsov-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="ec1a-6d4c-408c-2e43" name="Norilsk-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="11c8-1798-393c-0395" name="Murmansk-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="5259-4042-09aa-6402" name="Ekranoplans" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="4b76-e4b0-9958-2155" name="Morozko-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="6ec4-945d-24b0-9afb" name="Stoletov-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="c058-d79a-9582-360a" name="Skimming" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="089c-4a03-c59f-41af" name="Ekranoplans Unit" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="3030-3da1-a547-b7cf" name="Piranya-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="d7b3-10bd-20f0-4832" name="Ukrainian" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="3459-052a-42ef-7113" name="Khyzhak-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="6fa0-565c-d833-b014" name="Akula-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="79fe-c00f-c7c0-3c7a" name="Black Wolf" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="ee49-24cd-d342-d93f" name="Tobolsk-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="2cae-ee19-07e0-4e12" name="Pravda-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="499a-e4a3-bc0e-a795" name="Anastasia-Class" hidden="false"/>
<categoryEntry id="fc27-b4f3-efbb-bf89" name="Death Bringer" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="4b26-379b-0169-bd86" name="Sineus Class Full" hidden="false"/>
<categoryEntry id="0520-dbe8-a308-0797" name="Moskva-Class" hidden="false"/>
<categoryEntry id="f644-ec7f-be02-4eae" name="Boyar-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="aeb5-114e-68cf-0e35" name="Alexayev-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="ea82-a2fd-0f1c-5260" name="Prezidium-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="0b25-f836-09a9-ecf2" name="Rikhter-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="4f12-aa2a-c712-3683" name="Khan-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="ba7d-d1f6-5e9f-a461" name="Kostroma-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="7957-941d-d81a-ad34" name="Krykun-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="7947-ec58-ae3a-6d57" name="Marena-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="6ae8-bd5a-2060-c96c" name="Ortoq-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="d472-72ed-dcf9-07d8" name="Subatai-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="6536-7b11-53a7-47ab" name="Hypatia-Class" publicationId="908d-6feb-2e9e-843b" hidden="false"/>
<categoryEntry id="fc60-4ec0-9b60-99eb" name="Dragunov-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="7d72-6a90-6572-10f8" name="Giyena-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="74fd-4d88-60a8-dd5a" name="Yak-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="07e1-96aa-b89b-8fd8" name="Zubr-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="b183-8ab8-d9e4-22a0" name="Irkutsk-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="e9e6-7182-3d9a-4ea1" name="Saransk-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="15d1-3f17-f286-8362" name="Tunguska-Class" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="6047-720c-1370-9d3b" name="Mongolian" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="617e-b6e5-27bb-62f9" name="Ilya Muromets" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="b485-2166-74b7-7c68" name="Alyosha Koldun" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="008d-d8b9-711e-b1a3" name="Anika Polianitsa" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="59e3-7c5d-ba27-b27e" name="White Admiral" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry id="8841-dfb0-5120-0a8f" name="Bogatyr" publicationId="e265-8c7f-a4b2-a48e" hidden="false"/>
<categoryEntry name="Konostoga-Class" id="dc09-785e-5007-37d8" hidden="false"/>
<categoryEntry name="Khodynka-Class" id="8b6f-7c19-fb3a-d6e9" hidden="false"/>
<categoryEntry name="Krasnaya-Class" id="cdce-153a-af65-17cb" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="f8d5-fb9d-e4a5-33ec" name="Commonwealth Faction Battlefleet (Main)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="76de-2b26-7a49-b745" name="Strategic Reserve [3.07a]" hidden="false" targetId="3f21-1511-2bff-8d3b" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="forces" scope="roster" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="fd0d-0241-30d5-2285" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="1c04-3b6c-fffb-4343" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="min"/>
<constraint field="selections" scope="force" value="4" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<modifiers>
<modifier type="increment" field="8b27-0f18-fa3f-48f3" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="59e3-7c5d-ba27-b27e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="71d-6004-ac7a-61e5" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="376-8628-da6d-c30c" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="736d-283e-beaf-dba7" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="c206-374a-1703-82ad" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="e3fc-a7fc-4b9-666a" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="ec17-ce6d-34d8-7483" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="b877-97be-92ed-327" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="5ae3-d4cc-ba4b-c610" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="4ca2-058e-2ae4-364f" name="Russian Frontline Battlefleet (Main)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="e84c-7b11-4338-fff5" name="Valorous Conduct [3.06]" hidden="false" targetId="0d1b-0810-3b49-e25e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<modifiers>
<modifier type="increment" field="8b27-0f18-fa3f-48f3" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="59e3-7c5d-ba27-b27e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="8ec8-b912-1ceb-f8e8" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="f8f2-e40b-ab9d-b777" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="639c-46a3-bc0-93e2" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="b63f-cb02-a3bf-810f" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="37e-2f91-4f9b-24d1" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="d1a7-8b8f-ffcd-2d80" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="151b-55a6-aedf-b69f" name="Russian Support Battlefleet (Main)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="2424-98a9-c628-fefa" name="Command Override [3.06]" hidden="false" targetId="78c8-6a85-daa7-3625" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="min"/>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c9a6-3f79-7f6c-110b" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="0254-b778-aa27-4011" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<modifiers>
<modifier type="increment" field="8b27-0f18-fa3f-48f3" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="59e3-7c5d-ba27-b27e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="5f44-1c2f-ce5f-b211" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="44da-532b-10da-8b38" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="bac7-9821-9e-36a3" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="7865-4093-c1b-dd90" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="641e-ca5b-7ca3-bd76" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="314e-6b4c-86e4-d1e4" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="2286-183c-9545-9e58" name="Icebreaker Battlefleet (Spec)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="2876-b158-7183-e7a1" name="Icebreacker Fleet Bonus [3.05]" hidden="false" targetId="98e2-8cce-d8ee-15ad" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ce47-cfe1-8c62-0954" type="min"/>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="93e0-812c-0f13-1f37" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="3707-4688-5bd0-a053" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="28c5-b951-46df-144b" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="3105-bc83-7369-b516" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="cc10-e110-7192-adb1" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="61ff-8d86-f75c-7d4a" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="a185-238f-c662-85a5" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="1d02-8d5e-9291-9e7c" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="b215-39f3-39f5-9996" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="forces" scope="roster" shared="false" id="8b70-4824-acaf-8da9" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="10" field="8b70-4824-acaf-8da9"/>
</modifiers>
</forceEntry>
<forceEntry id="1c03-4ace-59f3-9637" name="Ukranian Battlefleet (Spec)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="5daf-cdfd-0bec-4d2d" name="Ukranian Battlefleet Bonus" hidden="false" targetId="495f-f4ed-3ef8-a354" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="min"/>
<constraint field="selections" scope="force" value="4" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="e288-e61d-9a1c-de3f" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="b64a-2b33-1997-d01a" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="77fe-d1e0-b6d6-e58c" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="bf08-e2a3-80c8-5fbd" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="efef-cef-3b32-eb61" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="8b84-686f-2169-c312" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="7e17-d97c-441d-a47d" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="forces" scope="roster" shared="false" id="15f1-d4b4-3860-7ae2" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="10" field="15f1-d4b4-3860-7ae2">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="f56a-3df4-17d2-db01" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</forceEntry>
<forceEntry id="daec-c7fc-4ab4-114d" name="Caspian Battlefleet (Spec)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="789a-03b1-4240-f13f" name="Caspian Battlefleet Bonus [3.05]" hidden="false" targetId="2fd2-fa8e-f3fc-8f8b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="b6b4-754e-eb1b-1282" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="min"/>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="eee5-e89e-a158-994f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<modifiers>
<modifier type="increment" field="8b27-0f18-fa3f-48f3" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="59e3-7c5d-ba27-b27e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="132f-c11-e9cf-d29c" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="c7c8-c4f9-5656-a699" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="148d-d37f-fbeb-a60f" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="c3aa-8307-3d5-6e3d" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="8ec8-7a58-8911-644b" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="585b-aedd-5337-45d" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="forces" scope="roster" shared="false" id="4f57-93bb-ecbe-caf4" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</forceEntry>
<forceEntry id="1022-4484-f676-a003" name="Black Wolf Battlefleet (Merc)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="3d9b-3a63-7799-b2ba" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dcc4-03d9-189a-169c" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2047-8142-66d0-9016" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="00a0-cc0c-53c9-9512" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cd05-f52f-e971-73c0" type="max"/>
</constraints>
<modifiers>
<modifier type="decrement" value="1" field="cd05-f52f-e971-73c0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="3b53-19a3-12fd-34b1" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="022b-08af-c874-e3f1" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</categoryLink>
<categoryLink id="8475-95c7-761b-e593" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="383b-bdc4-3625-b2a3" type="min"/>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="3e25-14e7-02e9-3cdf" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e98d-8c33-057c-9c22" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="6b6a-5cd9-2d05-35fb" type="max"/>
</constraints>
<modifiers>
<modifier type="decrement" value="1" field="6b6a-5cd9-2d05-35fb">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="df3f-7b38-7940-f11e" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="022b-08af-c874-e3f1" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</categoryLink>
<categoryLink id="f248-5a1b-1003-6dc8" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b27-0f18-fa3f-48f3" type="max"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="8b27-0f18-fa3f-48f3">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="df3f-7b38-7940-f11e" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="022b-08af-c874-e3f1" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="4e75-b0e4-60f8-e0b8" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="b6ae-544d-4ba2-ac4b" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="b6ae-544d-4ba2-ac4b">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="roster" childId="74da-efc2-ecab-ed80" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="6a6c-95f1-b105-6621" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="4ee4-e4d7-a849-20dd" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="0" field="4ee4-e4d7-a849-20dd">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="74da-efc2-ecab-ed80" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="c1d5-73b6-f3cc-a872" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="1e30-e4a5-e04a-69f1" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="forces" scope="roster" shared="false" id="e5ee-82d1-a7b5-7a6f" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="e5ee-82d1-a7b5-7a6f">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="f56a-3df4-17d2-db01" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="10" field="e5ee-82d1-a7b5-7a6f">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="74da-efc2-ecab-ed80" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</forceEntry>
<forceEntry id="7438-a424-8479-b29e" name="Commonwealth Fortification Battlefleet (Spec)" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<infoLinks>
<infoLink id="4f1b-37af-cf2d-da90" name="Preliminary Survey [3.06]" hidden="false" targetId="0006-60f1-1ca3-b204" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="forces" scope="roster" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="cd72-fe9b-c373-2b2b" name="Fleet Abilities" hidden="false" targetId="dfe9-b90a-3878-78f5" primary="false"/>
<categoryLink id="eae8-2992-b3df-e843" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="532a-786a-2f9a-ec2b" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="4338-a2fc-c4b9-e718" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4bff-8a61-d622-9fa4" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="a08c-f05f-c160-715c" type="min"/>
<constraint field="selections" scope="force" value="4" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="78e0-8c93-9913-e45c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="52aa-6cad-253a-5f71" name="Skimming Unit" hidden="false" targetId="3b53-19a3-12fd-34b1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="f97c-8ac1-6d8-a9ed" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="236-fd1e-6ea9-6c30" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="f65-ec75-c053-e380" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1db7-847b-e004-73f5" name="Aerial Unit" hidden="false" targetId="022b-08af-c874-e3f1" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="e5c4-8bea-8213-9436" type="max"/>
</constraints>
</categoryLink>
<categoryLink name="Main Battlefleet" hidden="false" id="afba-4859-6765-233a" targetId="f56a-3df4-17d2-db01" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="c15d-f47b-ba7c-1219" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Mercenary Battlefleet" hidden="false" id="80c6-4fa4-96e4-1b9e" targetId="86ff-88da-5a0b-2d81" primary="false">
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="false" id="bc44-b7d2-860e-5088" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
<categoryLink name="Specialist Battlefleet" hidden="false" id="ccea-330d-b8cd-c61e" targetId="50f8-5d04-e502-e289" primary="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="false" id="9ab6-9e27-d49f-fe9d" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</categoryLink>
</categoryLinks>
<constraints>
<constraint type="max" value="0" field="forces" scope="roster" shared="false" id="2b69-ea96-6f61-8078" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="10" field="2b69-ea96-6f61-8078"/>
</modifiers>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="5a06-ba01-c487-4075" name="Borodino Battleship" publicationId="e265-8c7f-a4b2-a48e" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f8d5-fb9d-e4a5-33ec" type="instanceOf"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4ca2-058e-2ae4-364f" type="instanceOf"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2286-183c-9545-9e58" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="equalTo" value="1" field="selections" scope="roster" childId="fc27-b4f3-efbb-bf89" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="equalTo" value="1" field="selections" scope="roster" childId="499a-e4a3-bc0e-a795" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3f5c-a015-1ba8-f4d4" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="true"/>
<categoryLink id="df03-0c3d-46e5-25d6" name="Borodino-Class" hidden="false" targetId="10f8-2a4a-0324-de9d" primary="false"/>
<categoryLink id="57e8-9eaf-629c-1a80" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="ed02-b8a2-a0cf-240d" name="Escort Model" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b79-ad13-b6eb-4260" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4943-3274-d127-bf30" name="Nikel Escort" hidden="false" collective="false" import="true" targetId="61bf-527c-814e-7a4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be55-9656-33e6-a035" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="132a-fd9c-14fc-e66e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="19fa-b88e-f8dd-f272" name="Borodino" hidden="false" collective="false" import="true" targetId="639e-3c9d-35d4-522f" type="selectionEntry" sortIndex="2">
<entryLinks>
<entryLink import="true" name="Blomqvist Fortune of War" hidden="false" id="79c8-e8d4-dfd0-d332" type="selectionEntry" targetId="af60-b6ba-dc4b-d575"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Attached Unit [Borodino, Flagship]" hidden="false" id="7957-15e5-3da8-dc0d" type="selectionEntryGroup" targetId="7f4c-631a-bf63-e37f" sortIndex="1"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="de9c-fa7e-4b80-ed55" name="Mozhayski Fleet Carrier" publicationId="e265-8c7f-a4b2-a48e" page="5" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="daec-c7fc-4ab4-114d" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="48ac-4502-e92d-b679" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
<categoryLink id="d322-1de7-e355-677f" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="true"/>
<categoryLink id="c5c7-a437-a7d8-02e9" name="Mozhayski-Class" hidden="false" targetId="9bad-609b-b3cd-cd89" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="cb29-fd15-97ea-d8f7" name="Escort model" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d03-8670-9d16-90a3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4200-647c-dfb3-795b" name="Nikel Escort" hidden="false" collective="false" import="true" targetId="61bf-527c-814e-7a4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26b8-5016-7350-30a9" type="min"/>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45ae-8191-6fef-78fe" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="621a-ea09-00ed-d662" name="Corvette Class" hidden="false" targetId="dfce-ed39-89c4-47a9" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5c63-8318-e2d5-582f" name="Mozhayski" hidden="false" collective="false" import="true" targetId="3d8d-f32f-b4fe-b268" type="selectionEntry">
<entryLinks>
<entryLink import="true" name="Blomqvist Fortune of War" hidden="false" id="3293-9f0-94eb-c93d" type="selectionEntry" targetId="af60-b6ba-dc4b-d575"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Attached Unit [Russian, Flagship]" hidden="false" id="9c90-ee61-47ee-d4ea" type="selectionEntryGroup" targetId="88f0-7c2f-427d-2b2c"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b3de-b63c-7d42-25f3" name="Pakhtusov Battleship" publicationId="e265-8c7f-a4b2-a48e" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="4ca2-058e-2ae4-364f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="30d9-25ea-1e0b-cf4c" name="Flagship" hidden="false" targetId="fef3-1842-580c-4bef" primary="true"/>
<categoryLink id="c39a-c322-8cba-4b6b" name="Borodino-Class" hidden="false" targetId="10f8-2a4a-0324-de9d" primary="false"/>
<categoryLink id="0740-a7d5-fe70-748f" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="00cb-5228-2aa7-6a7a" name="Escort model" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="423d-d5f0-7f98-562f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e8f0-c649-413a-7dcf" name="Nikel Escort" hidden="false" collective="false" import="true" targetId="61bf-527c-814e-7a4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2aef-5f46-22e8-8f63" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6cd2-0300-88bc-06b9" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c447-e55a-e646-84a0" name="Corvette Class" hidden="false" targetId="dfce-ed39-89c4-47a9" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c6cc-0d4c-3f70-f551" name="Pakhtusov" hidden="false" collective="false" import="true" targetId="fdb9-261c-84a0-31b7" type="selectionEntry">
<entryLinks>
<entryLink import="true" name="Blomqvist Fortune of War" hidden="false" id="9591-18f7-50ed-45ec" type="selectionEntry" targetId="af60-b6ba-dc4b-d575"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Attached Unit [Russian, Flagship]" hidden="false" id="95-2dee-80a2-61d0" type="selectionEntryGroup" targetId="88f0-7c2f-427d-2b2c"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="898a-b1b3-4e1d-c112" name="Piranya Hunter Submarine Squadron" hidden="true" collective="false" import="false" type="unit">
<modifiers>
<modifier type="remove" field="category" value="d7b3-10bd-20f0-4832">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="79fe-c00f-c7c0-3c7a">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1c03-4ace-59f3-9637" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="3" field="e9ad-bffd-5ef1-f5fd">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1c03-4ace-59f3-9637" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b6ab-c4f6-4474-1b61" name="Piranya-Class" hidden="false" targetId="3030-3da1-a547-b7cf" primary="false"/>
<categoryLink id="e657-6d3e-e874-4461" name="Submerged Unit" hidden="false" targetId="df3f-7b38-7940-f11e" primary="true"/>
<categoryLink id="c971-74e6-f665-bb34" name="Ukrainian" hidden="false" targetId="d7b3-10bd-20f0-4832" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e3d1-19d9-ec4c-940e" name="Piranya" hidden="false" collective="false" import="true" targetId="c5b1-04d3-cd1e-d6da" type="selectionEntry">
<modifiers>
<modifier type="set" value="2" field="69be-5a0a-25cd-67fc">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="7f4c-631a-bf63-e37f" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="c673-b466-4c05-aa93" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="54d1-4531-ffd1-4eb3" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="false" id="e9ad-bffd-5ef1-f5fd" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="d17c-4903-d96e-3042" name="Khatanga Cryo Assault Cruiser Squadron" publicationId="e265-8c7f-a4b2-a48e" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="remove" field="category" value="43a2-7e77-ff29-fb5c">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="79fe-c00f-c7c0-3c7a">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="4ca2-058e-2ae4-364f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1c03-4ace-59f3-9637" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="daec-c7fc-4ab4-114d" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="3" field="5f69-e9d-a6ed-4217">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="04c2-18fe-c8ff-709b" name="Khatanga-Class" hidden="false" targetId="a437-c808-f047-cd5c" primary="false"/>
<categoryLink id="dcb4-9764-ad2b-6c8a" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
<categoryLink id="9b05-f3e3-d8b1-051c" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="4fb9-d8a2-57c5-d35a" name="Khatanga" hidden="false" collective="false" import="true" targetId="7ed3-64f6-5da3-dc59" type="selectionEntry"/>
<entryLink import="true" name="Attached Unit [Black Wolf]" hidden="false" id="6bc-3ae-b2af-29f3" type="selectionEntryGroup" targetId="54d1-4531-ffd1-4eb3"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="false" id="5f69-e9d-a6ed-4217" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="20b5-4bce-4337-d98c" name="Sineus Fast Cruiser Squadron" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="79fe-c00f-c7c0-3c7a">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="remove" field="category" value="43a2-7e77-ff29-fb5c">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="4ca2-058e-2ae4-364f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="daec-c7fc-4ab4-114d" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="53de-5a28-2040-576b" name="Sineus-Class" hidden="false" targetId="ed0a-242d-6092-8471" primary="false"/>
<categoryLink id="b970-c6f6-15d6-020d" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
<categoryLink id="934c-c28a-2b8a-aab2" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="4d2f-b988-5c0e-b171" name="Sineus" hidden="false" collective="false" import="true" targetId="a2c8-dcfb-9b72-fbe0" type="selectionEntry"/>
<entryLink import="true" name="Attached Unit [Black Wolf]" hidden="false" id="da06-a5e9-b018-6abd" type="selectionEntryGroup" targetId="54d1-4531-ffd1-4eb3"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="false" id="a815-4b33-5cb5-ba09" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="e9be-d7db-3d28-df3a" name="Oleg Monitor Squadron" publicationId="e265-8c7f-a4b2-a48e" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="79fe-c00f-c7c0-3c7a">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="remove" field="category" value="43a2-7e77-ff29-fb5c">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="4ca2-058e-2ae4-364f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="daec-c7fc-4ab4-114d" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="72c0-99f1-b535-493f" name="Oleg-Class" hidden="false" targetId="8acf-93d1-8b6d-33a5" primary="false"/>
<categoryLink id="347e-233f-4b71-43f4" name="Surface Unit" hidden="false" targetId="464e-890a-84b2-8ce9" primary="true"/>
<categoryLink id="4137-4cff-86ce-67bd" name="Russian" hidden="false" targetId="43a2-7e77-ff29-fb5c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5087-eec3-ce99-f004" name="Oleg" hidden="false" collective="false" import="true" targetId="06be-2972-f4da-58f0" type="selectionEntry"/>
<entryLink import="true" name="Attached Unit [Black Wolf]" hidden="false" id="1226-fc8d-508b-3778" type="selectionEntryGroup" targetId="54d1-4531-ffd1-4eb3"/>
</entryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="false" id="d99b-78bd-db5d-fec" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="2a52-3bfa-ce73-7b37" name="Pravda Support Carrier Squadron" publicationId="e265-8c7f-a4b2-a48e" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="79fe-c00f-c7c0-3c7a">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="remove" field="category" value="43a2-7e77-ff29-fb5c">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1022-4484-f676-a003" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="f8d5-fb9d-e4a5-33ec" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="4ca2-058e-2ae4-364f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="151b-55a6-aedf-b69f" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="daec-c7fc-4ab4-114d" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="2286-183c-9545-9e58" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="1022-4484-f676-a003" shared="true" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="3" field="72a5-6494-7f8c-3346">