This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 452
/
Imperium - Imperial Fists.cat
2613 lines (2612 loc) · 207 KB
/
Imperium - Imperial Fists.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="0b92-701a-704e-2d9f" name="Imperium - Adeptus Astartes - Imperial Fists" revision="64" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="Acebaur " authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="248" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<selectionEntries>
<selectionEntry id="94ea-2b86-14a0-402f" name="Captain Lysander" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a018-bc2a-eea4-a553" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="fff5-0cb2-3255-5678" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="34d0-fc41-ae1d-fbdf" type="max"/>
</constraints>
<profiles>
<profile id="4d4a-8643-1b1b-73a3" name="Captain Lysander" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="070d-21bc-3a42-a466" name="Icon of Obstinacy" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">While a friendly Imperial Fists unit is within 6" of this model, each time a Combat Attrition test is taken for that unit, it is automatically passed</characteristic>
</characteristics>
</profile>
<profile id="fbeb-bd1b-1fc4-fac8" name="Walking Fortress" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 3+ invulnerable save.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f9f9-600f-e41c-8a3e" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="a440-d33b-acc0-f220" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
<infoLink id="8160-8faa-099f-8a6b" name="Teleport Strike" hidden="false" targetId="687d-8915-60b7-ac06" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5db7-7b06-45d2-94a5" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="832f-bcd7-d366-d0e1" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0214-8243-ae2e-adeb" name="New CategoryLink" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="0552-6da8-c7fb-9af2" name="New CategoryLink" hidden="false" targetId="6b7c-3d51-f050-7398" primary="false"/>
<categoryLink id="8c7c-993d-d443-5474" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="f7a4-281a-01f1-7a6d" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="7ac9-f2ca-98b6-f352" name="New CategoryLink" hidden="false" targetId="c4e4-b28f-193a-8fc3" primary="false"/>
<categoryLink id="f26d-6a2e-dc30-ddff" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="abfd-933e-1025-5b8e" name="Fist of Dorn" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89f0-075f-0c95-67fc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e7a-3104-ce1a-45d2" type="max"/>
</constraints>
<profiles>
<profile id="b8fe-5edb-cb72-70b1" name="Fist of Dorn" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="da76-1a84-28ab-5269" name="Warlord" hidden="false" collective="false" import="true" targetId="ee33-18fd-7317-1171" type="selectionEntry"/>
<entryLink id="0342-eef8-58c4-2fe5" name="Indomitable" hidden="false" collective="false" import="true" targetId="b0db-bfc4-8d32-6918" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="94ea-2b86-14a0-402f" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="4274-db11-9376-9451" value="1.0">
<conditions>
<condition field="selections" scope="94ea-2b86-14a0-402f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6771-6ab3-1672-6a39" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4274-db11-9376-9451" type="min"/>
</constraints>
</entryLink>
<entryLink id="64f4-6a0e-25c0-e358" name="Stratagem: Warlord Trait" hidden="false" collective="false" import="true" targetId="6771-6ab3-1672-6a39" type="selectionEntry">
<modifiers>
<modifier type="set" field="fc60-73e7-d000-6cf6" value="1.0">
<conditions>
<condition field="selections" scope="94ea-2b86-14a0-402f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="fc60-73e7-d000-6cf6" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="pts" typeId="points" value="120.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2119-b883-7c60-5e46" name="Pedro Kantor" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8eaa-a144-c933-5a60" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="fff5-0cb2-3255-5678" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f006-b432-08ab-6d53" name="Pedro Kantor" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="cc0a-7902-d76f-6f4c" name="Oath of Rynn (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">While a friendly CRIMSON FISTS CORE unit is within 6" of this model, add 1 to the Attacks characteristic of models in that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="84e9-186b-8486-0d37" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="2359-452d-0f20-878f" name="Iron Halo" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="daea-e77c-a676-db00" name="Chapter Master" hidden="false" targetId="fdb4-b1a5-3c97-6400" type="profile"/>
<infoLink id="ff6b-0e3f-e95d-6a7e" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e891-3799-517c-9786" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="d5bc-0e6f-bef7-568b" name="New CategoryLink" hidden="false" targetId="0fcf-9239-bfb9-d89d" primary="false"/>
<categoryLink id="767f-20bb-4564-d166" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="966a-13a0-e375-b0fa" name="New CategoryLink" hidden="false" targetId="8b34-9248-2ca6-1d29" primary="false"/>
<categoryLink id="4b20-0e46-b1e6-c99f" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="0e7e-7c9a-4847-afb0" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="18a6-c7db-7dfd-58f8" name="New CategoryLink" hidden="false" targetId="4a2f-f9cf-96e3-2671" primary="false"/>
<categoryLink id="eae4-df37-ddaf-303f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="89b4-b3cf-aed1-bf29" name="Dorn's Arrow" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3f0-d98d-995e-7350" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2896-57a7-c045-ee4c" type="max"/>
</constraints>
<profiles>
<profile id="1b12-1ed0-c833-9360" name="Dorn's Arrow" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 4</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c53d-9087-d9e9-d1e5" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="daa8-76da-7b70-6eb4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55ec-a765-648e-a6aa" type="max"/>
</constraints>
</entryLink>
<entryLink id="f144-145f-7270-ceb3" name="Power fist" hidden="false" collective="false" import="true" targetId="f122-3720-fa32-4215" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8007-4351-5beb-244d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8876-6dc5-14b7-511b" type="max"/>
</constraints>
</entryLink>
<entryLink id="2a11-3bd9-c0ea-6d87" name="Warlord" hidden="false" collective="false" import="true" targetId="ee33-18fd-7317-1171" type="selectionEntry"/>
<entryLink id="f794-686b-0968-92f7" name="Stoic Defender" hidden="false" collective="false" import="true" targetId="36f9-ee91-4e2a-4223" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="2119-b883-7c60-5e46" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="4138-cfe9-8438-90dc" value="1.0">
<conditions>
<condition field="selections" scope="2119-b883-7c60-5e46" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6771-6ab3-1672-6a39" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4138-cfe9-8438-90dc" type="min"/>
</constraints>
</entryLink>
<entryLink id="3497-768c-9cde-91d3" name="Stratagem: Warlord Trait" hidden="false" collective="false" import="true" targetId="6771-6ab3-1672-6a39" type="selectionEntry">
<modifiers>
<modifier type="set" field="5d8c-ca71-0e58-e4f6" value="1.0">
<conditions>
<condition field="selections" scope="2119-b883-7c60-5e46" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="5d8c-ca71-0e58-e4f6" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="pts" typeId="points" value="130.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3f9f-1d3f-5029-6a34" name="Tor Garadon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a018-bc2a-eea4-a553" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="fff5-0cb2-3255-5678" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="ca95-6be3-f0dd-6105" name="Tor Garadon" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">7</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="8680-52d6-fc26-a1d0" name="Signum Array" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, select one friendly IMPERIAL FISTS unit within 3" of this model. Until the start of your next Command phase, each time a model in that unit makes a ranged attack, add 1 to that attack’s hit roll.</characteristic>
</characteristics>
</profile>
<profile id="ce74-f027-8ad7-4d0f" name="Siege Captain" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When resolving an attack made by this model against a VEHICLE or BUILDING unit, add 1 to the Damage characteristic of the weapon being used for that attack. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ff1a-978a-ae7a-3e2a" name="Iron Halo" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="515c-0fc7-5d19-75c6" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ec37-e32a-18e2-219f" name="Captain" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="8556-1db0-9ada-a423" name="Faction: Adeptus Astartes" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="84f9-5e8e-41e1-e8a1" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="9fb8-baae-58d0-b468" name="HQ" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="21a5-a50b-ec83-63ac" name="Imperial Fists" hidden="false" targetId="6b7c-3d51-f050-7398" primary="false"/>
<categoryLink id="5ea8-6d2e-c234-21e5" name="Mk X Gravis" hidden="false" targetId="82df-13db-9e7b-15a3" primary="false"/>
<categoryLink id="d85f-a5ec-b7c5-1414" name="Primaris" hidden="false" targetId="53b7-cff3-c3b4-d36a" primary="false"/>
<categoryLink id="3c5f-fb55-bad6-0036" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a003-6426-7b8a-328f" name="Hand of Defiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52ac-00e7-c7ff-eeb4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0278-6e4a-6865-63bc" type="max"/>
</constraints>
<profiles>
<profile id="cd27-f3cd-bce4-c320" name="Hand of Defiance" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">X3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When resolving an attack with this weapon, subtract 1 from the hit roll</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="070b-61e6-ca9f-0d34" name="Grav-gun" hidden="false" collective="false" import="true" targetId="b6ce-39c2-2200-2cc3" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb01-496c-c26e-2362" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a43c-7f68-38ce-f40b" type="min"/>
</constraints>
</entryLink>
<entryLink id="b423-85b5-b8a5-8849" name="Warlord" hidden="false" collective="false" import="true" targetId="ee33-18fd-7317-1171" type="selectionEntry"/>
<entryLink id="d1b7-5654-d771-2a13" name="Siege Master" hidden="false" collective="false" import="true" targetId="f1ef-3b20-d984-42f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="3f9f-1d3f-5029-6a34" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="722e-bf7b-8657-aaa5" value="1.0">
<conditions>
<condition field="selections" scope="3f9f-1d3f-5029-6a34" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6771-6ab3-1672-6a39" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="722e-bf7b-8657-aaa5" type="min"/>
</constraints>
</entryLink>
<entryLink id="f67c-93cd-a9d2-4222" name="Stratagem: Warlord Trait" hidden="false" collective="false" import="true" targetId="6771-6ab3-1672-6a39" type="selectionEntry">
<modifiers>
<modifier type="set" field="8e01-744f-5ff3-a71f" value="1.0">
<conditions>
<condition field="selections" scope="3f9f-1d3f-5029-6a34" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ee33-18fd-7317-1171" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8e01-744f-5ff3-a71f" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="fb3c-c91f-6845-59a4" name="Aggressor Squad" hidden="false" collective="false" import="true" targetId="0f7e-ce51-f92d-0138" type="selectionEntry">
<categoryLinks>
<categoryLink id="e121-730a-e6a0-d06c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f375-bd5e-1260-a788" name="Ancient in Terminator Armor" hidden="false" collective="false" import="true" targetId="5654-2e3b-1351-bed9" type="selectionEntry">
<categoryLinks>
<categoryLink id="82c0-6e4b-b58a-e366" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5831-43d0-24b6-c910" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="7080-4534-545c-fda5" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="135a-4161-8e9b-9dde" name="Apothecary" hidden="false" collective="false" import="true" targetId="4739-10df-55b8-6330" type="selectionEntry">
<categoryLinks>
<categoryLink id="e1d8-4949-43ba-7765" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="905d-bcbd-98a2-b1c1" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="3a82-2451-d00b-0ba0" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="542a-2c50-5490-000c" name="Apothecary on Bike [Legends]" hidden="false" collective="false" import="true" targetId="23bd-4072-5b68-6be1" type="selectionEntry">
<categoryLinks>
<categoryLink id="4400-740e-2252-4077" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="55a8-3d3e-a86a-d32c" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="f969-9889-0b27-c326" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="ec02-2fe6-2401-536d" name="Assault Squad" hidden="false" collective="false" import="true" targetId="7c16-1429-b6d5-e6f1" type="selectionEntry">
<categoryLinks>
<categoryLink id="a7e8-5839-aeb4-34d4" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7792-3043-4309-fa37" name="Astraeus Super-heavy Tank" hidden="false" collective="false" import="true" targetId="2faf-85ff-2008-1a28" type="selectionEntry"/>
<entryLink id="b0ee-8229-c768-2ab0" name="Attack Bike Squad" hidden="false" collective="false" import="true" targetId="0b99-2404-285f-99db" type="selectionEntry">
<categoryLinks>
<categoryLink id="0621-6015-2898-35cd" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d846-be72-f114-3f8d" name="Bike Squad" hidden="false" collective="false" import="true" targetId="a0f4-1ef1-00a6-b9a7" type="selectionEntry">
<categoryLinks>
<categoryLink id="8b83-e9ee-6d83-d8cf" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb32-2ecb-3806-9818" name="Caestus Assault Ram [Legends]" hidden="false" collective="false" import="true" targetId="5c09-08ad-2a0f-fbc9" type="selectionEntry"/>
<entryLink id="fd35-519b-772d-8406" name="Captain" hidden="false" collective="false" import="true" targetId="a0b8-6a5c-ea09-44f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="65d1-034b-962a-9867" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="628c-7ec3-5913-678a" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="f51a-3079-53a2-f509" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="0743-3e64-8c02-67b8" name="Captain in Gravis Armor" hidden="false" collective="false" import="true" targetId="5854-3db8-6043-ce0b" type="selectionEntry">
<categoryLinks>
<categoryLink id="d922-f608-9711-acbe" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="199e-24de-127c-f640" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="d090-68fd-b156-47d3" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="f31a-2c64-5653-f763" name="Captain in Phobos Armour" hidden="false" collective="false" import="true" targetId="04ca-503e-38b7-0380" type="selectionEntry">
<categoryLinks>
<categoryLink id="6d81-cb35-f289-85ae" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d260-1692-212c-dd94" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="18b4-f824-55f3-fcf4" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="3b1b-f8d9-2e31-d4b0" name="Captain in Terminator Armor" hidden="false" collective="false" import="true" targetId="79ab-3318-ac01-06d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="a8d4-e924-1d36-8f0a" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="42a5-4376-6bb4-8392" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="b3fa-1793-fe99-2527" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="695f-14fc-96e9-16ea" name="Captain on Bike" hidden="false" collective="false" import="true" targetId="2c58-b224-00e8-95f4" type="selectionEntry">
<categoryLinks>
<categoryLink id="060d-1fbd-8fed-4917" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="b260-4941-cbc4-cb16" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="a0e4-8f8c-d843-de47" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="39e7-261e-77ef-a784" name="Relic Terminator Squad" hidden="false" collective="false" import="true" targetId="f928-d2b7-7b49-23fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="6546-94cd-2dfe-cbd3" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fec5-609f-48cb-5279" name="Centurion Assault Squad" hidden="false" collective="false" import="true" targetId="cd3c-39b0-b3be-0e35" type="selectionEntry">
<categoryLinks>
<categoryLink id="7ebd-6e86-db69-6f40" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="94f8-b93f-bebb-f04d" name="Centurion Devastator Squad" hidden="false" collective="false" import="true" targetId="c7a9-cbea-2263-acdc" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0e5-d597-d096-97ed" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5e81-f5eb-c6c9-8ed9" name="Chaplain" hidden="false" collective="false" import="true" targetId="400e-bbea-4690-6942" type="selectionEntry">
<categoryLinks>
<categoryLink id="88e2-d450-1c6d-966e" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="b986-9e1a-0d81-5ffe" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="b0a3-0b73-67ea-fe71" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="6570-52ad-fba5-6c2a" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="bdfc-bc64-7edd-5516" name="Chaplain in Terminator Armour" hidden="false" collective="false" import="true" targetId="6876-9f56-4e02-5400" type="selectionEntry">
<categoryLinks>
<categoryLink id="430d-2550-4c41-4aa1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="302c-eab0-c45c-1eb3" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="4b89-5876-9643-256a" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="6b88-774e-0c0c-97cd" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="af6e-cf08-1202-54b4" name="Chaplain on Bike [Legends]" hidden="false" collective="false" import="true" targetId="f3b6-1ac6-0a68-68c7" type="selectionEntry">
<categoryLinks>
<categoryLink id="e6cd-7483-9a27-c273" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="dd83-00b5-0649-08c4" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="dca9-6355-f04b-99a9" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="b5ad-541f-90a7-089a" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="0b02-a47d-f27f-a9dd" name="Chaplain Venerable Dreadnought [Legends]" hidden="false" collective="false" import="true" targetId="28af-fce8-2f9c-0145" type="selectionEntry">
<entryLinks>
<entryLink id="2c28-7cda-9b6c-9a48" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="e626-834f-7586-a725" name="Warlord" hidden="false" collective="false" import="true" targetId="ee33-18fd-7317-1171" type="selectionEntry"/>
<entryLink id="516c-d802-d1b1-9a09" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
<entryLink id="cc54-4b9c-ffff-5b5c" name="Stratagems" hidden="false" collective="false" import="true" targetId="dbd7-664a-a559-6781" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="bd8b-662b-9dd1-94e4" name="Company Ancient" hidden="false" collective="false" import="true" targetId="0e51-de2e-2557-b79e" type="selectionEntry">
<categoryLinks>
<categoryLink id="b351-51db-3c28-708c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a02e-6fb1-4629-34a5" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="2c06-1fdf-6231-2398" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="73a2-0b12-9822-accd" name="Company Ancient on Bike [Legends]" hidden="false" collective="false" import="true" targetId="1698-9139-721c-e72e" type="selectionEntry">
<categoryLinks>
<categoryLink id="1c62-1d40-c7a9-cd20" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="959f-cb39-e324-c4a8" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="a012-5afb-3469-8231" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="8c35-a9b7-2be0-23cc" name="Company Champion" hidden="false" collective="false" import="true" targetId="c4ab-433a-ad56-2172" type="selectionEntry">
<categoryLinks>
<categoryLink id="98a8-6a05-81d0-c23a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="920e-96a0-bd61-fc7d" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="0184-75a4-128d-bb24" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="f972-3e55-3c5a-5d74" name="Company Champion on Bike [Legends]" hidden="false" collective="false" import="true" targetId="c2ef-5c4d-3f2a-13d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ae3-72d7-5bbb-4952" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0b26-caf0-781a-064e" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="6915-9e60-c09d-baed" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="7d4c-82be-4c8d-e96d" name="Company Veterans" hidden="false" collective="false" import="true" targetId="339f-3bb9-0c10-034b" type="selectionEntry">
<categoryLinks>
<categoryLink id="5d94-2058-1877-5836" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="04b9-137e-1f87-bf7c" name="Company Veterans on Bikes [Legends]" hidden="false" collective="false" import="true" targetId="7510-80bd-46ea-1b7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="f4a4-694e-50f3-3be1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e901-04dd-36bb-c305" name="Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="5912-3f43-75c1-f85c" type="selectionEntry">
<categoryLinks>
<categoryLink id="3edc-dff8-5015-945a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="45ab-e80d-fc35-4349" name="Contemptor Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="2149-8a56-0274-5e59" type="selectionEntry"/>
<entryLink id="bce0-053c-50f9-804c" name="Damocles Command Rhino" hidden="false" collective="false" import="true" targetId="7f53-6376-cd1f-8356" type="selectionEntry"/>
<entryLink id="11d7-5bcc-80d1-dacf" name="Deathstorm Drop Pod" hidden="false" collective="false" import="true" targetId="6d7b-340f-c91b-98ac" type="selectionEntry"/>
<entryLink id="978e-89d4-2794-c88f" name="Deimos Pattern Relic Predator [Legends]" hidden="false" collective="false" import="true" targetId="b048-66f2-3f07-e5ec" type="selectionEntry"/>
<entryLink id="f424-8742-d8d5-25b9" name="Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="1cc4-d166-fe8b-d4c7" type="selectionEntry"/>
<entryLink id="ac15-dcae-6246-04e9" name="Devastator Squad" hidden="false" collective="false" import="true" targetId="a60f-c03f-ebe1-fa2c" type="selectionEntry">
<categoryLinks>
<categoryLink id="d860-48e8-4b83-4400" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4811-450f-8118-c4b0" name="Dreadnought" hidden="false" collective="false" import="true" targetId="002e-7c43-59e8-3496" type="selectionEntry">
<categoryLinks>
<categoryLink id="26aa-76bd-bca1-01c9" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9c7a-4e4d-f5a4-bf16" name="Drop Pod" hidden="false" collective="false" import="true" targetId="6459-e87c-6b3f-56f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="1bc1-4824-f0fb-cd56" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5245-7a19-3cf2-f04d" name="Eliminator Squad" hidden="false" collective="false" import="true" targetId="1156-c71b-f255-6d86" type="selectionEntry">
<categoryLinks>
<categoryLink id="2aad-e50f-9157-574c" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="57fb-05b3-8ac7-51c5" name="Fire Raptor Gunship" hidden="false" collective="false" import="true" targetId="e385-ed6c-8c89-72fa" type="selectionEntry"/>
<entryLink id="f3a3-0d83-2c2a-8d39" name="Hellblaster Squad" hidden="false" collective="false" import="true" targetId="ac7e-23cf-be74-f957" type="selectionEntry">
<categoryLinks>
<categoryLink id="b717-9f3d-32dd-73c0" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="60c0-81f3-fd18-a34f" name="Honour Guard [Legends]" hidden="false" collective="false" import="true" targetId="02ee-2890-6c93-ea34" type="selectionEntry"/>
<entryLink id="92e4-ebc6-5613-3a85" name="Hunter" hidden="false" collective="false" import="true" targetId="af33-4263-38f9-ef56" type="selectionEntry">
<categoryLinks>
<categoryLink id="c65a-2f80-0bbd-ffee" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1212-b23c-edc7-6a28" name="Imperial Space Marine [Legends]" hidden="false" collective="false" import="true" targetId="fde4-48fe-5b25-d8c3" type="selectionEntry">
<categoryLinks>
<categoryLink id="1d2c-935c-c99a-dfa9" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="4934-2a89-eafa-54f6" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="ed4d-5374-0004-f5b7" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="891a-c61c-a372-8cb0" name="Impulsor" hidden="false" collective="false" import="true" targetId="9930-9131-25e4-fd41" type="selectionEntry"/>
<entryLink id="b281-5521-f973-3ac9" name="Inceptor Squad" hidden="false" collective="false" import="true" targetId="70bc-0516-df21-bbb8" type="selectionEntry">
<categoryLinks>
<categoryLink id="8319-9d5c-edc3-0707" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b838-303d-135d-a913" name="Infiltrator Squad" hidden="false" collective="false" import="true" targetId="4d98-5c31-6b1c-9002" type="selectionEntry">
<categoryLinks>
<categoryLink id="aa51-3aab-5cea-ed68" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="087a-e9de-c8a7-500a" name="Intercessor Squad" hidden="false" collective="false" import="true" targetId="e89e-4431-97de-4b38" type="selectionEntry">
<categoryLinks>
<categoryLink id="ce5c-0d68-251c-d3fc" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dbe0-bb16-32f9-36e3" name="Invictor Tactical Warsuit" hidden="false" collective="false" import="true" targetId="2c7f-89cd-0078-fb70" type="selectionEntry"/>
<entryLink id="961e-c24b-34ee-49fb" name="Ironclad Dreadnought" hidden="false" collective="false" import="true" targetId="ddfd-70c4-fce9-b2ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ac5-3a3a-465b-bc39" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ec04-83de-fbcf-ec55" name="Land Raider" hidden="false" collective="false" import="true" targetId="1dc2-439f-a67f-ab18" type="selectionEntry">
<categoryLinks>
<categoryLink id="bd48-aca9-f4f7-52d5" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b002-8db7-0335-c947" name="Land Raider Achilles" hidden="false" collective="false" import="true" targetId="cda6-03b8-b84c-777e" type="selectionEntry"/>
<entryLink id="082d-c42c-a05d-ce34" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="82a3-db47-e289-5c4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="3a25-5d31-107d-a1a8" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a2eb-eab8-7ea1-0690" name="Land Raider Excelsior [Legends]" hidden="false" collective="false" import="true" targetId="1bf2-8db1-fc7f-085e" type="selectionEntry">
<categoryLinks>
<categoryLink id="d9b8-8008-20d6-bdf4" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a1ac-9663-4a38-ac2d" name="Land Raider Helios [Legends]" hidden="false" collective="false" import="true" targetId="2d29-c013-02f4-1b69" type="selectionEntry"/>
<entryLink id="14b4-0d45-c44e-9296" name="Land Raider Prometheus [Legends]" hidden="false" collective="false" import="true" targetId="63f2-ec41-a54f-9c67" type="selectionEntry"/>
<entryLink id="0224-ce89-b1ee-8325" name="Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="5549-ba1d-add0-8c62" type="selectionEntry">
<categoryLinks>
<categoryLink id="53a2-381d-1f71-a41d" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="866f-6281-a473-89eb" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cfc5-43e4-b02e-d1f9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5640-f7ae-a50a-b95f" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="cd75-5151-c130-be3e" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="4568-71c9-6bf8-6ec5" name="New CategoryLink" hidden="false" targetId="07c5-df87-f7cb-e961" primary="false"/>
<categoryLink id="f478-8946-ee7c-4d48" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="7724-b22e-df32-ab34" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="11c6-755e-536a-fd24" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="01eb-3ae6-6857-4c54" name="Land Speeder Storm" hidden="false" collective="false" import="true" targetId="0213-79bc-add0-1b5d" type="selectionEntry">
<categoryLinks>
<categoryLink id="24c2-c5ed-b9a9-86ff" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0c6e-25a6-9f78-9d26" name="Land Speeder Tempest" hidden="false" collective="false" import="true" targetId="fe5a-52a1-e42a-51cd" type="selectionEntry"/>
<entryLink id="abae-80e9-aa4c-6a96" name="Land Speeders" hidden="false" collective="false" import="true" targetId="f177-22c2-149f-d158" type="selectionEntry">
<categoryLinks>
<categoryLink id="5f72-e164-7cf7-cf30" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ebef-adbf-6e67-7ccc" name="Librarian" hidden="false" collective="false" import="true" targetId="e0af-48b6-0d42-6525" type="selectionEntry">
<categoryLinks>
<categoryLink id="1f98-1284-049a-bba7" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="bfb8-933d-baef-12d7" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="9370-d854-c503-923f" name="Disciplines" hidden="false" collective="false" import="true" targetId="77c4-06bd-08a2-e26d" type="selectionEntryGroup"/>
<entryLink id="3b28-b1c7-e52a-4a39" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="1dbe-dfa9-7ad2-147b" name="Librarian in Phobos Armour" hidden="false" collective="false" import="true" targetId="4f17-85bd-3950-4210" type="selectionEntry">
<categoryLinks>
<categoryLink id="bd21-bf4e-e337-a765" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d412-a749-3474-d990" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="adf4-77d6-196c-7f4b" name="Disciplines" hidden="false" collective="false" import="true" targetId="77c4-06bd-08a2-e26d" type="selectionEntryGroup"/>
<entryLink id="97b5-a802-a4e2-d6fe" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="1870-78db-b48b-41e7" name="Librarian in Terminator Armor" hidden="false" collective="false" import="true" targetId="33b2-f596-1a44-a2a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="17fa-bd96-82a5-a199" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d444-914e-7fbe-1ec7" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="d00a-b2d9-631a-c9e0" name="Disciplines" hidden="false" collective="false" import="true" targetId="77c4-06bd-08a2-e26d" type="selectionEntryGroup"/>
<entryLink id="fb87-1e9c-ba1d-99ce" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="d0d0-c00e-6982-ee5a" name="Librarian on Bike [Legends]" hidden="false" collective="false" import="true" targetId="ddf0-3cff-f619-d42f" type="selectionEntry">
<categoryLinks>
<categoryLink id="8eaf-49ba-29ba-5a65" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7239-6c6b-f939-4484" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="dec7-6cf9-ccd1-c9b0" name="Disciplines" hidden="false" collective="false" import="true" targetId="77c4-06bd-08a2-e26d" type="selectionEntryGroup"/>
<entryLink id="7496-6613-080e-3aea" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="a848-87df-f976-a721" name="Mortis Dreadnought [Legends]" hidden="false" collective="false" import="true" targetId="8f67-d315-b9ff-f564" type="selectionEntry"/>
<entryLink id="0cd6-46a0-0c43-d539" name="Predator" hidden="false" collective="false" import="true" targetId="35a4-8bcc-287a-95aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="bd5f-561f-b391-7a79" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="29d3-177a-3f2c-9e51" name="Primaris Ancient" hidden="false" collective="false" import="true" targetId="58f2-f816-58f2-0b94" type="selectionEntry">
<categoryLinks>
<categoryLink id="4626-34b7-89a0-d287" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="4fbb-9338-d42f-749f" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="8783-fe21-56b1-787b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="69f6-4671-9c6b-a3a4" name="Primaris Apothecary" hidden="false" collective="false" import="true" targetId="2cc5-ebdd-f833-74f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e0c-1d80-63e4-bc29" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a82b-b749-10c6-5fce" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="b4ad-75b2-45d0-01e7" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="4994-33fc-d40d-ecfa" name="Primaris Captain" hidden="false" collective="false" import="true" targetId="5eda-df7b-e300-499e" type="selectionEntry">
<categoryLinks>
<categoryLink id="b46a-ffec-d1ba-f832" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a630-1e5d-a0f5-2ab6" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="03f4-54c1-861f-68eb" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="272b-a79b-04ea-9baf" name="Primaris Chaplain" hidden="false" collective="false" import="true" targetId="b539-2e47-1a8f-d7d8" type="selectionEntry">
<categoryLinks>
<categoryLink id="ccfb-dec7-7c58-33e1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="e81f-da95-296a-aae5" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="29fd-b320-bf6c-8c0f" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
<entryLink id="c55a-0860-d971-f2ad" name="Litanies" hidden="false" collective="false" import="true" targetId="edab-e2c4-01f5-63cc" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="da7d-6425-b54b-be66" name="Primaris Librarian" hidden="false" collective="false" import="true" targetId="2603-7d82-fde3-aedd" type="selectionEntry">
<categoryLinks>
<categoryLink id="e187-caf8-47d6-b4a9" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0134-f94d-1d13-820c" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="b92c-f20c-f495-a3b1" name="Disciplines" hidden="false" collective="false" import="true" targetId="77c4-06bd-08a2-e26d" type="selectionEntryGroup"/>
<entryLink id="290f-9222-db72-0302" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="e289-c2b1-2393-a0c8" name="Rapier Carrier" hidden="false" collective="false" import="true" targetId="58a4-c616-2b06-62bd" type="selectionEntry"/>
<entryLink id="7faf-f261-100e-cc82" name="Razorback" hidden="false" collective="false" import="true" targetId="e7e9-ce98-90d0-0de9" type="selectionEntry">
<categoryLinks>
<categoryLink id="da5b-e7e0-5abb-ebdd" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5b08-6231-f497-15ec" name="Redemptor Dreadnought" hidden="false" collective="false" import="true" targetId="ba12-f033-1337-ef00" type="selectionEntry">
<categoryLinks>
<categoryLink id="a32f-704f-651d-b03d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="269f-a1c1-1582-ec7f" name="Reiver Squad" hidden="false" collective="false" import="true" targetId="7046-e724-263b-4b74" type="selectionEntry">
<categoryLinks>
<categoryLink id="ed38-d71c-d191-830c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e8a3-f890-92b7-0f7d" name="Cerberus" hidden="false" collective="false" import="true" targetId="c0a4-cc23-05db-0069" type="selectionEntry"/>
<entryLink id="a7b8-1a02-ab15-b5e4" name="Relic Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="45f1-772c-0091-a1a8" type="selectionEntry"/>
<entryLink id="cf38-7841-9cbb-f146" name="Deredeo Dreadnought" hidden="false" collective="false" import="true" targetId="6827-21ac-bb87-2c55" type="selectionEntry"/>
<entryLink id="90ca-c1ff-02e8-4f60" name="Falchion" hidden="false" collective="false" import="true" targetId="29dc-03dd-48c0-b827" type="selectionEntry"/>
<entryLink id="56e7-7b8a-42a4-f03b" name="Fellblade" hidden="false" collective="false" import="true" targetId="eb31-fd4c-d1ec-98a8" type="selectionEntry"/>
<entryLink id="420b-25c1-7335-7a46" name="Javelin Attack Speeder" hidden="false" collective="false" import="true" targetId="f7e4-a2c8-e56f-771f" type="selectionEntry"/>
<entryLink id="a1dc-8286-706a-c3a3" name="Land Raider Proteus" hidden="false" collective="false" import="true" targetId="1c6e-951e-b7b2-d0b5" type="selectionEntry"/>
<entryLink id="d016-a9e2-0e86-377a" name="Leviathan Dreadnought" hidden="false" collective="false" import="true" targetId="945d-3e51-177b-81a4" type="selectionEntry"/>
<entryLink id="430b-270f-53f7-5060" name="Mastadon" hidden="false" collective="false" import="true" targetId="f234-bce0-e518-5f66" type="selectionEntry"/>
<entryLink id="1f03-7a41-b679-c815" name="Sicaran Arcus" hidden="false" collective="false" import="true" targetId="eb92-5053-3d5f-745d" type="selectionEntry"/>
<entryLink id="5088-cf17-099a-1669" name="Sicaran Battle Tank" hidden="false" collective="false" import="true" targetId="205b-9bbc-256d-54e9" type="selectionEntry"/>
<entryLink id="6261-9703-e28f-d631" name="Sicaran Omega" hidden="false" collective="false" import="true" targetId="ae08-6f34-f510-66fb" type="selectionEntry"/>
<entryLink id="e8a8-d61f-22c7-cd40" name="Sicaran Punisher" hidden="false" collective="false" import="true" targetId="0260-ed3e-73b7-b490" type="selectionEntry"/>
<entryLink id="db4d-16fa-75fd-dc44" name="Sicaran Venator" hidden="false" collective="false" import="true" targetId="c1c8-a93d-9eec-e2a1" type="selectionEntry"/>
<entryLink id="75ba-2236-5435-92e0" name="Spartan" hidden="false" collective="false" import="true" targetId="251c-52c6-b76e-f737" type="selectionEntry"/>
<entryLink id="cbaf-308c-61d5-ac34" name="Typhon" hidden="false" collective="false" import="true" targetId="e2b1-8e57-c071-300a" type="selectionEntry"/>
<entryLink id="e466-7c39-5acb-45e2" name="Whirlwind Scorpius" hidden="false" collective="false" import="true" targetId="8a97-e37c-1e15-dbf7" type="selectionEntry"/>
<entryLink id="d341-8c39-f9c2-3278" name="Repulsor" hidden="false" collective="false" import="true" targetId="3d07-7a39-998b-32c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d79-9ce7-6102-6006" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1c3e-cc35-3ef7-4c6f" name="Repulsor Executioner" hidden="false" collective="false" import="true" targetId="1c3b-b714-79e5-38f6" type="selectionEntry">
<categoryLinks>
<categoryLink id="7ad1-f4ef-15cb-36f2" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d916-8ac5-d8f7-aa7f" name="Rhino" hidden="false" collective="false" import="true" targetId="410f-eff8-c527-d49c" type="selectionEntry">
<categoryLinks>
<categoryLink id="3ec6-ec5e-0052-3e3d" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c025-fe5d-a0f8-ccbf" name="Rhino Primaris [Legends]" hidden="false" collective="false" import="true" targetId="1900-32d2-fe05-df9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="e6df-b88e-6d75-e16b" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d377-55fc-3782-c96d" name="Scout Bike Squad" hidden="false" collective="false" import="true" targetId="1c9d-5baf-1410-2234" type="selectionEntry">
<categoryLinks>
<categoryLink id="296a-6c39-47e9-a10c" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bf2a-5d77-6d01-8988" name="Scout Squad" hidden="false" collective="false" import="true" targetId="6ad4-2695-93d6-f1e4" type="selectionEntry">
<categoryLinks>
<categoryLink id="1075-382d-dfa1-0cdb" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="65cc-c203-129d-ac82" name="Servitors" hidden="false" collective="false" import="true" targetId="2449-8cca-dc0e-dcbb" type="selectionEntry">
<categoryLinks>
<categoryLink id="29fb-2c74-2ae7-11c0" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="610a-00ae-579f-8386" name="Sokar Pattern Stormbird" hidden="false" collective="false" import="true" targetId="c5c5-9229-e931-8bb7" type="selectionEntry"/>
<entryLink id="adb2-9152-49dc-dab8" name="Stalker" hidden="false" collective="false" import="true" targetId="2b1c-28cb-0e36-45e9" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f0f-3c40-03bf-5220" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1f29-ef35-903d-74d3" name="Sternguard Veteran Squad" hidden="false" collective="false" import="true" targetId="d334-cce7-1c95-7496" type="selectionEntry">
<categoryLinks>
<categoryLink id="22db-7f93-247a-d391" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fda6-a5da-4911-a603" name="Storm Eagle Gunship" hidden="false" collective="false" import="true" targetId="fe69-c329-dccc-975d" type="selectionEntry"/>
<entryLink id="13b9-fa40-6309-4fde" name="Stormhawk Interceptor" hidden="false" collective="false" import="true" targetId="5c59-8294-4005-3303" type="selectionEntry">
<categoryLinks>
<categoryLink id="d093-e4b3-d472-19af" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="450b-8609-32fc-68d0" name="Stormraven Gunship" hidden="false" collective="false" import="true" targetId="96bd-01eb-93d0-2c91" type="selectionEntry">
<categoryLinks>
<categoryLink id="d533-9903-9de1-5e8e" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1f89-16c7-3e8d-d9ba" name="Stormtalon Gunship" hidden="false" collective="false" import="true" targetId="0775-5d48-0c00-f53f" type="selectionEntry">
<categoryLinks>
<categoryLink id="b369-d684-825f-3d8a" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f8fa-aa7a-0e85-8e17" name="Suppressor Squad" hidden="false" collective="false" import="true" targetId="ec65-f1fb-6f32-11f2" type="selectionEntry"/>
<entryLink id="9120-98f9-e2fe-aaa7" name="Tactical Squad" hidden="false" collective="false" import="true" targetId="8699-3820-0f9d-7bbc" type="selectionEntry">
<categoryLinks>
<categoryLink id="6c6e-a510-8dda-0a40" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6545-4410-ce00-0c71" name="Tarantula Air Defence Battery [Legends]" hidden="false" collective="false" import="true" targetId="9bf8-a4fa-ed66-4c2f" type="selectionEntry"/>
<entryLink id="8f0b-a9f3-1347-f053" name="Tarantula Sentry Battery" hidden="false" collective="false" import="true" targetId="3021-f871-0263-ccb1" type="selectionEntry"/>
<entryLink id="2884-0e9f-4011-d9df" name="Techmarine" hidden="false" collective="false" import="true" targetId="f8cb-6182-08e4-e22b" type="selectionEntry">
<categoryLinks>
<categoryLink id="32b5-90a8-dbc6-e6a9" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="984c-ded6-7b6e-777b" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="aa07-b547-75f9-5d10" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="ad29-e8a8-dad9-8435" name="Techmarine on Bike [Legends]" hidden="false" collective="false" import="true" targetId="2883-3fa0-f689-4b88" type="selectionEntry">
<categoryLinks>
<categoryLink id="2421-b98e-86e4-2b0d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c7f7-71c4-e280-b754" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="532b-2310-2778-61e1" type="selectionEntryGroup"/>
<entryLink id="0be4-a7eb-8fca-f76d" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="5995-5ebe-47f7-892c" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="5a5a-2ca4-dd41-7215" name="Terminator Assault Squad" hidden="false" collective="false" import="true" targetId="418f-04b7-2679-eddf" type="selectionEntry">
<categoryLinks>
<categoryLink id="652f-d85f-44ce-2807" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="efbe-3e1e-369c-e83b" name="Terminator Squad" hidden="false" collective="false" import="true" targetId="7b2e-47fe-ee40-8b35" type="selectionEntry">
<categoryLinks>
<categoryLink id="f666-7e83-2961-ea52" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d2a8-fd72-d6d7-c318" name="Terminus Ultra [Legends]" hidden="false" collective="false" import="true" targetId="3ccf-35d5-d59d-d01a" type="selectionEntry">
<categoryLinks>
<categoryLink id="ba1d-3a91-ad1a-3d83" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>