forked from Geemoney24/BattleScribeData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpace_Wolves_5th_Ed.cat
1031 lines (1031 loc) · 232 KB
/
Space_Wolves_5th_Ed.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"?><catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="572da590-3b14-4111-9d0d-ebab70a2e77d" revision="2" gameSystemId="3d1a4963-0629-4025-a90b-76ab3d63c5c5" gameSystemRevision="1" battleScribeVersion="1.11b" name="Space Wolves 5th Ed (2009)"><entries>
<entry id="00900315-8ca5-4cdb-89e9-b4dfd36c8256" name="Bjorn the Fell Handed" points="270.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups>
<entryGroup id="f2dbee7d-f1ea-4639-ab42-2b3d5d412189" name="Weapon" defaultEntryId="4a873883-b0e3-42c3-b079-6cae5feecb87" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4a873883-b0e3-42c3-b079-6cae5feecb87" name="Plasma Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bbf30bcf-4fac-4d50-89ec-2c94e91b2a80" name="Assault Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="18b93edc-1e40-4618-aab8-46dd735751df" name="Twin-Linked Lascannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="573835e8-1367-48fe-8405-e2bb3f96dc8a" name="Blood Claws Pack" points="0.0" category="Troops" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="feb8908e-a105-4f92-9099-e030a0ff1106" name="Blood Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="15" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c0d9468e-0d90-44cb-bc10-b271ae78a376" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="77268fca-ef09-44db-be94-2dc418c96912" name="Lukas the Trickster" points="155.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="573835e8-1367-48fe-8405-e2bb3f96dc8a" childId="feb8908e-a105-4f92-9099-e030a0ff1106" field="selections" type="at most" value="14.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="7ac3b4e4-3743-4b10-81cd-bb6290f82532" name="Special Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4730dd6a-5df5-40e7-8bfa-1fe9a166d1b6" name="Plasma Gun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ee055b61-f0d4-4308-964c-735c9485d53d" name="Meltagun" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f0103f27-2efb-42b5-a9fa-2b960959f3f8" name="Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="f6a3bf24-d53d-4ef1-9469-2a461ba0dc8f" name="Special Weapon (Free)" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2b8e0061-a0e3-4bbe-959f-413ffd7e88a9" name="Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1f81b7c5-3cee-4b3a-b48d-a078811cd31d" name="Meltagun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4dbb26b3-8bcb-4d2e-b498-280ba5c7d036" name="Plasma Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="573835e8-1367-48fe-8405-e2bb3f96dc8a" childId="feb8908e-a105-4f92-9099-e030a0ff1106" field="selections" type="equal to" value="15.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="573835e8-1367-48fe-8405-e2bb3f96dc8a" childId="7ac3b4e4-3743-4b10-81cd-bb6290f82532" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="f5a2f128-465b-49b7-88d1-99601082c8ab" name="Close Combat Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="68e0af8e-5f76-4e92-a860-5b1a6baa4491" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="54ce378a-23a4-4193-8b70-26f23a301fbf" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="aef6bf5d-e508-46fa-b069-ba7bf00f1494" name="Dedicated Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d3feb43c-847b-4874-b9d8-abcf6aedebfa" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="3b579298-c994-4ff3-8759-707ec0a183e2" name="Weapon" defaultEntryId="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="843c0323-46de-47b0-a4bd-8df85680aef0" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="520d8d8b-8850-4c65-80e4-d10dc697b3a6" name="Rhino" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a1152e04-6d45-49ec-a83d-76c494e9ea1b" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a7573d57-0197-40cf-a73d-626b197d4c61" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1eccba83-82d0-4d9e-a67c-2dddf39d73b6" name="Additional Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bef4b8aa-f562-48a8-ae69-d1b010f0ee4d" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="eaa9c576-0781-4195-8a40-83511531aeb4" name="Razorback" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="bf37860a-61c6-4af3-8a3a-7aaf46cb5eba" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="52a40c21-f5c7-4801-acd8-c00dbeb38f22" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="513e4227-d6c8-4c37-95f2-f7be7c9b39e2" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2d4cda53-bdaf-4abc-9432-c52eb608df9b" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="a314bb3b-14d4-420a-97d6-a84f1ee2630f" name="Weapon" defaultEntryId="0a31fc67-3763-4f9f-9b20-481d6af8f10e" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="bf05c4f6-6f6a-44d8-903b-a72d97e5fa19" name="Twin-linked Heavy Flamer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3a449530-2b2a-48d5-b199-60474fec43f8" name="Twin-linked Assault Cannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="00e2c092-f3c4-450f-a5c1-d9ee61a41f9f" name="Twin-linked Lascannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="da4fc178-9df9-4a6c-b1b6-34a12692320f" name="Lascannon & Twin-linked Plasma Gun" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0a31fc67-3763-4f9f-9b20-481d6af8f10e" name="Twin-linked Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="5ba734d2-b99c-4e69-8e4f-7fa21a09aba4" name="Canis Wolfborn" points="185.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="9d5e7d32-19cd-49da-9ec4-03986dd63a87" name="Fenrisian Wolf" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e8c2c7fe-ab95-4860-b703-10c5fa832693" name="Dreadnought" points="105.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b3e4be9a-d24e-4e77-9afe-86c1f84b70c1" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="532af8e8-d653-4c05-8c71-1263504e7ebe" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b45b7140-49f7-4d62-a0ff-45827eeb18f6" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b7590a44-41ab-42ab-aaa4-686780db765d" name="Searchlight" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1c06797f-47d1-42ff-a235-5493a2bdd2ce" name="Smoke Launchers" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a91ed230-b656-4f9b-af81-2dd8b5a9c358" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="13900b93-e9b6-4598-8cff-21061dc74e93" name="Weapon" defaultEntryId="34ed8770-f02e-4eb7-89cc-1d1c6705c112" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a07d4184-3dfe-4fd8-9b39-ec0e7a8c125e" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="34ed8770-f02e-4eb7-89cc-1d1c6705c112" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="338977d5-aff6-4442-9bbc-0eec93e95fd1" name="Right Arm" defaultEntryId="9490a4e5-c4d4-4215-954a-77ec5ec68177" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0dc015a9-7d97-4efb-9540-f0a83a441b8d" name="Plasma Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b50a11bb-5877-4644-975e-6b47aae42dbf" name="Twin-Linked Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="72eec8d8-6eec-45c0-b090-440ba2f1457b" name="Twin-Linked Heavy Bolter" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e8d16aea-64a4-4c19-b823-6b77fb3eb7cc" name="Multi-Melta" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3d139136-17eb-4c7c-9ff2-7fd36ddd2f66" name="Twin-Linked Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9490a4e5-c4d4-4215-954a-77ec5ec68177" name="Assault Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2f7cc350-67eb-48e5-9bac-2796fa223421" name="Twin-Linked Lascannon" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="e663e470-be97-4d71-b418-39c5e0cc41e9" name="Left Arm" defaultEntryId="6b6c745f-f613-4eb4-878a-e00acc0dd0fd" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b24a40b5-0ed8-40e1-9c34-13154a5aa456" name="Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b9fb6556-f249-4b70-82c3-bd789eac0c48" name="Twin-Linked Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6b6c745f-f613-4eb4-878a-e00acc0dd0fd" name="Dreadnought Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="6ce4fd1b-6e49-48c4-8ce4-c7b9d5601bd2" name="Built In Weapon" defaultEntryId="6ecd4940-9782-47b9-99b8-a90c1d0f983a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2ed41fdf-95e1-4c69-a41b-92d79ff4cf4b" name="Heavy Flamer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6ecd4940-9782-47b9-99b8-a90c1d0f983a" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="883c4cf0-19ae-4cd9-bc64-cef1558de7e5" name="Fenrisian Wolf Pack" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="46575f1c-9d02-4b42-b7bf-fa7ff0bce985" name="Fenrisian Wolf" points="8.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="15" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="46f04155-16a0-4613-a234-ee81fd9c2ca6" name="Cyberwolf" points="8.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="roster" childId="5ba734d2-b99c-4e69-8e4f-7fa21a09aba4" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="3fd9efe1-585e-452e-b4df-23dd9ef24679" name="Fenrisian Wolf Pack (Troops)" points="0.0" category="Troops" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="32d5a5e0-dfe7-41cc-b7fa-644983c6c306" name="Fenrisian Wolf" points="8.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="15" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="69abfdd7-1a61-4feb-920d-856cb40d9eb7" name="Cyberwolf" points="8.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="roster" childId="5ba734d2-b99c-4e69-8e4f-7fa21a09aba4" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="ee2373a5-ed10-4d79-a2c1-76b46a24469a" name="Grey Hunters Pack" points="0.0" category="Troops" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ef0188a3-6b80-48f1-a2dd-849aea79b00d" name="Grey Hunter" points="15.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="31f99400-05fe-4563-acfa-7d3f243b2afc" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e8eda59b-4ef5-40ed-9ab8-5d0735c5139c" name="Wolf Standard" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="24126e38-27d9-4a13-8ca7-da78cc03159a" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="807b3568-2d38-462e-a2fb-cbd234ac888f" name="Special Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4c7018ff-b158-49cc-bda6-1f33f1dc882b" name="Plasma Gun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="22cf5500-fa0e-4f16-ad4a-a9324fe615e4" name="Meltagun" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="290db9a7-531e-42ea-b95b-286fe27b4217" name="Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a9fa7eb7-fc95-4381-abef-7b54bff60752" name="Special Weapon (Free)" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6975a90e-9d1c-4167-9565-d3e9becced36" name="Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="38291883-26e6-45eb-879b-777d568e5f40" name="Meltagun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fba8e955-2419-4a9a-aa73-d91f6bba4b77" name="Plasma Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ee2373a5-ed10-4d79-a2c1-76b46a24469a" childId="ef0188a3-6b80-48f1-a2dd-849aea79b00d" field="selections" type="equal to" value="10.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ee2373a5-ed10-4d79-a2c1-76b46a24469a" childId="807b3568-2d38-462e-a2fb-cbd234ac888f" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="b8ae3869-3318-49a1-a42d-98358233f989" name="Close Combat Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="25443c42-42b4-49b1-b3f6-5d3329370f3e" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="28fb2aa4-f2e0-4db3-a0c3-d2d5026227c0" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="47914ae6-5f66-49b6-b5f0-c7f830ec7848" name="Dedicated Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fe0aa490-39fb-41aa-8b23-d7afe1fb0312" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="b6015e34-1334-4152-9aee-4dfc176c2642" name="Weapon" defaultEntryId="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f2903139-304d-4a7f-84b6-15c84e9b1e1a" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9e84a5d7-87b2-4608-8519-e18d5e9a4c99" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="c8902652-7c67-44df-8084-4c6b4acf3d7c" name="Rhino" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b9c38fe5-bab1-4254-bf39-bced13cc2f8d" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="92a3543c-e9dc-4cb6-8ab9-c5341ec2a65c" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ea09ed8c-487c-44df-9913-6b4c145b9e6e" name="Additional Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c78e8f97-ac08-4b58-9904-92879d248255" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d26a4b4b-cab7-4178-9255-c0049fefbcfc" name="Razorback" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dd569a4e-ef43-446b-84b6-0b2076a25d62" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4556adce-d704-4528-b5c1-f409ab9e5d13" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ed7b4238-da15-4ee5-9d24-dd7b68dca096" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6576d6e9-5742-4c8a-8be2-3c97ffa39c2f" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="c0ef4ff1-e534-4b41-8ff8-9696ec74c7d1" name="Weapon" defaultEntryId="485b4c2e-9c0b-445a-9b62-635e29e799c3" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="528ab996-b1a4-415d-b0e5-8e43b40aaf68" name="Twin-linked Heavy Flamer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="09dbc937-ac16-498a-8696-cfb09a262067" name="Twin-linked Assault Cannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fcfec2d5-7921-4228-b716-e0792d59804d" name="Twin-linked Lascannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1c2dfd0e-fef2-4023-9c71-72e6a0dc6e50" name="Lascannon & Twin-linked Plasma Gun" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="485b4c2e-9c0b-445a-9b62-635e29e799c3" name="Twin-linked Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="e600fa48-71b9-4826-a735-8a8b63ca282d" name="Iron Priest" points="50.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cbbde21a-a04c-4675-b95d-20288e6cda65" name="Saga of the Iron Wolf" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ef98e434-11cc-4831-b43e-9ec1f5427ee5" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="12ed7ef7-116e-4215-b081-d66c3fbc306f" name="Thunderwolf Mount" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="237fb30f-0f70-4c64-8d22-603fd88c8a92" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="549e5096-597d-4e0d-9ff3-7794f5f221fb" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b1b4f73c-c0d0-4c8d-b93e-90b5a764fe37" name="Cyberwolf" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="6c6759f7-a7e5-438c-b284-638f6823ffc7" name="Thrall Servitors" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9ffbc401-e55f-467d-952e-f7a9383a23bf" name="Gun Servitor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="96a5ad67-a81a-48d3-bda6-9bd0a9138a33" name="Weapon" defaultEntryId="6f1c8b12-1c3f-4c0b-b892-26658e15e771" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries>
<entry id="9ce093ce-3494-48c4-b791-6f13ead3527e" name="Plasma Cannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ac5b4a74-ef41-47cf-aa26-9eff15212778" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6f1c8b12-1c3f-4c0b-b892-26658e15e771" name="Heavy Bolter" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="988569fb-2120-4769-b5ca-49af559625d4" name="Servitor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="74e7e331-071a-42ca-9fc5-4e6f720447ab" name="Land Raider" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="20227f4c-836f-4d90-ae31-fcd074db8b8d" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cd16115c-4e81-4bc7-aedf-457bdc6e4fed" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b825abd8-e987-4a56-9622-1e49a1d80829" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="feb3e04b-d45d-4fff-b689-fbb84deaf82f" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="863bf304-462d-42d6-aa90-74376a14a439" name="Land Raider Crusader" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="094a95b8-97e4-4413-b42a-85fd67bcd950" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2f194f47-6817-4c50-9ab0-b1a90e2679b7" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e9f5ee4d-0748-4b28-a229-5da3bf5f249c" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="665078d8-f373-495a-8038-6606172b0cc5" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6fe03bce-685f-400b-aef0-901008734cae" name="Land Raider Redeemer" points="240.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="14e4ea0d-515b-4282-bdb9-d934db1ae5b5" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8be7ac25-1b5a-4379-bdf7-58ba68f7369e" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b3ed6c1a-5cc8-4a38-83f6-5a8a241cd335" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f48d1095-208a-4361-bf21-5e8155fda529" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c739de81-036b-4e6e-a10f-9dcaa9d67836" name="Land Speeder Squadron" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cca557f1-92ea-44b3-a49b-a516cb6b3e91" name="Land Speeder" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="b6fc86a0-00fe-4b8a-b4f7-fa9ca8ad9162" name="Main Weapon" defaultEntryId="21878127-7059-46d5-99c4-9ec0a9b45b03" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="552001e3-15f5-498d-a450-6273272341ce" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e5c0900c-7442-49d4-9343-a06e1002f46e" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="21878127-7059-46d5-99c4-9ec0a9b45b03" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="2d05d3dc-4baf-461c-a3f3-d411fe427c20" name="Secondary Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="77bfa0d3-a080-4c4b-9e59-a52f9abe816a" name="Typhoon Missile Launcher" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="639071b0-0bf3-4953-9e48-74ea22f0366e" name="Assault Cannon" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fc45c895-0cfa-45f3-86d7-c07add116ae6" name="Multi-melta" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7fcc2db3-5754-4f5f-bc85-080e6ee7c90b" name="Heavy Flamer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="62664352-69e1-4509-8c2c-4b2a1336e002" name="Heavy Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="474741ef-42e8-4d23-9e07-2410ffef57f3" name="Logan Grimnar" points="275.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d705899a-961e-4230-8829-23ef49301432" name="Lone Wolf" points="20.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1d09327a-7d8b-436a-bc88-dafb361b1896" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f63b93f1-9f79-4e97-a4ff-ba20bcdea6b9" name="Fenrisian Wolf" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0938b447-4476-4060-959c-86ccafdd756d" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="1a246263-703c-4df8-b431-eb22292bc8a1" name="Weapons" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="759ecc61-c5b8-4671-879c-e7f8ad598dd7" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="abfa5c4a-1cd6-42b2-8b79-f9e3c15e031a" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f89c83fa-ec8c-4e9b-bead-27fd356cc020" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="df79a176-4feb-4598-b259-bb634d5b42e9" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="15f6fe3d-67ae-4d24-8a45-75f6ed2f4830" name="Wolf Claw" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="82748a56-8e48-421d-8388-5126a79d1547" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ec3a8a6e-b9d0-4526-95c3-b32929bff71c" name="Frost Blade" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="903d0996-5a25-48ce-aedb-c6ffc469ae56" name="Thunder Hammer" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6a8b9321-75b1-49c1-b9f7-c3d46b91dacb" name="Storm Shield" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="cf9bbbc8-a186-4481-874a-89f48d6a3cb1" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="cf9bbbc8-a186-4481-874a-89f48d6a3cb1" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="6d397d9e-45fb-45b8-8f92-c8e611307525" name="Armour" defaultEntryId="f5723a2e-2fb1-422b-99bb-10c474842b6a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9f003a05-8d05-410a-b6da-77a78cb9bb59" name="Terminator Armour" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cf9bbbc8-a186-4481-874a-89f48d6a3cb1" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="420f2fa7-1cf7-4594-bb09-54c334ee3217" name="Terminator Melee Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0a72490d-76f7-4e07-be03-098dd551334e" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="65ed37e3-ae42-4df2-832e-660a991ebf53" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e79a1570-a9b8-46e8-97b8-b449f1c0c149" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="185066de-0a9f-49a7-9c8f-01a1b4a9e931" name="Frost Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="36d86268-37d8-44e6-9ad5-6b4aaa9d1a99" name="Wolf Claw" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="37404ba4-8c82-4196-bac2-ac326861e9db" name="Power Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="934857fc-ceed-4f11-8665-0166cfd9d766" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="9f003a05-8d05-410a-b6da-77a78cb9bb59" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="9f003a05-8d05-410a-b6da-77a78cb9bb59" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="4d58417c-e79c-43a1-8712-9b4b064640ce" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9857a08c-a0d0-485c-9e76-b647c8b4c0ee" name="Chainfist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6b40e198-6151-4e9d-bf83-6ce1aa6ca40e" name="Storm Shield" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3356e064-fbb3-465a-a454-41665d59d3d2" name="Thunder Hammer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="946b602e-6431-452a-b343-6831e9f219b4" name="Wolf Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="53710b7f-5b68-45db-82df-19b7ac58e2fa" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="17c37534-1c5d-481e-a225-b9d890e4f5df" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="9f003a05-8d05-410a-b6da-77a78cb9bb59" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d705899a-961e-4230-8829-23ef49301432" childId="9f003a05-8d05-410a-b6da-77a78cb9bb59" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="47c5ec4c-76be-4b5e-a1a2-cead404ad7cf" name="Long Fangs Pack" points="0.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f8e164bd-5a2f-40ca-a281-559c727a4bcf" name="Long Fang" points="15.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="827be844-62fc-4e60-b1a0-5f7573342875" name="Heavy Weapon" defaultEntryId="9b5368e4-0e50-4453-8538-e71fca28caa9" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="067c700c-0399-4e0c-b871-fcc3a30aa3e4" name="Lascannon" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="13fb62b5-d7bc-4bae-a64f-8e719de47756" name="Plasma Cannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="193c07b3-671d-43bf-898e-be437162c997" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="eab80d7b-6cf5-4ad3-9359-295889c9f3a2" name="Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9b5368e4-0e50-4453-8538-e71fca28caa9" name="Heavy Bolter" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="fd0a57a2-41c4-4318-997a-5f906693ee70" name="Squad Leader" points="15.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c281dcbc-312d-46de-8972-f263bfb6b583" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="7b3217b6-9424-4251-9fd3-b1f335724cc7" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f5df0fba-9a71-4ac1-a5a3-d934671c832a" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="637b9e80-0ef1-4a56-a225-59e14a256dae" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ca0de7ec-5e95-43a4-88f8-42266b48d220" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="30bca39f-fdc9-4c5b-a9bb-e4320e743637" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bc1cfce8-abbf-4242-985b-664d9e31fe87" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d20887f6-9ddf-48f0-8273-d0703c959f2a" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="64dc47b0-0580-46b2-9d74-845beae5dfa7" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ddaccdd7-ff4f-4314-b7de-9567fc49dcc8" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2a7cddcf-5d95-4a19-815d-e7b36f17581f" name="Dedicated Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0159f52a-77e8-4b7e-839b-1a1f6ff27497" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="08683d98-202c-47fb-a829-0da42c3c76d2" name="Weapon" defaultEntryId="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c289f687-d989-4abd-ba7a-293e245b5794" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c08c700d-eee3-4c26-9bc9-54e7812a6c4c" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="91c2f4e3-b2c7-47f6-aa14-116b4299b3f7" name="Rhino" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="213a0c4a-f271-4582-9ec2-ebe901777b52" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b9317bd6-01a2-4a21-9113-17dfb89ddffb" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4f47e316-9ee9-4246-bd40-4eb45e15749f" name="Additional Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="79556af4-666b-4510-8ab6-47c9648ffb49" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b7c6d138-5d35-4b20-b363-b75a3ca9503a" name="Razorback" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="548b2ba6-6e4b-450e-9808-31b5bef6f109" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b1247ef0-d2d9-483e-a0a6-5ecb3891b925" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="69925a54-93af-407f-b0f8-645eeb485cb0" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="16a96704-8bc8-4ddd-aa2d-8ec40b66fc9b" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2a271385-da2e-47c5-86f7-5ca1c3ce66dc" name="Weapon" defaultEntryId="c8141df8-e57f-4d1a-8a0b-e86ddbdcf080" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6b3c3d50-6f97-424e-ab1f-6e603c84744d" name="Twin-linked Heavy Flamer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="859ad867-48b3-4244-ac2c-051f8c9d88e4" name="Twin-linked Assault Cannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6bae305e-1ccf-43b0-a1d0-01622400de98" name="Twin-linked Lascannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="49ee5aca-d59d-40d9-bb2b-6d4689943218" name="Lascannon & Twin-linked Plasma Gun" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c8141df8-e57f-4d1a-8a0b-e86ddbdcf080" name="Twin-linked Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="205d1a61-95a3-44d9-80a4-9dde14382af1" name="Njal Stormcaller" points="245.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="bfbb0190-7337-4481-a674-ddcaa6b788d6" name="Runic Terminator Armour" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="512969e5-f0a3-4768-ab35-6b12dd02c2ee" name="Predator" points="60.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="93402eba-c900-492c-8685-11e32364fdab" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ee8a6349-5642-4f54-8cb2-e4400d7eb821" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="acd1bbed-17f2-4a0e-a481-717583ccd4b3" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7bbf52c7-79b8-439f-bf48-84f54bee5a07" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="89220313-12dc-48f9-9008-b26548ecb947" name="Turret Weapon" defaultEntryId="c325b186-a6d6-41d5-a164-0a65e906b3ce" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="78a76679-ad6e-4f19-bc98-52dffc84577f" name="Twin-linked Lascannon" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c325b186-a6d6-41d5-a164-0a65e906b3ce" name="Autocannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="57c8d135-708b-4868-82ea-a8e46a2c7666" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dcf88ec5-ab18-4a9f-8cdf-16cefc11f228" name="Lascannons" points="60.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="afabd679-a757-4ac0-ad6c-2ca5810aaeba" name="Heavy Bolters" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="c111769c-f911-4b01-bafc-1e385c7f7314" name="Ragnar Blackmane" points="240.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="f8a17180-7f6a-4f9b-9a50-31a6023da071" name="Fenrisian Wolf" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6fe40167-2257-4ffc-93cd-c623534ccd1f" name="Rune Priest" points="100.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0317b3b4-5311-4922-aa34-258f8e690f3b" name="Master of Runes" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="81ee8186-658e-409e-9f46-7c1bc3770983" name="Runic Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4626be16-05b8-45d2-9a32-8e12d60da6e8" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e0e974d8-42b3-4102-9bdd-6ba430063e67" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2bf55de9-30b7-4830-8fe7-88d6900854c5" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="edd6936e-91cd-42c4-bfcb-99fb8cb13569" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="df8c3aee-03f2-4ac7-873d-c1924176e46c" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c42c15ea-6d5a-4828-b978-e228b8cb34aa" name="Chooser of the Slain" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="5be0112e-5038-47cf-999a-9a5a00161551" name="Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f7c1b9ea-a970-4a4f-9128-e555c2edb033" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="99793f86-bd4d-447a-849b-2d9a023c1710" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="95eaf451-24c9-475c-8ad4-d6e34b088ba8" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="455d7945-f6a7-4b0a-9317-d295fce2d1b5" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="a17b985a-de0e-4ff1-9a8c-b8799fdfde91" field="selections" type="equal to" value="1.0"/>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="220af27e-0cc6-4a47-bd18-bac4c852102d" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="a17b985a-de0e-4ff1-9a8c-b8799fdfde91" field="selections" type="equal to" value="1.0"/>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="220af27e-0cc6-4a47-bd18-bac4c852102d" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
</modifiers></entryGroup>
<entryGroup id="738f5d16-17f1-47bf-afc8-8c761a1dc570" name="Armour" defaultEntryId="f5723a2e-2fb1-422b-99bb-10c474842b6a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c0167606-ddd2-4a56-a6ab-65c6a7e96e2c" name="Terminator Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="220af27e-0cc6-4a47-bd18-bac4c852102d" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a17b985a-de0e-4ff1-9a8c-b8799fdfde91" name="Runic Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a0c37ca4-ea93-4d5e-ae8d-c3b869a42762" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="04dbd360-453f-408d-820a-85956c920fbe" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2dd3ddaa-9d1f-461c-9533-482d7ca25695" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="c0167606-ddd2-4a56-a6ab-65c6a7e96e2c" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="6fe40167-2257-4ffc-93cd-c623534ccd1f" childId="c0167606-ddd2-4a56-a6ab-65c6a7e96e2c" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="e68a0b6e-49d7-4481-b451-e70c4d28fcc6" name="Saga" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ebb2c989-8d2e-4e0e-a5b6-9a414741ddf5" name="Saga of the Warrior Born" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e8a6787b-1f8a-44c4-a669-999e7c0fd95b" name="Saga of the Beastslayer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="cd1e37c1-e14f-42e8-a460-2dccff13d58f" name="Psychic Powers" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="93764a1b-98b8-419c-9931-0df9386f5f97" name="Jaws of the World Wolf" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="48e4f0dc-8df7-44b1-82f5-e1f526cb159d" name="Murderous Hurricane" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4dbf8157-3f17-4564-ad7a-85c532b05ee2" name="Fury of the Wolf Spirits" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="528ffa7f-ec9e-44d0-86bb-cdcd7144c775" name="Tempest's Wrath" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1bd2c0d7-f24a-4ac7-9780-3a391bedcfb6" name="Storm Caller" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b1c3e5b7-e9e8-4433-83eb-13a62ea43c1d" name="Living Lightning" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2f2ae2c9-8fa5-4aa8-af91-d7b52e1b2033" name="Thunderclap" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="cbbe7688-5530-4cfb-b488-fd7c960650e5" name="Sky Claws Pack" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="8d80d545-da24-48a8-85da-91405c331e8b" name="Sky Claw" points="18.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8358f2f9-cf28-495a-a4c4-c4e4698b11b2" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="b6ebfdb0-182b-4fb5-b67f-f048e842c295" name="Special Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b1441eb8-9b0b-435f-93ed-73fe07258e41" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0c277161-b0d5-423b-a202-8b832b59f7c5" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="97696b6f-370b-41ee-aa28-664b4c8edaca" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cf250d74-4622-4cd6-85e9-3713bbad3c1d" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="098d5f57-fd59-498c-854f-ed64e9d9c417" name="Close Combat Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7cfd46fb-02ca-4e26-bcd1-3f7bacf6e6e1" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="42c71b06-19ab-4e45-8a3b-ca0ca65e1201" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="97b396a0-6362-40df-b24c-fc6d7b469f41" name="Swiftclaw Biker Pack" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0a615333-dead-4718-891d-095192bfbc87" name="Swiftclaw Biker" points="25.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e7844a44-a662-46ed-bb5c-9c3a23212da6" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c042ba2e-a3ea-41ed-bf28-c218ec732469" name="Swiftclaw Attack Bike" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4991897e-8e77-4782-8c52-cf5fa565044b" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="e2d753bb-19d6-41dd-9f8b-3e9744894829" name="Weapon" defaultEntryId="fc88fd8d-e7c1-4143-85f9-cd760bc07591" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ba2774d4-0627-42de-a560-e76c5a782b24" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fc88fd8d-e7c1-4143-85f9-cd760bc07591" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="6dcb40ae-7a27-4988-8d6b-0458927bb025" name="Special Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="490c2b9f-3a8b-46c6-844d-d421e7ac8f6b" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="108f33b4-ee60-4bea-8ca3-f95323717f7e" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5e17da38-42e9-45b7-a2c5-af4913d30824" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b96114ed-c5f2-4ad4-a88a-8040f4bb4d1d" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="20873dab-3784-4b21-b370-c660aa3aa6de" name="Close Combat Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="17481434-897e-46ea-97df-15b9fa9ba202" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e1d00fe3-9648-4993-a009-f2f537b5495b" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="8d2353b0-5f5b-42cd-ab74-9e84494197f6" name="Thunderwolf Cavalry" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="db21df64-e466-4718-94cc-def26858220b" name="Thunderwolf Cavalry" points="50.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f9917a10-58c5-4595-91a5-16e641b7a906" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="22dd6aa2-22e7-4252-8bed-c78d22e70548" name="Weapon" defaultEntryId="e91fdf20-2d26-44c8-855f-fe371af27392" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="75be78ae-2306-49a3-9c4f-13fc624d445b" name="Storm Shield" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0d77688e-b8c8-494d-a555-68dc048201c4" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6e936510-7b04-4628-845b-f2bffed2d9d2" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e91fdf20-2d26-44c8-855f-fe371af27392" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="4bf61703-85df-4f7d-9a07-5271557c0fe7" name="Mark of the Wulfen" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="27d03d90-6c22-4257-a866-26db3e49306d" name="Close Combat Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9e8f2154-fff2-4f4d-8f5b-e99a32a02b1c" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f75fe914-b0b0-4e4b-8149-1dc9982fbfba" name="Wolf Claw" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6ed5ec5b-9999-4408-a054-935c714f5304" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5cf28f41-5ee4-4571-97f8-1a1ff8766319" name="Frost Blade" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f08c2707-c205-4515-b1c7-97b0accac583" name="Thunder Hammer" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e294c935-fbb6-498b-bc33-1b7d1a05d87e" name="Storm Shield" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="3a702746-896b-489d-a7bf-608f07dbc3ce" name="Ulrik the Slayer" points="180.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="42b663f0-3339-4315-bbbb-4383548bc4e7" name="Venerable Dreadnought" points="165.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="caa15ce6-f1b4-4c02-ad96-ecf772b75eda" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3faffc83-e592-490e-813b-6d0e4ce32a9f" name="Searchlight" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="94e03c35-cafc-4e85-87c3-684996d61949" name="Smoke Launchers" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="864a420d-1242-4c22-966a-5cdaa9ac51a5" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8846aa12-9348-4872-82c5-77d6eb76f2f0" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8d6fe93d-5c58-4bef-9c88-27bb50b09192" name="Saga of Majesty" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9bafea2d-0d3b-4137-886b-5a713c06870b" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="07fb2a47-f05c-4652-9d07-4f6700eaf205" name="Weapon" defaultEntryId="0e93bdd6-4dc1-4cee-82b0-80c38e144d10" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="84200551-666e-418a-bb6f-219a630cc148" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0e93bdd6-4dc1-4cee-82b0-80c38e144d10" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2da01116-671e-41c5-aac7-09584473679c" name="Right Arm" defaultEntryId="9490a4e5-c4d4-4215-954a-77ec5ec68177" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="02b569fe-f183-4041-9d11-ac7209fbcda2" name="Plasma Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="10455ee8-c4bc-45aa-b160-4dc46194ece9" name="Twin-Linked Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="02b18316-61c4-494d-baef-81f3796dbae4" name="Twin-Linked Heavy Bolter" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="20986607-8f74-4f46-a4b2-47bd5116dfb5" name="Multi-Melta" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="95e4ff1c-abfe-4320-853b-4c9a37dd58db" name="Twin-Linked Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3852754c-d997-485a-9fb7-d53fa4f16384" name="Assault Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a600140d-a04b-4f5f-af48-3c990010c61e" name="Twin-Linked Lascannon" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="dd601d27-9c6c-46c3-9b4c-c0ba3e44ed16" name="Left Arm" defaultEntryId="6b6c745f-f613-4eb4-878a-e00acc0dd0fd" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="23493b49-be68-4f56-9782-d0999eb2ef3d" name="Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="29b7fc3b-8e46-4a48-aea6-25b930ffd617" name="Twin-Linked Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="eae6d68b-7cfb-4358-a50c-9fd8dee69b1b" name="Dreadnought Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="66ca482a-1478-4122-9f70-1dfcd6600ce1" name="Built In Weapon" defaultEntryId="6ecd4940-9782-47b9-99b8-a90c1d0f983a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="96c52ed7-be53-456c-a750-d196ccc12d29" name="Heavy Flamer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b708a52b-2ffa-418d-a409-0d94a45178a1" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="4a7d6494-e65e-4bd4-84ae-d3218204658d" name="Vindicator" points="115.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5fddd5c1-5ad3-4d01-9aa4-d36e27ebbbec" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2025e725-83e7-4b3b-b9b3-68e1afe891f3" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e44289a6-d4c5-4cf3-8dfa-fe746c3a5820" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7dffc8a0-bba4-4496-a55b-6f6615a25645" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ec034dc6-297b-4e56-bca0-19f968ed27a7" name="Siege Shield" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5a00c5d0-8d06-4074-a230-23111830b954" name="Whirlwind" points="85.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="61fba976-00cd-4ef9-a487-3d318755c2d1" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d7705536-52f1-4b56-a4e8-d329fa79c87e" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fc189373-25a4-4e99-bf5d-9efe8d6ce46e" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0512c582-c4ff-4903-bf99-b95fb37be006" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="359ba924-2536-4525-a2ec-b5a6e1e10d11" name="Wolf Guard Battle Leader" points="70.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5d383594-70f5-4989-97f8-ce2325134229" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bc7d9e2d-9012-4197-a3a4-991ad50738ef" name="Thunderwolf Mount" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c2d71407-bf6f-41a8-adf0-6903a47c77a0" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d766a999-2817-4818-91b3-d7669ed4ffb7" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="72c8769f-952f-4890-8209-eb2712ac3958" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="116c9fbf-e48a-4eec-9ab8-eb0daed2184d" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e5e370ba-a741-48f5-8068-377f533db25a" name="Fenrisian Wolf" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="10875fff-f20b-4fb0-b0d7-10ca7d1bd14a" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="ab8f6a5a-a988-486d-b318-534b9a6bc9f1" name="Weapons" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0f217553-9086-4e89-99b3-4f20969bf4bc" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ad0ad7c3-a7b6-4687-9fbd-ed942192d181" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="46dfc63e-f361-4303-b059-ec02ed9711d7" name="Combi Flamer/Melta/Plasma" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="69f1ff74-9c5f-4b47-8cc4-50837861293f" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cfc18035-7aec-4dff-97d0-f53ccf9e121a" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="082750a4-eb50-4f4e-9282-bb2257898723" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="75f41f52-3666-4fde-b336-6f007df2bd45" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="82c54b42-f29b-49e0-b6ef-888911811995" name="Wolf Claw" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="51171f0a-5e69-4889-988c-375b27adcfbb" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="832e849b-eee1-4e93-9efb-ad204c7f9475" name="Frost Blade" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="58d08632-574b-4507-9fe2-e25352594e82" name="Thunder Hammer" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="39aa4309-bfa7-42ee-a2a4-f63ce930f078" name="Storm Shield" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="3fe42eaf-4eae-43a1-98c7-4ff949ddcd8d" field="selections" type="equal to" value="1.0"/>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="2966d46f-6f13-4bb8-91ed-cb18755c3b92" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="3fe42eaf-4eae-43a1-98c7-4ff949ddcd8d" field="selections" type="equal to" value="1.0"/>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="2966d46f-6f13-4bb8-91ed-cb18755c3b92" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
</modifiers></entryGroup>
<entryGroup id="4f48fe29-500a-4a46-9df6-754bcc3be172" name="Armour" defaultEntryId="3fe42eaf-4eae-43a1-98c7-4ff949ddcd8d" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="eb7084ff-4df6-41de-a922-02ee8bbef6af" name="Terminator Armour" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3fe42eaf-4eae-43a1-98c7-4ff949ddcd8d" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2966d46f-6f13-4bb8-91ed-cb18755c3b92" name="Runic Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="c3e17142-1d35-4f60-b0ac-584c6bfe3ec0" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f272a468-d8e4-497e-888a-ddcafd10410b" name="Chainfist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b1ecb560-8bb0-4353-a33d-6ecaca16c5c6" name="Storm Shield" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c29cb340-c89a-4937-af6b-43792dab5bd4" name="Thunder Hammer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d8459f1-dda1-4605-aa12-66105601e0dd" name="Power Fist" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="17fc714c-4aa3-4d59-a4d0-025c32741ad1" name="Wolf Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ee8d2d10-c300-4c6d-8570-1a1a32c95b6e" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f27785c2-0c41-4332-bdfb-b0a545634ae5" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="eb7084ff-4df6-41de-a922-02ee8bbef6af" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="eb7084ff-4df6-41de-a922-02ee8bbef6af" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="8fc2948a-5986-4cda-8f9e-e5c1c1d8f262" name="Terminator Melee Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="78c7edb2-97b1-4c2f-ad96-5420cd3fb645" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ede95624-218a-4044-9a8f-91f861b8d2fb" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="85134180-4d5e-4484-860e-c29ca9c9f31f" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7eb09018-5314-4aea-bb1c-671073c8c3af" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="50a556da-b3bc-44c4-9d34-6c0b90775955" name="Wolf Claw" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="14f971c5-f501-42e2-b2a3-256d32b4b23f" name="Power Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b15c422a-beea-44bc-83be-9aa5dc314006" name="Frost Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="eb7084ff-4df6-41de-a922-02ee8bbef6af" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="359ba924-2536-4525-a2ec-b5a6e1e10d11" childId="eb7084ff-4df6-41de-a922-02ee8bbef6af" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="d77ac920-5265-46e9-b427-00a0d21e7282" name="Saga" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="886889c8-7ff7-49fb-bab2-70b93d489fc9" name="Saga of the Warrior Born" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d5d8f476-0e23-4083-aa6e-5d3808f39fa4" name="Saga of the Beastslayer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="621be4d8-feaf-45cd-a55a-d4aa7a676f36" name="Saga of the Wolfkin" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0e62419d-d076-441e-ab67-209b7d9d8f43" name="Saga of the Hunter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="b644a899-4226-4b28-a533-6a648bf93e46" name="Wolf Guard Pack" points="0.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="813da57e-1771-40e0-b6e0-ba2752e5d811" name="Wolf Guard" points="18.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6fec42f7-efa5-40a0-a7d2-c95386bc6f10" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ccd1b0f2-a4b8-460b-a83a-6807c47808e1" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b5c1e08d-be48-47d2-ae54-6a147abe802a" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="79cf5d87-852a-4d6d-8918-cb182941b202" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2a4e708f-5b28-41ec-b17d-bc7033f3ca42" name="Weapons" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ad57a143-5ab3-4917-934b-2f54e9240ed6" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6a4aae03-edac-4fbf-89eb-f1163aa63e05" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8eee41b0-5b54-4a82-89df-d4b942fdcb72" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cbd71c83-6aac-446b-919d-6227d07ce16a" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="87464b08-1ff5-46ca-a4d8-644a2567569a" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1c3e9dd0-5fc3-481b-9c7d-c6d35d70b254" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8113533d-e87a-4502-8bc1-794972521142" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="64330c0d-508c-4fd6-a327-09926120769a" name="Wolf Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="478ecbe7-d6b6-4f05-a703-b0a8c646fb5d" name="Power Fist" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6f493b74-9d00-4b8b-be18-b41a5c59f196" name="Frost Blade" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="93789f5a-5328-4866-99a2-8f093247960d" name="Thunder Hammer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ab45f2cb-6e3d-4652-8cba-a51a14ca48d8" name="Storm Shield" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="7c55b981-cf40-4a84-99eb-a0fde3940775" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="7c55b981-cf40-4a84-99eb-a0fde3940775" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="659e02e7-68b5-4f03-9c66-df5b613f94c3" name="Armour" defaultEntryId="f5723a2e-2fb1-422b-99bb-10c474842b6a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="72ca9cd5-b490-486b-a484-b3fd7d6d8095" name="Terminator Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7c55b981-cf40-4a84-99eb-a0fde3940775" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="accf5601-a431-4433-b3e8-6f96145a6910" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9e0591b3-f841-4e02-84f6-0c92e7687682" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5cf0d776-0403-4b9a-be26-2caa30de8ba2" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="320cd3cc-87e2-4f28-8cd6-fe1bcbe92758" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="11ccc00b-786b-46e3-8fe4-0c850c90ee99" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7ef80f30-fc99-4493-880c-5760aa4e2659" name="Wolf Claw" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1013147d-117d-42ef-9461-4d22eb2aada9" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9e7e45bd-4baf-46d0-a4a5-b3fbb2925503" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="and"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="babf032e-322a-4a5e-afbc-0d5871d1aeed" field="selections" type="equal to" value="0.0"/>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="72ca9cd5-b490-486b-a484-b3fd7d6d8095" field="selections" type="equal to" value="1.0"/>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="1292e3d0-8f06-482c-ba6e-96697daf6d47" field="selections" type="equal to" value="0.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="and"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="babf032e-322a-4a5e-afbc-0d5871d1aeed" field="selections" type="equal to" value="0.0"/>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="72ca9cd5-b490-486b-a484-b3fd7d6d8095" field="selections" type="equal to" value="1.0"/>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="1292e3d0-8f06-482c-ba6e-96697daf6d47" field="selections" type="equal to" value="0.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
</modifiers></entryGroup>
<entryGroup id="fbae1b67-f91a-451f-ac38-9eb1d51869a9" name="Terminator Melee Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="924f51c8-7f9f-4c98-aae6-77a78dc1e8b5" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8d697115-0370-4870-a745-fb11c5a9ed31" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4c9f89c7-82ff-4f0f-b3bc-50fa8f83ddd8" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c7b05fda-151d-484b-865f-49e2956be9fb" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="971f3f5f-1155-4b57-aeea-92ad98fdad5d" name="Wolf Claw" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="54c94e17-99b8-4088-addc-306b02bf97f9" name="Power Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9f3e7e70-2e99-49a3-a5c6-1dc710e37e39" name="Frost Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="72ca9cd5-b490-486b-a484-b3fd7d6d8095" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="72ca9cd5-b490-486b-a484-b3fd7d6d8095" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="038aca56-14dc-4613-a7dd-67a3f960fdbc" name="Terminator Heavy Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="babf032e-322a-4a5e-afbc-0d5871d1aeed" name="Assault Cannon" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ea324b84-2d42-4400-9ea0-7e21241b0b5b" name="Cyclone Missile Launcher" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1292e3d0-8f06-482c-ba6e-96697daf6d47" name="Heavy Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="813da57e-1771-40e0-b6e0-ba2752e5d811" childId="72ca9cd5-b490-486b-a484-b3fd7d6d8095" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="b5d6bf5f-ff09-4689-83d3-fe2524fdc13e" name="Arjac Rockfist" points="188.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="b644a899-4226-4b28-a533-6a648bf93e46" childId="813da57e-1771-40e0-b6e0-ba2752e5d811" field="selections" type="at most" value="9.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2bc3e389-b32e-4658-935c-4f66424b4798" name="Dedicated Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e11bddb9-0ae3-4d30-b36b-38a110b046fe" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="7cb1807e-2298-40b5-8f92-762846f3423b" name="Weapon" defaultEntryId="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="be5a9e07-3bfd-490b-90cf-e67811d7c2c8" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b081f2ce-0730-4476-ba83-680b0f8e4f97" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="c9d983a9-cad3-47ee-a2e8-c7a20eb54f4b" name="Rhino" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="623d0f8b-b097-4a93-8951-b9059d7a10c0" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="54508090-0214-44d3-9fe2-7c31aa82ea69" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8a27e0ca-da33-47a4-b081-dc8581ab8e90" name="Additional Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9ed394a0-5d59-4f88-b9e6-fee9cc36134a" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="92e6d0de-f64a-457d-87e7-1794f7a73707" name="Razorback" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="67c513d5-7ddd-470c-94ae-9e52db5d68c1" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="16a6e960-f2e8-4afe-bc5e-c2c8cff1d3e4" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="651c1393-470f-4052-9cce-af5ca220a3c9" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="44c7531d-b431-465a-8c5c-929a2eeff0d9" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="56b17b74-40ef-4f2c-b9ab-95e10439dc94" name="Weapon" defaultEntryId="cf28f051-5c63-468f-8d52-2debf4fde3ea" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2c58f5d6-b4dd-4b94-baae-ccb5240a371b" name="Twin-linked Heavy Flamer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="252eea26-8d12-4022-9d33-ef46e1b3fa8a" name="Twin-linked Assault Cannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0e5d94a8-9f37-41e5-aac8-fd0da14589d0" name="Twin-linked Lascannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f6b80350-f3c2-4050-875d-df488fe88a7f" name="Lascannon & Twin-linked Plasma Gun" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cf28f051-5c63-468f-8d52-2debf4fde3ea" name="Twin-linked Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="b419e2a6-7bbf-4d76-90e9-417f21f853af" name="Land Raider Crusader" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="ff8f185b-66c5-47c1-aac5-508ae05f265b" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6591a8f7-f524-4a15-b79c-c4613418b10a" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f64c6ccb-8f0c-455d-bfc8-4c7528181e1b" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="22eea5a6-ac6e-412b-8259-0eed1d2ff5b1" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d0ae2625-cab9-40a0-9ed9-c397cf3781a7" name="Land Raider Redeemer" points="240.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="28e402c0-68b5-4758-924e-16dc32c81409" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="10258e25-4b4f-4525-9e64-e1a98a977961" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="09fe8893-a580-4851-a0b4-c4c53e8895fa" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4f124aa1-f662-41b5-b07e-a72a5e2c232d" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f4527856-91e5-4188-91d8-e5649eaa0e7d" name="Land Raider" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="7eac57e9-29de-441c-be1a-233e0f5714ef" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2523e943-29a1-4e91-b778-277b3a7272fe" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="79127c65-e7c1-412f-a409-ddc97ce61797" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aa175cf7-b7a8-44ee-876b-c2d6f56404cf" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="roster" childId="474741ef-42e8-4d23-9e07-2410ffef57f3" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="e9f9e342-9b05-45eb-a11f-b6e2175810dd" name="Wolf Guard Pack (Troops)" points="0.0" category="Troops" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="96ae7921-053a-41af-b3fb-38074afbb840" name="Wolf Guard" points="18.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e3af02f8-bf4e-4fba-8853-5d875e92c49f" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cac1df82-bf30-4804-a81f-9c6c4ac7ece6" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1228542b-785a-4312-866a-66e84c090fa5" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d4dd63df-3c8a-44e9-a341-884d7e67ea38" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="f423197f-da4d-49b8-b16d-70fc8857d98e" name="Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2c0f284c-5c20-43ba-8789-3a33a047d08b" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7af436ed-02d2-4470-a8be-bbe7981f3928" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8a0e0560-c854-4061-bbb7-b9a7809b3190" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5cfa1371-dd0b-4417-9593-77ceba9feb54" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0fc2119b-0389-49c2-9e0e-efb60e1f399c" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a5df423b-8b00-4c91-875a-7b5bfd1bc945" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7536afce-7e54-4081-b6da-3d999d22481f" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5fe395bd-aa1e-4e6a-a647-1e3106f68aa3" name="Wolf Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ccc780b3-7e4e-43ac-9010-185ef16666dc" name="Power Fist" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8c2cc475-35ef-4665-8e02-60412bf2a256" name="Frost Blade" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f74fd05c-e8fe-44b8-8f3b-34d24584857e" name="Thunder Hammer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ae2c22e4-eeec-4fb6-bd8d-8b2c62060893" name="Storm Shield" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="63a9de9d-c0d5-4bac-a3b0-796594ff2981" name="Armour" defaultEntryId="f5723a2e-2fb1-422b-99bb-10c474842b6a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1ba5971a-0bc3-4180-b2e0-b68e7ac761c6" name="Terminator Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="588a8fe9-3421-4d60-bdc8-6d9a345c9363" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="b0784a7e-ab0e-49d4-af4f-c939e02b76ac" name="Terminator Ranged Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ae1ccde5-ea6a-4c0e-864e-83bdf1c53fe5" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="862cdf80-62ad-48de-88b1-ce007c487a81" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b9278cf2-8a4b-4a81-a9a1-1c5d18e841df" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7bbd592d-fc0a-4f72-9237-1c1546d92a99" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bbc48575-c175-4221-bb8c-7379c6a9c178" name="Wolf Claw" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e9fe14de-0a8e-40b2-8ffc-baac4ea626d5" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e9d68f60-dba0-4a6f-9553-0618f09c3a70" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="1b576b87-e040-4561-be74-21846829dafe" name="Terminator Melee Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dbc68d67-49fd-43c7-837a-cd3a47f197f8" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="db909bad-d45d-49b0-b072-a3cbf5d1468c" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d14f4d64-74c7-4d77-bc26-11f51bdda5a7" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9d33dbbd-fa80-4917-b570-e91a7ee22652" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e9f02d5e-b891-4f09-88d4-da1c34d59811" name="Wolf Claw" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="132bc37a-9a22-4783-8d2e-085a22cad8cf" name="Power Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b496f9a3-b589-4571-84b3-31b1bad799b7" name="Frost Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="7a7cdfcf-aa18-4e08-b1d8-36ce530866ce" name="Terminator Heavy Weapon" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="97f7a671-f1de-445c-aa47-31edd722f293" name="Assault Cannon" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5c0da883-e26a-465a-8117-5e713c05404f" name="Cyclone Missile Launcher" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bcaf7c38-4852-4a4f-8868-67674912ba5b" name="Heavy Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="3130e52e-0124-44f2-bb83-d25de07acf1b" name="Arjac Rockfist" points="188.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="e9f9e342-9b05-45eb-a11f-b6e2175810dd" childId="96ae7921-053a-41af-b3fb-38074afbb840" field="selections" type="at most" value="9.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="01afc4a6-c78a-4edf-a9bc-0bdb5fd52ef5" name="Dedicated Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a29190c8-741a-4c8b-8c16-a05ecde5072b" name="Drop Pod" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="93db05cf-9f9f-4192-a02b-db5a048c511d" name="Weapon" defaultEntryId="2fa07039-58e1-41df-9c98-c6a6cfb8b9f0" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="30e4c520-c42c-48ef-908e-b7e7c52c015d" name="Deathwind Missile Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="41956266-acc9-4ca8-9c9c-8981bb5dd066" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="de97ac48-ae79-4da2-9e3d-f51c514723c0" name="Rhino" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="270cbc87-cb1a-41fb-9056-29f4f6393d00" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9489b773-ace4-4a5b-aa28-fca87640e24c" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e1719748-1e15-4ad5-967c-14c8f90e2532" name="Additional Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d82abe92-8e5e-4d6b-97a6-82eb07bc48ff" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4da7f1d0-84dd-4736-b7ae-f09d427d25d5" name="Razorback" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c2ed5d90-739b-45ef-b77a-3fcb53d10b91" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c1419b9f-4ca9-4a9e-a61b-e4ccc7e57b65" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cee5e206-cee4-4e1b-b7fc-6a494948c763" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a0118682-80e3-404d-a2ff-65ddf3e05e55" name="Dozer Blade" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="b348df7b-f49d-4a63-98fb-9ab18d20ee95" name="Weapon" defaultEntryId="cf28f051-5c63-468f-8d52-2debf4fde3ea" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2706f54b-b371-443d-8804-d266b89b83d9" name="Twin-linked Heavy Flamer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="05a9659e-95b9-44dc-bd9c-523d5b754859" name="Twin-linked Assault Cannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d86e649-aa8f-4a6b-bb36-136900f0057e" name="Twin-linked Lascannon" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ec07a718-38e9-4f86-8450-db0d56052af8" name="Lascannon & Twin-linked Plasma Gun" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="281c96b6-f1d3-4405-9032-b7fb0b29ad78" name="Twin-linked Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="7d826921-cccf-48ef-b481-253cc8e42b92" name="Land Raider" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="57b941a2-4b0c-4fc7-b815-9b1980aeb2ee" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9df55a3b-51d5-4728-982d-d1e72dcf7d7b" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="33bd86a4-78db-4805-8d35-c0015de6a035" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a5264d55-1457-4898-a808-264af43894b6" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9e9aaac3-571d-493c-98ad-cc079545bb63" name="Land Raider Crusader" points="250.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="8cf6a775-d7d1-4555-a6b4-bdd74b612168" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f225b568-baa5-4ad0-86ba-5a329403038a" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4710f788-e9e4-4b59-ae0a-f0c04d1cf75e" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b9822700-c55f-4a94-aa15-6320251e3f0f" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="420d973e-9f28-4ca9-af2c-07526cacdce5" name="Land Raider Redeemer" points="240.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="76333847-5aea-4005-a1cb-f88bbd595ed8" name="Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="746a5896-7954-4ff5-986f-d3c62eca6dd4" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e0141478-b710-4976-9476-6bf846ef7787" name="Multi-melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="74d23987-8bd0-4d95-b0a2-f2c71637c90b" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="roster" childId="474741ef-42e8-4d23-9e07-2410ffef57f3" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="ddd3e801-74fc-468d-8164-188b98960cb0" name="Wolf Lord" points="100.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="08be5722-7551-490e-8f9c-09d5bfd94103" name="Belt of Russ" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4526a52a-9995-4ef4-8039-04aaee3dbda8" name="Mark of the Wulfen" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6ee71861-b66a-4981-b81d-df1cc2d5771f" name="Fenrisian Wolf" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="86da5a39-bc53-41b4-8ee2-44f6405a8d92" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="abbf9873-a5e0-4da9-8600-b84eb3d72cfc" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f5cdccdb-8482-44c2-b873-845a50033b78" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="562c08bd-c57f-4293-b11c-e5b3286c6bc1" name="Thunderwolf Mount" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="at least" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="b416f3cb-93c7-4cf0-bba5-8b1e93b9a121" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f456d773-26f2-414e-8607-598feb966376" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="9841b470-4856-4938-8faa-205ed938bdb0" name="Weapons" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3c97b310-2b19-4404-861c-4eee5ffd149d" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b86d88fd-cb49-4333-b32b-1f151b7f03ee" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a5cf35a3-c9cc-4737-a861-ce075053a340" name="Combi Flamer/Melta/Plasma" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4d4fc042-69b3-4735-9311-5e49d65b94da" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e75dea11-20dd-4b6b-9a76-4d302c7c0bf6" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="404721c8-bc44-4273-8e8c-d20d9de2f3e3" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bc4125dd-5361-47fc-b4a5-cac4017c7185" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="77407de5-0ffe-435c-84d7-26f5434e86d9" name="Wolf Claw" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="009c4b76-ca0d-4b9a-a6de-7c7c8cfca618" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a29bf4d1-dccc-4319-87d7-6e5a47ab5c33" name="Frost Blade" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0f6c1ae8-3137-4472-872d-b5c4373dca54" name="Thunder Hammer" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a3466e5d-b405-4734-a8e1-2308d6c67b4a" name="Storm Shield" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="f5723a2e-2fb1-422b-99bb-10c474842b6a" field="selections" type="equal to" value="1.0"/>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="cae08508-bd22-423e-8b97-d297f8436e28" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="f5723a2e-2fb1-422b-99bb-10c474842b6a" field="selections" type="equal to" value="1.0"/>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="cae08508-bd22-423e-8b97-d297f8436e28" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
</modifiers></entryGroup>
<entryGroup id="8c166ab1-cee4-4b67-ba92-4c0f802b40b4" name="Armour" defaultEntryId="f5723a2e-2fb1-422b-99bb-10c474842b6a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" name="Terminator Armour" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f5723a2e-2fb1-422b-99bb-10c474842b6a" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cae08508-bd22-423e-8b97-d297f8436e28" name="Runic Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="7ef7bc30-f7a7-4774-9142-e39567607fa7" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d04354de-ce8c-40b4-b3f2-ac919c67d4c3" name="Chainfist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bdad5b44-72eb-414b-a9ff-07fc190ccc06" name="Storm Shield" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a841b0e0-004f-4696-837f-cabfc714095c" name="Thunder Hammer" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a5b60db3-479e-4e76-8259-25a6776ad151" name="Power Fist" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="95d1dc25-13b8-44ed-a646-cba4f0909f5c" name="Wolf Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="986f3b65-68f7-46e8-8fb8-6c1963168f88" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cc994764-fcec-4a7a-9527-b31076f06e05" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="309e66fb-1f5b-4d35-8a74-0d4ecd0a19b6" name="Terminator Melee Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="86564a01-d4f8-49da-bc32-b5cce14c009d" name="Chainfist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="624e6056-8975-42df-bace-e745badb2ae7" name="Storm Shield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="53c0c0aa-853e-4154-b397-dab040b9ff0e" name="Thunder Hammer" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0ac2dfe9-84cd-46ce-bd5f-c7c85884a134" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="43f04d40-ae7c-43cd-8d14-4155d738612c" name="Wolf Claw" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="879e5f5f-6bb2-42dd-8730-65b86558a0db" name="Power Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d7f3828-870b-4a19-a90b-249931396c2a" name="Frost Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="ddd3e801-74fc-468d-8164-188b98960cb0" childId="a79e53ff-4ffc-4fc4-92d0-d3a0d314149a" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="ae835989-c337-444d-aef1-ccf73f584d8d" name="Saga" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9b69def8-6015-412a-bb6a-05923ae7f4fa" name="Saga of the Bear" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1ca2106b-9fa9-4bea-9237-43b33d026781" name="Saga of the Warrior Born" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f7d979d6-8475-4756-9020-bff55c193da6" name="Saga of the Wolfkin" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b5942706-3411-4aa1-adfe-4af9b05d2ebe" name="Saga of Majesty" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a8298a34-5ac5-4272-a940-b13e7d646364" name="Saga of the Beastslayer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="27e8fb45-f8e1-4455-8739-7a8f84debfdb" name="Wolf Priest" points="100.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fe3c9710-b1fc-4914-8c09-c11878c63dec" name="Jump Pack" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6352520c-d4b7-408d-bbaf-0d4a77236845" name="Space Marine Bike" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d95d70ca-738f-4e02-860b-6492a3c0f815" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="15ecde01-3932-4101-b136-96274e6daddd" name="Wolftooth Necklace" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="21e96616-e4b8-4f2c-b66c-8ae70e31c3b4" name="Wolf Tail Talisman" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dec92d9a-650c-4dd6-b886-3b883a15fc07" name="Crozius Arcanum" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f5926e85-598a-4979-845c-f93b154d749c" name="Fang of Morkai" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a4b1b5ef-0a11-4d4a-b247-a10e7abc65a0" name="Wolf Amulet" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="f02d764c-08a7-4015-b00b-ed27edd67a9c" name="Ranged Weapon" defaultEntryId="945d4f9c-a016-4849-ba5e-cc0a292ecfdf" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c5658e18-4e16-43c3-a952-ab15695f054f" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="595b9a9a-8a1e-462c-ba79-2a894f421355" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a98cc786-d8b2-498f-b248-125b20610c30" name="Bolt Gun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="945d4f9c-a016-4849-ba5e-cc0a292ecfdf" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="423346f2-9c26-4169-b39e-6e1aa3a93ed7" name="Combi Flamer/Plasma/Melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="50241f9c-50b5-4ae4-a4e3-87ed5eabf073" field="selections" type="equal to" value="1.0"/>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="cc844007-cc27-4be0-8d7a-f3ef7f4bd2d5" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups>
<conditionGroup type="or"><conditions>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="50241f9c-50b5-4ae4-a4e3-87ed5eabf073" field="selections" type="equal to" value="1.0"/>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="cc844007-cc27-4be0-8d7a-f3ef7f4bd2d5" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></conditionGroup>
</conditionGroups></modifier>
</modifiers></entryGroup>
<entryGroup id="9755aa2e-2f3d-49d8-a774-aa6092fd0cdf" name="Armour" defaultEntryId="50241f9c-50b5-4ae4-a4e3-87ed5eabf073" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="afb45043-f018-4094-8796-e1d4c85c3ed7" name="Terminator Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="50241f9c-50b5-4ae4-a4e3-87ed5eabf073" name="Power Armour" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cc844007-cc27-4be0-8d7a-f3ef7f4bd2d5" name="Runic Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="f8829c37-9bbc-4fb4-9471-e52d7a6df676" name="Terminator Ranged Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ee94d6a5-0ad5-4601-90e1-07de12143e7c" name="Combi Flamer/Melta/Plasma" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="db92c726-df01-4d4c-9d66-101c4625939c" name="Storm Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="afb45043-f018-4094-8796-e1d4c85c3ed7" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="27e8fb45-f8e1-4455-8739-7a8f84debfdb" childId="afb45043-f018-4094-8796-e1d4c85c3ed7" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="2cc904e9-dd8a-4513-9edb-7939f80a1857" name="Saga" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="710215e5-f3bc-4995-8056-dc54fa54058f" name="Saga of the Warrior Born" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2dca6ed2-1d0d-4bae-85a5-cfcf21cda63f" name="Saga of the Beastslayer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fa3df073-9b5f-4e62-9be0-fd49f468d30f" name="Saga of the Wolfkin" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="07adc529-0848-4498-b25f-08fc83e9bf93" name="Saga of the Hunter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>