forked from Geemoney24/BattleScribeData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDark_Angels_4th_Ed.cat
1248 lines (1248 loc) · 281 KB
/
Dark_Angels_4th_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="95cdfab5-d0e6-47cb-acf2-992639675a99" revision="1" gameSystemId="3d1a4963-0629-4025-a90b-76ab3d63c5c5" gameSystemRevision="1" battleScribeVersion="1.11b" name="Dark Angels 4th Edition (2007)"><entries>
<entry id="729e9069-740f-4c24-8866-6c46df83d5ab" name="Assault Squad" points="0.0" category="Fast Attack" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a8131f9a-956e-42c2-a33a-a0894a2c1412" name="Veteran Sergeant" 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>
<entry id="54050019-5ebe-4381-bb6f-d1ed0254997f" name="Combat 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>
<entry id="8b05e1d9-3e3e-47ba-a5b2-0b757361e340" 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="28c315e2-aa27-4394-8763-56a07cbad192" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b4327018-74cb-4820-b794-ac424c80efd6" 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="cd738828-3590-4307-845a-f1f7f0e2d136" 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="817dc6ff-5409-4c53-a720-777cc20ad2aa" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="720818f9-b7da-46c0-add1-f79f989462b8" name="Chainsword" 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="db1a8935-aa8f-4482-aba0-0eb59102ff0c" 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="2280d6e3-1199-4630-8421-7302a412ecda" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="247e7158-02e6-4d22-aefb-7363c092fdd2" 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>
</entries><entryGroups>
<entryGroup id="309e5335-ebef-4c1f-8a6e-0e82d0ccb08c" name="Transport Option" defaultEntryId="68b15380-d901-4321-afe0-2fc11d749335" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f302f459-5c3d-49cf-8c5e-5c75866daee7" name="Rhino" 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>
<entry id="42a1b499-49ec-44d3-8338-736982a4729e" 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="fb0e3426-9634-4e4c-8fe2-9b159516427a" 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="5dd4c00b-1791-4438-9036-5e6f4685fcb7" name="Hunter Killer Missile" 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="cf0cb466-3818-47d5-bec9-b90540c7863b" name="Pintle Storm 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/><rules/><profiles/></entry>
<entry id="68b15380-d901-4321-afe0-2fc11d749335" name="Retain Jump Packs" 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="f838469b-b2bf-460c-ad65-6865f8ae9a1a" name="Drop Pod" 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="af793dc1-4e29-4c85-adec-6c85a2ac568f" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="742dc0cc-e4d4-4b15-b7fb-eef88710bf8e" name="4 Assault Marines" points="125.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7022ddc4-ca3f-4661-a123-51bbb9a7fb3d" name="9 Assault Marines" points="235.0" category="(No Category)" 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="3014fc3b-2d4f-4102-bdcc-a0afbd20e35f" name="Azrael - Supreme Grand Master" points="225.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="b27322f1-c9ca-4a98-82cb-663a91f2240d" name="Command Squad" points="105.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="eff63f23-2a16-45f9-98a3-e74d9439e37f" name="Apothecary" 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="26a9378a-1392-440d-a834-8b12ba4a2728" name="Company 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>
<entry id="e59cc77e-ea18-4cbf-9ee1-c9cf35e664ab" name="Chapter Banner" 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="9fff7bc7-b63e-450f-9b08-3989c522d962" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="80d285d6-cbaa-4c7f-b10b-54c75ff843fd" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4f5c4a17-0c89-41be-98d3-78ce72b7d3fa" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="3f790a6d-ff8b-4bcb-8abf-1e23adb50981" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="842cea8b-0b9c-4398-8d9f-d33ffab43b1f" name="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>
<entry id="560d8f79-be75-4767-a9d6-089bbd6cea9f" name="Meltagun" 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="12a8948e-8466-495e-a60f-3fb2c7a91ef5" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="f56912d9-1ee5-40fd-bb88-3a5fa180554f" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="326d98d8-b2be-499c-bedb-a28f1e2aab5c" 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="6c50007a-7d03-4f6d-b73d-a1bc5a8b960e" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="70e6b5b2-bccf-433c-8dd2-c21694d34d5c" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9fec05f8-6240-4d26-a7eb-dbc17df129fb" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="efd7dc87-ea5f-4201-a396-75b3a395694e" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8fc62f32-31e8-422e-85ec-8da15ca12654" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="0333fdaf-536d-4ac3-b395-ff3a04755982" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="52093cb6-cee9-47c7-86e8-84aba7b998da" name="Drop Pod" 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="b14d7e03-a3f2-4ee6-b1c6-32cf4003e51e" name="Razorback" 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>
<entry id="062083a6-76e7-4c51-b18d-d31412b3e187" 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="d5d5bfeb-d557-4813-ac8a-6c8f1cb032c1" 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="2ebd26f7-32e1-4564-8251-9d9dfbe3fad3" name="Hunter Killer Missile" 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="7fbb81da-0117-4dcf-b1f3-53a5b1f32ba0" name="Pintle Storm 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>
<entryGroup id="506f723e-c65e-41f5-a088-39afd019f88e" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e9fb0515-09a5-4b44-b12d-abe4fd6e6657" name="Twin Heavy Bolters" 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="6d03601d-1187-4d94-9699-79935af10551" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="0e572c51-80e6-4c6a-a175-b4f708542868" 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="a40ee290-b86a-4e3a-abec-1865b5e018f3" 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="40ef2591-86d9-4fb3-8e59-49ade1450ecf" 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="5712eede-627d-4e27-9e0a-9740dc8167c4" name="Hunter Killer Missile" 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="4adddf74-3e49-4b82-b9b5-e5a57a6e0739" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f9ba4d50-ef8c-4a5d-8b0b-ab43e41a6789" name="Belial - Master of The Deathwing" points="130.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups>
<entryGroup id="cb6921d9-8d3b-4e4d-b75c-0e0699cd2bc2" name="Weapon Option" defaultEntryId="7022cabc-ac9c-4c5e-a82d-5a45ea531941" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7022cabc-ac9c-4c5e-a82d-5a45ea531941" name="Storm Bolter and Sword of Silence" 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="44043c5b-55eb-4037-9457-617872395200" name="Twin Lightning Claws" 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="f4a94da9-2e94-42d7-aa72-fad1b6fb2659" name="Thunder Hammer and Storm Shield" 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="aa59fa28-d526-4239-b482-2fdad491c74a" name="Chaplain" points="100.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4e17f095-513e-40a5-b326-ce7f9aa00758" name="Jump Pack" points="20.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="aa59fa28-d526-4239-b482-2fdad491c74a" childId="dfc4fed6-0be0-4a1d-aa9c-b49d6de9eb3a" field="selections" type="equal to" value="0.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="dfc4fed6-0be0-4a1d-aa9c-b49d6de9eb3a" name="Space Marine Bike" points="30.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="aa59fa28-d526-4239-b482-2fdad491c74a" childId="4e17f095-513e-40a5-b326-ce7f9aa00758" field="selections" type="equal to" value="0.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="add7a130-e1bf-4987-9b7a-0fe1b0ed1174" 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="b275f564-d9cd-4b3e-ab05-8d70e0041ae5" name="Command Squad" points="105.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="588f253c-67c4-4f1a-b3e5-68b287ba7616" name="Apothecary" 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="2d064a8c-c26b-4dd9-ac87-6a5128e516d3" name="Company 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="2175f02a-8bbf-4e2d-8aca-2cff531281c6" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="4f23d8eb-9c40-4dbb-9df8-a9d5d2043e5d" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="766395ab-daf8-4576-8cbf-fd912b4448ab" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="430f8836-42eb-46eb-97a0-7bd9530facd9" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="50e8f6df-cf73-4561-a8ea-735eabdb9ba3" name="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>
<entry id="7bad85a1-f7b9-4f2a-8595-1f5236039580" name="Meltagun" 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="ec7a8b39-3731-40f8-9a9b-f9d2113877c8" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="478bb98e-9cc2-491a-bb7f-da1f06822ea4" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b0bc0cab-9b04-4d98-8cd1-6f647a0d8f66" 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="d5008a29-e33d-45ff-9c57-174a19e752bd" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="70e342c4-217f-420f-80aa-4a127ac64bb0" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5122c374-6894-4c32-a3de-11d2877702f7" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8d9fce9d-ac7d-4e9f-b670-7975ba989775" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c20f3bd6-a95f-47eb-a86c-a134051dd1f3" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="e4923251-3a78-4945-a6a4-cc66c0f92a7d" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9c35c319-4ce2-440c-b0eb-a3f339d89556" name="Drop Pod" 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="706a7444-c60f-4624-9e37-50a37c7521ce" name="Razorback" 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>
<entry id="f97e0942-057f-4650-b3f8-786f4f30a24b" 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="c0ed7e74-4612-4d31-aa77-61029d904f25" 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="ce31fc60-15d5-4076-a0c6-f42d605344c3" name="Hunter Killer Missile" 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="10c6a475-5291-4764-9b26-93bfc740db68" name="Pintle Storm 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>
<entryGroup id="525930da-0310-490d-9612-5e8db09e9f51" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="836309de-01cf-455c-a390-e122079dece3" name="Twin Heavy Bolters" 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="63c93c68-3ac2-4347-a4a4-70e8ccaa79a9" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="e5bb57a7-283e-4fbc-9d4e-b3148141ae9d" 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="5016daea-816e-4d4d-8d88-1b5147ce1cc7" 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="d2897a9c-eada-42eb-8268-c1a4ee37fbe9" 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="d2e31d1c-16d4-4bb6-8e21-67c865a9ef93" name="Hunter Killer Missile" 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="3c723955-9133-431d-9932-877d2a9e59ae" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="cf356811-3264-449f-aa91-0770d01b1b57" name="Weapon Option" defaultEntryId="172e3497-1060-4e24-ae4d-5e768eb9899a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ff89b906-518b-473f-919a-b311ce678a98" 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="118c2d9f-7525-42a1-994f-4fd7b70d80a3" 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="01f2286f-eb45-46e1-a3a4-35dcd780779b" 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="8817c121-aba7-459b-91f5-976a0e7c8acd" name="Additional Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f01bb53d-d08c-45ae-9af2-0f80944b5f5a" name="Combi-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="82cfd13d-1ce9-471a-90a2-7a191e266ef5" name="Combi-Plasma" 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="adc76741-962f-45b4-bda8-74ccdfb9c448" name="Combi-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="c3522913-909c-42de-9112-132dc4c54c33" name="Storm 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="715f365d-408e-48b5-93a7-a7aa75d4c75d" name="Company Master" points="100.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b81343ad-5dea-4a11-83ec-1c897f5b583d" name="Jump Pack" 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="2b2f4071-292b-48a0-9329-c87786d923a3" 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="cafd9e04-697e-4038-bbbe-fb95bc92bb35" name="Command Squad" points="105.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="0bfa739e-6ed5-4ea9-918d-e1cef1e091e6" name="Apothecary" 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="a5874932-4375-48c4-97e6-83364b03a7c6" name="Company Champion" 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="c82cadf3-f300-44f2-99f3-7630b69d15c0" name="Company 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="cea82dec-15fa-44b4-b063-8983923b9ac9" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="137047d0-e21b-454a-b71e-e5f259a54b94" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="76762dce-1afe-474d-8248-5fe477dc27e5" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2d32ac54-900f-4656-8280-1e6eb595b011" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e1fece15-6e6a-4ea5-8a01-48f33a60dc7b" name="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>
<entry id="e39b2174-8210-420d-ac35-5319b9131075" name="Meltagun" 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="12ed7040-414a-45a1-af48-b6c715b2bed5" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="ed28f530-5f78-4ab0-903e-a84e5a21b710" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d5760b44-7743-48a4-908c-a48c073d18c1" 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="5532e28c-f942-4fed-a481-2aa6dc977b69" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="454fa3e3-3887-400b-bf8f-72eb8c4842a4" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="857263bc-54ae-4e8a-9db6-4bcec3e0ba62" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ca792f1b-b38c-43e5-85eb-5de498dbe061" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e47e443f-8290-4cf2-8520-0c574f944741" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a60adc64-e15a-4451-92d5-87a82b8de2d9" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d2b9dba7-fa87-4346-b9c6-0178c09c0e6a" name="Drop Pod" 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="4d63d66c-9452-4ec8-a3ea-72a2960ec22c" name="Razorback" 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>
<entry id="e7cf2e83-4e8f-44e6-ba8c-d848601d44e7" 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="4a019849-2564-4f36-8ace-2a9c2e2b0d63" 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="78bd9625-afd4-4167-9317-76d83537beae" name="Hunter Killer Missile" 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="3159d06f-e7de-4a46-9b3d-2a874a5bb924" name="Pintle Storm 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>
<entryGroup id="6c229504-dcad-4e07-a7e1-3fe36edab2d2" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="08683d21-423e-40f0-b92a-7373c70570c5" name="Twin Heavy Bolters" 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="29bbd550-6fe3-44a6-b674-fd48aa4040cb" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="a2088721-bbe8-4ea1-bbca-f9bae05f083a" 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="09545ef7-597d-4298-a2e6-5f50322d7bc9" 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="429d0e3c-573c-4e5d-a483-2c093c758658" 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="735add85-5366-4411-bc29-f433a9205d85" name="Hunter Killer Missile" 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="fa8b1ade-c3a9-4ba7-b657-3099c9b16ccd" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="37752bfa-25a1-45c2-8b76-feaa9cba94be" name="Pistol" defaultEntryId="172e3497-1060-4e24-ae4d-5e768eb9899a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="172e3497-1060-4e24-ae4d-5e768eb9899a" 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="d5e50e99-0c71-41e3-a832-f53bfcae7408" 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="b80f0437-48d7-41d1-8e51-50d7244f37a4" name="Additional Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e198e299-fe5c-4a46-a990-3ead1198bbaa" name="Combi-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="66aad594-ebad-4285-bfd9-09e827986995" name="Combi-Plasma" 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="f83b951c-6c73-4180-989a-8c01da16751d" name="Combi-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="7060542e-0644-4381-ac50-c4b7532eee9d" name="Storm 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>
<entryGroup id="c2272f71-0332-4708-b7d8-8ea4ee80bed9" name="Melee Weapon" defaultEntryId="53c822f9-ad3f-4ef8-912e-21c3502d2e05" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="53c822f9-ad3f-4ef8-912e-21c3502d2e05" name="Chainsword" 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="0b4467e2-1a86-4627-9777-7728dc0130aa" 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="eb635827-c9c9-43fb-b38d-9cea54534496" 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="e85ab7db-4545-4c4e-a118-b8a677d371bb" name="Thunder Hammer" 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="711423d4-973a-4ab6-ac31-02047fbc1d86" name="Lightning Claw" 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="5de5ab27-13bb-4ad6-a8c3-e8b5df60198a" name="Pair of Lightning Claws" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="8e0eb9cf-e4e2-42f2-ac06-07bcfe77c421" name="Company Veterans Squad" points="0.0" category="Elites" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6ed53f92-4676-4c86-a370-a75746b7c3ed" name="Company Veteran" points="20.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="27b3065e-ed65-4d27-be33-d0bdd3f52446" name="Melta Bomb" 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="f6dda37a-9349-48a0-b161-dafe6ea26503" name="Weapon Option" defaultEntryId="96125524-1b61-432e-a1cf-98830f76230a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="62344ba8-40bd-4129-acc1-e37cb24e8ee2" 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="2a6e46ba-5235-4100-aed7-e79a53ae6dfe" 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="b4825898-0e5a-4571-ba43-22af22cd9739" name="Thunder Hammer" 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="f5030d5b-04f8-4f7a-a725-638732edbff8" name="Lightning Claw" 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="3892baf0-e079-45dd-a34d-5f56b8fd9f90" name="Pair of Lightning Claws" 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="97d01c5e-a094-4f2f-a0fb-dd5713162176" name="Combi-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="3855574c-06ef-4d8c-9358-f05035abe604" name="Combi-Plasma" 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="e9506444-3a1c-4990-9601-7d277e0860c9" name="Combi-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="d2a673ab-27a8-4411-9aa2-7bc87704d1eb" 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="d62bb68f-74df-4e87-8e58-decf4b0caba3" name="Storm 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="96125524-1b61-432e-a1cf-98830f76230a" name="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>
<entry id="f450ba2f-c22e-4d88-9930-949ca5d1b608" name="Chainsword" 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="9657aeed-75ca-4505-b3f4-ff0522a69edc" name="Shield" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2ab313f8-740c-42dd-9dfe-37206860d1ae" name="Combat Shield" 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="90c63871-4963-459f-9ece-fa197c9126aa" name="Storm 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/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="a88e7ec2-b26e-408c-8528-bbcccb28767a" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="88187585-09a2-469a-abad-5790b154e41b" 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>
<entry id="223e8e57-3a32-4001-aa04-20aa8a34b574" 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="cb0db65a-b2c4-447f-9942-3d4b440a6037" 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="52ebbfd4-c3a0-4df9-844e-b2eca38010c6" name="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>
<entry id="f5a79081-dd0d-49de-8940-77ac7e4f81ea" name="Plasma Cannon" 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="23ddcee5-7b60-4ab4-a9e0-09c5d317c150" name="Special Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="38ef2245-8fbd-4332-8357-78f16c4c23c2" 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="01fc7f31-08b9-4fe9-840e-21e6911cb821" 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="5e5329f3-0598-4892-b3e7-6c3f86978097" name="Plasmagun" 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="d9fc7206-ca27-4c1e-8e4a-8fa5ee18cba2" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4740ee72-575b-4e14-b011-6e059e78f0cc" name="Drop Pod" 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="39df5a53-cc5b-4fd0-aec9-302ef725ae0b" name="Razorback" 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>
<entry id="9c7d4304-6a9e-49a0-b303-93585c67567e" 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="62effa57-d639-4e56-8214-80567649335b" 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="a17e813d-0765-400d-8107-f099c9e9bd5f" name="Hunter Killer Missile" 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="94949c1e-e982-47db-86a3-e98ab7e9264e" name="Pintle Storm 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>
<entryGroup id="8ab96ed4-ccdb-4928-a88a-ce28bf8ac3c0" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f6bcf458-b43b-4a56-a7f6-f6df3d759038" name="Twin Heavy Bolters" 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="a7f5df9c-b6c9-4e0a-81a7-54ce552cb514" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="ca603c48-a2c7-4ebb-ab80-8f385e4159db" 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="e39af381-13f4-4501-8cc4-db2e050764f2" 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="42176849-2a43-4c63-9b83-5361129e57d1" 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="00ca4b53-5957-491b-a104-fc58b747df09" name="Hunter Killer Missile" 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="beaf1c66-fe67-44dd-aa36-4c501f25a770" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="91806a94-8323-42fe-a055-5bcc8d25308d" name="Deathwing Command Squad (Elites)" points="172.0" category="Elites" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="bf273839-2dd1-4cd0-a13f-e82283b4d27d" name="Sergeant" points="43.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="c787ada5-e379-4878-8495-04aaa878576b" name="Weapon Option" defaultEntryId="3fc4571b-f47e-4739-bf3e-cc7427bbb850" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4b106e9a-fb49-4ada-aba5-42cf17914c8f" name="Storm Bolter and Power Sword" 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="39e58a2a-7425-4f47-a830-d0e3fff7cfae" name="Storm Bolter and Chainfist" 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="28ad7b32-d6f0-40ba-bee4-c6c86cc509db" name="Pair of Lightning Claws" 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="db63f5be-3cac-4307-aba8-7f8f2b229627" name="Thunder Hammer and Storm Shield" 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="4c1be0f0-b9cd-42d0-ab58-f4aebca54a09" name="Deathwing Apothecary" 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="56cc0c8b-61c7-4c41-b4bd-9a63edb9ab12" name="Deathwing Company Standard Bearer" 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>
<entryGroup id="9260da2d-5165-43f1-b5cf-2cdfb31b2914" name="Weapon Options" defaultEntryId="0a30179b-4f61-49cf-b847-e3717aaf2c2f" minSelections="4" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="70f73967-d58d-4cfd-9cec-752590c6ecda" name="Storm Bolter and Power Fist" points="0.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>
<entry id="77a5427a-8e9f-4409-a58c-a244504d3f0e" name="Storm Bolter and Chainfist" points="5.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>
<entry id="592f4bc5-b573-4048-996f-fb72b2c1a6e9" name="Twin Lightning Claws" points="0.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>
<entry id="0c14ee34-c457-4d4b-b558-cfc2390d05f0" name="Thunder Hammer and Storm Shield" points="0.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/><modifiers/></entryGroup>
<entryGroup id="b7b6d7fd-5179-4b35-bdf5-10633baf422f" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="811f77e3-f601-4361-ab65-5ba2c45296fa" name="Assault Cannon" 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="2dc3a657-f4f3-48d0-a208-5a8dd3dfa02d" name="Cyclone 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="1660e280-c245-4f4f-9a70-c1e9cc8ace99" name="Heavy 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>
</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="f9ba4d50-ef8c-4a5d-8b0b-ab43e41a6789" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<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="346bf9c0-8978-440d-84f2-58f163213a85" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="346bf9c0-8978-440d-84f2-58f163213a85" name="Deathwing Command Squad (Troops)" points="172.0" category="Troops" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="c8c43a8f-c71e-4512-8c35-ae29868e4aa7" name="Sergeant" points="43.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="77b5db6e-a2ee-4eff-9ed2-30eb0538abb7" name="Weapon Option" defaultEntryId="3fc4571b-f47e-4739-bf3e-cc7427bbb850" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9b7bbf0f-f731-4412-b64b-a2361809e424" name="Storm Bolter and Power Sword" 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="56e8de55-c06e-4950-aa50-6e6bc0eb474e" name="Storm Bolter and Chainfist" 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="d9e8d4e3-3e8b-494a-867c-bdd9aeec3228" name="Pair of Lightning Claws" 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="b1fac2cd-5690-4adb-ba1b-18412d0d521d" name="Thunder Hammer and Storm Shield" 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="f8d82370-b09f-424b-a8dd-996b330d25d9" name="Deathwing Apothecary" 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="cb1d3cd6-54b4-4722-84bf-8e829baaa519" name="Deathwing Company Standard Bearer" 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>
<entryGroup id="afbab985-3f59-423e-89f7-4c2628b3b387" name="Weapon Options" defaultEntryId="0a30179b-4f61-49cf-b847-e3717aaf2c2f" minSelections="4" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cebdc841-6269-4fa8-a510-44d10d3439d2" name="Storm Bolter and Power Fist" points="0.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>
<entry id="3ba9ea28-f695-4779-adac-cc275c5c48eb" name="Storm Bolter and Chainfist" points="5.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>
<entry id="650ca2ee-8fc5-4321-b836-7900de2a0d44" name="Twin Lightning Claws" points="0.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>
<entry id="9f382fb3-0bf5-4a2f-8d6e-ca17d0a21ed4" name="Thunder Hammer and Storm Shield" points="0.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/><modifiers/></entryGroup>
<entryGroup id="94e60075-07a3-4e3c-85df-6371399154f4" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ff5ffda2-656f-4582-858f-893656f2bc7b" name="Assault Cannon" 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="4abc9af0-aef4-43ad-a4c0-66769bd3e103" name="Cyclone 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="7de25eb6-e8b7-4b09-9a60-29db28276e6b" name="Heavy 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>
</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="f9ba4d50-ef8c-4a5d-8b0b-ab43e41a6789" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="54f99193-15f4-46b1-8a6a-88c893dd2218" name="Deathwing Terminator Squad" points="172.0" category="Elites" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="16d77bbb-9efe-4a55-a139-c247ded4027a" name="Sergeant" points="43.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="5b18eafc-c7f6-446d-8a05-3bd67352b5d5" name="Weapon Option" defaultEntryId="3fc4571b-f47e-4739-bf3e-cc7427bbb850" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="014e35bd-400f-4d10-a9fa-b945dd73a4d0" name="Storm Bolter and Power Sword" 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="548795f7-50cc-4766-8c2b-94c529c63836" name="Storm Bolter and Chainfist" 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="f92492f0-ca15-4798-b287-3252c9defd04" name="Pair of Lightning Claws" 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="e83cc7c7-0c79-4db6-89d7-541a0d6286f6" name="Thunder Hammer and Storm Shield" 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="91ee790b-0c0c-4cf0-8480-35a718c8f50d" name="Weapon Options" defaultEntryId="0a30179b-4f61-49cf-b847-e3717aaf2c2f" minSelections="4" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0f440853-d329-4853-a617-f7c0129ab454" name="Storm Bolter and Power Fist" points="0.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>
<entry id="0fc9fd24-6ed6-4d9a-b6c1-c4593dd33fd5" name="Storm Bolter and Chainfist" points="5.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>
<entry id="52089aaf-a443-4400-8d27-612d315c0b27" name="Twin Lightning Claws" points="0.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>
<entry id="d96f7dfc-bb1c-49d5-8a5c-13216da275f0" name="Thunder Hammer and Storm Shield" points="0.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/><modifiers/></entryGroup>
<entryGroup id="bb95001c-01b7-4e48-aa6e-819802985f1d" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ddbbd822-584a-4a21-ac74-4f3a85cef600" name="Assault Cannon" 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="68d23d23-d59a-49c2-844c-e82aa179bcdd" name="Cyclone 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="6de1de61-d196-4fda-baee-6bb2c50a91c0" name="Heavy 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="ab7add22-5dee-47f4-9517-f8fdfc17c51c" name="Deathwing Terminator Squad (Troops)" points="172.0" category="Troops" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d373e299-2d0f-4350-90ec-8372cf50a8f9" name="Sergeant" points="43.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="5e7fe2c2-9cea-402d-b185-53e398a55ab9" name="Weapon Option" defaultEntryId="3fc4571b-f47e-4739-bf3e-cc7427bbb850" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ca858529-97ad-416c-9c56-3562d131aab2" name="Storm Bolter and Power Sword" 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="6ab82a00-4964-4b9d-8017-ab05e695db02" name="Storm Bolter and Chainfist" 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="d681744f-f75f-43a3-bb90-dc541eb1f0ac" name="Pair of Lightning Claws" 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="f1208353-552f-4527-9b53-ad70ed3f9a18" name="Thunder Hammer and Storm Shield" 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="79620368-5ae0-458e-8c28-993c8258473c" name="Weapon Options" defaultEntryId="0a30179b-4f61-49cf-b847-e3717aaf2c2f" minSelections="4" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fd58bb84-57d4-43df-a227-5759b7452514" name="Storm Bolter and Power Fist" points="0.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>
<entry id="cd55ac77-b0c5-47eb-8c28-5e463320f583" name="Storm Bolter and Chainfist" points="5.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>
<entry id="7f7c56ac-6665-41b4-bda4-75b0b332be64" name="Twin Lightning Claws" points="0.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>
<entry id="d1a00878-4d4c-4c53-a8dd-f919b5b0d414" name="Thunder Hammer and Storm Shield" points="0.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/><modifiers/></entryGroup>
<entryGroup id="0a3113a7-d960-4aa9-8946-78fd06b8c79d" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e67c21eb-bcfb-4553-92d0-7478dd797f42" name="Assault Cannon" 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="b63c0ae5-0d26-4e34-b3c9-5377ce759db7" name="Cyclone 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="e9dc43c4-50a6-4128-ba62-53e645a151d6" name="Heavy 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>
</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="f9ba4d50-ef8c-4a5d-8b0b-ab43e41a6789" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="c2b3fd22-3d38-4f77-be45-8de41f8e3aef" name="Devastator Squad" points="0.0" category="Heavy Support" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="bc148dfc-9471-499a-a332-ea9fe0e242a1" name="Veteran Sergeant" 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>
<entry id="86f786e2-1565-4b6e-ae99-d765d422872f" 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="c2de1569-a933-4345-8b85-c5a290664739" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="540635f8-f7f2-4159-b668-a6d72cf8be15" 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="b46437a5-65eb-4c9d-b958-0d75170c8e02" 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="19c04bb1-a47b-4c64-a9cc-bdbb8186402b" name="Chainsword" 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="0eb7bc6d-e326-4028-9477-70a59e36ca64" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="823610d4-b4e1-43b1-9676-d0f5f9ce5eb7" name="Chainsword" 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="3eac7013-b267-4fbd-8193-8381a0c7b55b" 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="239615c3-864e-4188-a096-957cf291119f" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="fe858c0e-bdf6-44e0-9155-f72ada029d5a" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b7e8fe39-3089-4961-ac6f-e51c8595c7c6" name="4 Devestator Marines" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="48683d02-4cac-4aae-b302-918541e3f9eb" name="9 Devestator Marines" points="165.0" category="(No Category)" 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="4b913c2d-52e2-4f95-9cab-c1878682619c" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="58a61d9e-5c72-4d95-a718-32dc19593238" name="Drop Pod" 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="8e9a224b-42e5-4ac9-abd7-ea7a7916a0f4" name="Razorback" 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>
<entry id="b6d39368-de7b-4017-9887-98cbfb96062c" 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="a91ddb61-83db-4f9a-9cf6-8b896d31a9e5" 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="f6c16be5-c80f-43fc-98d7-6b71e3c5b999" name="Hunter Killer Missile" 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="91890272-a9b5-4210-85b1-c3990edff498" name="Pintle Storm 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>
<entryGroup id="455fdd94-c2e4-4044-988a-3d3e1f6dbd56" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c3885417-d337-47d5-adcb-bc15bc99b132" name="Twin Heavy Bolters" 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="9e2d9892-56fc-468f-8a17-10fb0941a29f" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="0249f5e1-e13a-4cd1-88bc-8c7e3e59c04a" 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="5e250e12-7653-43ad-bb6a-65b2c1d44ad6" 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="7b469732-864d-41fa-bdd9-ba0e6675719a" 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="1570aa04-3d6d-44c9-8786-ca70cf556d95" name="Hunter Killer Missile" 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="c610c065-8cf0-4742-a3ed-fed7fe3af7cf" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="ada113af-c3af-4020-9b09-a334b86e577b" name="Heavy Weapons" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3119fe35-922d-4585-8f13-8e4909157322" name="Heavy Bolter" 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>
<entry id="cc9600f3-44d7-4529-b965-4f80ca19d837" name="Missile Launcher" points="20.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>
<entry id="031f1b58-36d5-4fb0-9193-df31f31b32dd" name="Multi Melta" 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>
<entry id="18dcb6a5-1130-47c7-98b9-a0e88a2bbc69" name="Lascannon" points="35.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>
<entry id="6a00927e-6c3c-4a20-b8b6-f1580a55fd0c" name="Plasma Cannon" points="25.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/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="090ee9de-ab5b-4030-a7b0-3a5c62b0c000" name="Dreadnought" points="125.0" category="Elites" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a2e3767c-320a-4714-a8b7-cde6a0319f67" 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="e8a8d5cb-9646-42b5-9648-fb24670ec879" name="Venerable" 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="1a2e6bb7-d13a-482d-8c07-d7e18b505cd1" name="Drop Pod" 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="fa6a7050-c077-405e-bd72-10d37f83e709" name="Techmarine" points="75.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="189528d7-d48b-472a-bda1-e713579c6ac6" name="Servo Harness" 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="d8d61519-a347-4504-855f-c7ac56a04f09" name="Servitor" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="c15844c7-f3f8-4cb6-865d-7a8cdcd1728b" name="Weapon Option" defaultEntryId="21167dfc-f555-42a9-8cf6-10d97b3da7ee" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="547683e9-8dd0-4129-9139-a340e4e98566" name="Servo Arm" 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="303a5f07-6652-474b-8d6f-82d2ed3216f1" 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>
<entry id="a8327482-ad35-4eb2-b39e-b99a17e24589" 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="e4747a59-d1fc-4836-a110-629c1fdf8e66" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="6b4c37e2-2807-4d1f-a47b-0660f9452113" name="Ranged Weapon" defaultEntryId="e8c23dd6-4f05-41aa-8098-9c83c1546d3f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="37bb9567-4c16-43f8-beda-ce4e74ee9da8" 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="5090a2f9-ee70-475c-b3a2-0677f27559cc" name="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>
<entry id="28d2fd68-f24a-4004-be54-ab4de1189b59" 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="6e141940-fbfd-4adb-801b-3d4a63a9fa1b" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c10d6540-68f9-4cd7-9983-a9d8d1ec51a7" name="Drop Pod" 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="8d504f40-46ed-4768-9504-25e6c7af9543" name="Razorback" 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>
<entry id="8cf5b1a7-c20c-467b-8305-f35501a65adc" 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="f88b9d8d-d2da-41e2-b3c1-c0b3ab72d790" 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="924bcc3e-1c14-4a52-ac39-2483fdbde2b8" name="Hunter Killer Missile" 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="5d293b06-3462-44da-8099-b5d59fe5918a" name="Pintle Storm 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>
<entryGroup id="10223228-dfd4-428c-ad5e-f418a254aa14" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="23a44998-b95f-4891-838e-e84227075cf7" name="Twin Heavy Bolters" 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="22c2a275-f23e-4110-a64c-8ff8a6ea411e" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="095ae9d7-7cb2-4212-be0d-977f8ec7e4ef" 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="974d00fe-683c-4710-baa3-7257a20a1fa1" 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="261fa337-2ad1-428f-a95a-1210ffa415a6" 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="b3a8a548-5784-4e08-89d9-eb64b8204cec" name="Hunter Killer Missile" 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="9fb65d33-6774-4cd4-8ab1-a4757d22f80e" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="881d5aad-38c7-44f3-ab9a-547c8097010e" name="Left Arm" defaultEntryId="3d9145cf-19b7-4baf-bfe4-fc1fd6b4131d" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3d9145cf-19b7-4baf-bfe4-fc1fd6b4131d" 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="35c7dca2-1d42-406b-a76f-78dcc39dc2df" name="Built-in Weapon" defaultEntryId="98d309ab-fa71-4c9e-9723-85ca75c4fb2f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="98d309ab-fa71-4c9e-9723-85ca75c4fb2f" 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>
<entry id="0f96907e-2432-457d-a4be-cae32a3da086" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="145570e5-2d07-4707-a2c3-a7ccabbf0ded" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="11b63db9-8236-4122-a8a4-f540f1155ff8" name="Right Arm" defaultEntryId="06654faa-fccf-4f32-bff5-84b56c6d4792" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="06654faa-fccf-4f32-bff5-84b56c6d4792" 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="22965f8e-b96b-4d38-877b-62383d981729" name="Plasmacannon" 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="720f2c8f-aa30-4b2a-aef5-d7902c34de7e" name="Twin Linked 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>
<entry id="33dc3ad1-ceb6-46b3-87cb-4b9e971f261d" 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="e623c774-6687-4a92-acf0-d378511c65b4" 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="42503c9e-d706-4d32-923f-bb687bd0dcd0" name="Ezekiel, Grand Master of Librarians" points="170.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="c7ece9b0-0523-4427-86ea-9ff7b7145374" name="Command Squad" points="105.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="18318b17-49ef-41a5-8164-31d1072815ce" name="Apothecary" 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="37c1f0ee-d329-4341-af66-b78614f98d14" name="Company 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="1764f275-f9c3-42c8-bc4a-09b274a154e4" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="fb37938b-5467-4584-840b-c39e52370732" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3170f691-31ae-401d-9e0b-29b335642d69" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="ec15347b-fbca-4422-b966-ca2795c0c675" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="eb6eb253-f6db-4691-bb49-5a5c00b28321" name="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>
<entry id="740ad572-c455-48e4-9f6a-abe22f4e8901" name="Meltagun" 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="ea71afc2-f844-4b16-9cbd-86dc63b1d306" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="7eac4c03-8386-4c35-af3a-fde47fa68fec" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6d72ffa4-672d-4bea-b52e-7944ecc0d866" 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="b4e17e4d-1c21-4c96-ae3f-6557710c30f3" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="569f5811-4f11-411a-a97e-04d05942c1c0" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7394d0fa-c99b-4a33-a0eb-076148d3a42c" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ab1946e7-992c-42f8-991d-93f871518071" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6f95e36c-b50a-4d00-859f-5b06c2850017" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="76f30df5-7e35-4d1a-a2bb-05b7965a2e52" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="48999aee-42d7-4e66-9843-6c15cbde84d9" name="Drop Pod" 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="9d30195a-0b17-4952-8a4b-8dbe39d5c98b" name="Razorback" 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>
<entry id="652ad51e-2d85-458b-9f33-3757d8eb56f9" 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="801ce3b9-f13a-4509-91e4-c061e0df3104" 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="c88d3692-d090-48ac-ba1b-fc5f4cd7a7af" name="Hunter Killer Missile" 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="4b1a9fc2-8873-4912-9136-69f64c7644d8" name="Pintle Storm 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>
<entryGroup id="d4cb3bb0-0cd0-4493-b3cf-0c556b3f2144" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a2c52aee-39e2-450a-ade7-7a0da9e518a7" name="Twin Heavy Bolters" 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="1d5d5ecc-6272-44e6-a282-b7b2f15a4717" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="55b36a9a-fd61-4636-aba9-47a630fe2bb5" 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="a8cf304e-aa08-4f44-b60e-8d51d0464788" 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="1247a869-eafd-4b2d-b430-06aa08b74142" 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="a80584f1-9582-4efd-8c34-2656f5240608" name="Hunter Killer Missile" 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="dbf376ec-5e78-4a95-97d1-4823d0f8a585" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4947c83b-d544-4fc8-b4d1-3562f966ad17" name="Interrogator Chaplain" points="120.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0ba81241-0c0b-4ea6-aa31-efb4e77d4834" 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="b8254e2f-77ab-41b1-a079-572e62114320" name="Command Squad" points="105.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="1d87358c-06f6-446b-98f6-ca298cfbb8fe" name="Apothecary" 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="bc6aecde-d6f7-4dce-8f12-ecc5edeaeae9" name="Company 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>
<entry id="00e84329-c625-47eb-9ca7-ae505646c259" name="Sacred Standard" 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="2b464f1a-f4d5-44f9-bbfa-71e1fce2ed0f" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="75dd6911-d63d-4761-8621-781450ec2b4f" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c159f38d-6dd2-42b7-9b36-35fcef30bb92" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="c36a704c-e42d-4c2b-bbf3-f7c33e61681f" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e33259e0-942a-4b70-bf40-e7f03ce4c8d1" name="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>
<entry id="a52b914a-1460-4619-9098-bc8a2b779699" name="Meltagun" 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="6cb56fe0-6bec-4608-b5f8-2ac74641fde3" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="bfd671ef-4902-4f79-92fe-f182222a5525" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7e257323-8e4e-4a99-82c6-5225816cfe7b" 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="f410d262-ce32-4f53-bdd7-3c8d8aa55db9" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="35deb9f0-fcc7-409d-8057-1828d7052fe6" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="86492ddc-2f19-4371-96df-47813df6b89a" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d26d0802-47db-474b-89cd-bebed3edad8f" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e292a0b9-516d-409c-8a6b-3f3dc9c5d324" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="cbe426f8-4b3b-428f-a06b-f75ca7df8e4c" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a04d7763-41be-47da-8cb3-7e60943cc3c9" name="Drop Pod" 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="da4e7a9e-0758-4d1b-bb88-cfd82ddf7aaa" name="Razorback" 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>
<entry id="ca10bf3f-0dcb-4029-9af5-2a2f624d840b" 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="a8c53b9f-130d-405b-9392-a74e745aaa37" 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="a2bc8423-f5ae-42d5-9560-b64c3d594bd3" name="Hunter Killer Missile" 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="6cc1d5ec-0acc-4240-8626-d8f2808197a0" name="Pintle Storm 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>
<entryGroup id="630c9789-bd6e-4345-938e-c680a3e40508" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="89308910-9951-4a2b-b95c-2e3d0cefb896" name="Twin Heavy Bolters" 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="6cc9456a-22fa-4bea-b07d-6ccf6faf1fc8" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="be29a3a7-b273-4c03-a0aa-fb84f374672c" 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="091e9b2d-3c44-49dc-b5ee-12a1fa880a9e" 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="06365525-4cbe-476c-ad51-76433f2fe6c9" 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="ddea9a79-00d3-4730-85a2-939930d804df" name="Hunter Killer Missile" 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="24d390ac-56a3-4181-986a-88fbbb045e02" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="0f49d999-47b7-4daf-bbd0-e7196d0a2f2a" name="Armour" defaultEntryId="ffcca7c3-f8fc-49c9-a026-be29bc74db24" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2e8bd5f5-4597-4481-8c38-40692cd67007" 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>
<entry id="897c12bb-e522-4586-bfb0-85a0d7d14ed3" name="Jump Pack" 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>
<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="2e8bd5f5-4597-4481-8c38-40692cd67007" childId="413f1139-0ace-4c21-b588-c33eee6f4059" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="413f1139-0ace-4c21-b588-c33eee6f4059" name="Space Marine 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/><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="2e8bd5f5-4597-4481-8c38-40692cd67007" childId="897c12bb-e522-4586-bfb0-85a0d7d14ed3" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="430a6a11-087d-4886-a27a-7f588410ca3b" name="Power Armour Additional Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1cbe214a-fe05-4194-8738-9803d4ebb486" name="Combi-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="a9bcd0de-4e91-4af6-a0ff-a36f21be60b1" name="Combi-Plasma" 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="ea570480-72e1-48d2-b1fd-d9a9e0ddd092" name="Combi-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="5f5070cc-a8d7-4585-965b-4fea79feb73f" name="Storm 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>
<entryGroup id="e6ff50a0-f91a-49d2-928e-f41106fc4767" name="Power Armour Weapon Option" defaultEntryId="172e3497-1060-4e24-ae4d-5e768eb9899a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9f69097c-ea29-4a20-86f7-43f8ef8f9ab5" 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="20680f2c-e84c-4999-87ca-d20c7f536f50" 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="7f658ffd-c291-4b6b-8f22-162ff5075720" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="29ac80f7-7261-4489-bb15-9688560c3d6f" 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>
<entryGroup id="f3c544b8-e472-4e2f-be8b-f9e0dd072ea0" name="Ranged Weapon" defaultEntryId="4cf39817-8cd5-439e-ba50-1a253d187759" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b23e8388-2275-4d7a-8ac6-8b3ff65cbc31" 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>
<entry id="3a21861a-d31b-46b8-b720-0a189dd4ded7" name="Combi-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="a949aa42-0d71-48e7-837e-67b1e6120388" name="Combi-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="3a0ff8cd-3450-4164-9b35-c8b2cc9a4a4e" name="Combi-Melta" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="f9c3acfb-b6ff-4e2f-8f7d-a160cc3fe1ba" name="Land Raider" points="250.0" category="Heavy Support" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="157eb026-8607-4641-9af9-61d8741ef9db" 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="77ca9dc7-746b-41fb-873d-88df968f64e4" name="Hunter Killer Missile" 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="103df45d-e580-48dc-b7d8-235065350ade" name="Pintle Storm 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="770283c8-fa42-4796-a680-5a501d8c3e2b" name="Techmarine" points="75.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="5cccd844-5bb7-4486-928d-b872696fd217" name="Servo Harness" 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="b1e2ad15-a563-4042-96bc-b1f3f56d0d1a" name="Servitor" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="4610b0d0-3d3e-4fe2-a247-6a4b38f69e6a" name="Weapon Option" defaultEntryId="21167dfc-f555-42a9-8cf6-10d97b3da7ee" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c421d85f-33b7-446c-a2c6-fb70b048ac76" name="Servo Arm" 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="f7ac3f26-55cb-47ec-8609-fc8a6e5b7315" 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>
<entry id="881657e9-ec2e-4707-8ab2-4a9a0a7af92a" 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="2c820d01-c794-4dc9-88d2-bee406ae2394" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="3ae6ed41-051e-495c-a7fb-ba5b8e5c1b3b" name="Ranged Weapon" defaultEntryId="e8c23dd6-4f05-41aa-8098-9c83c1546d3f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5fe008c7-4520-479f-ab75-55cef31c8301" 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="0b30d990-4b26-4aa6-b879-fd474aa047e7" name="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>
<entry id="a682ea52-879b-417c-bbf8-a1af558a78e4" 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="c23e782d-a9fd-450e-92c2-91d9c22a2eef" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="780befa1-2913-4940-9cc2-e73f903d5faa" name="Drop Pod" 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="dc462639-6271-492c-987f-334bc2016a96" name="Razorback" 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>
<entry id="a8e2f7cb-5147-4f4a-bb56-a3b708b8b6a4" 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="b3fcb43f-0f15-4a31-b4e2-0f69d9ef6a0f" 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="a041197f-4168-4593-95f1-bfef67fddf25" name="Hunter Killer Missile" 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="e6709178-468b-460e-bca9-43794af575cc" name="Pintle Storm 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>
<entryGroup id="88ead36f-a71f-4084-abc3-37927f50777a" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="633c882b-7634-483f-9952-5fb055635ca6" name="Twin Heavy Bolters" 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="3a8c711f-efce-4044-9990-62f487b88140" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="881e6269-1589-43ce-8a57-54459ba207a4" 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="62d5cfb1-98ef-46fd-a394-09d59ceda34c" 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="7bb0a8f2-5fd7-4338-89a0-c86b74fcfd78" 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="72a91c1d-5a07-459e-badd-1a797e4c93f3" name="Hunter Killer Missile" 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="9944f905-3f7c-46be-b2fb-0638c0463391" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a18eb685-1805-4e85-a083-9ca5f1cb2c5c" name="Land Raider Crusader" points="250.0" category="Heavy Support" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7e8a8b27-f08c-47ec-95c8-0d956cb95748" 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="f73a112a-9331-4e33-8f06-369fd47f9503" name="Hunter Killer Missile" 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="9f8c21f5-38c4-4139-97d2-6fa2bfcea397" name="Pintle Storm 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="36c39529-9773-47ec-912e-549962774239" name="Techmarine" points="75.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="247b458c-d9ef-4ca9-aea2-8f9bbe94482b" name="Servo Harness" 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="139ceb4a-df7a-4961-9c91-c96981f57d97" name="Servitor" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="38fe5e0d-b9f7-45ab-adf7-7629ca948b75" name="Weapon Option" defaultEntryId="21167dfc-f555-42a9-8cf6-10d97b3da7ee" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cd3889e8-81e4-4d7f-84f6-4f1fcc0574a2" name="Servo Arm" 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="58357fc0-6f22-4ed1-8d13-63cba806c8bd" 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>
<entry id="323d68fd-d866-4504-b76e-09cc861a01d2" 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="75c96d99-5095-4a2d-b735-3c614c24db66" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="84093369-74b7-49b7-addb-13bcc7225707" name="Ranged Weapon" defaultEntryId="e8c23dd6-4f05-41aa-8098-9c83c1546d3f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d63bce49-778d-4e02-9cbd-a9a37b6705de" 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="10c79986-d133-4ffd-be33-658d4b8f0e98" name="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>
<entry id="592e3fb4-4e51-4bf1-8f50-7724f3a58535" 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="dec4fee5-31ba-4c56-b434-23be0c0368b9" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="790ded93-dcd1-4a49-8ca4-0a970aa3b8c1" name="Drop Pod" 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="871dc815-e8a1-4157-a492-80d0adcc460f" name="Razorback" 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>
<entry id="b4655fc6-f39f-44ed-ae72-187a480ccdea" 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="dd9cd223-ebc7-4aa8-a44a-9f8706f46940" 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="904a20e8-5bda-43ba-8cc5-a67555a92fb0" name="Hunter Killer Missile" 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="034e3aba-e3d8-4041-a64b-e6d2d031e2aa" name="Pintle Storm 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>
<entryGroup id="434ec867-80a7-446a-89b3-36c29cb01092" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c7b5113c-b1e8-4c9b-95bb-f9ddd828a0c1" name="Twin Heavy Bolters" 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="3926bca7-4deb-4d8d-b43e-6a84dbae4caf" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="f3f26b75-4f23-430b-9305-3b71873cd20c" 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="38acb4c6-11ca-49ed-8f96-beb96fe34d49" 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="f7991cd9-0974-4857-974a-4d18873864ce" 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="289d4ecd-03da-4847-bbe3-432b2f97d536" name="Hunter Killer Missile" 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="abb4d322-da18-4aa8-9ab3-1e08e7976449" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8139ca80-0c50-42ba-b03f-92f79406dc65" name="Librarian" points="120.0" category="HQ" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ca832986-fe5b-4649-8305-15c4b948ca78" 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="afc9d8e9-34ad-4b8a-81b4-bec95ec78a2a" name="Command Squad" points="105.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="02649cf5-7a93-4158-ac63-225717d19bd0" name="Apothecary" 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="f48dfa39-5081-4563-a5a7-7c38beafbaf1" name="Company 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="c746c7c3-0b97-4d5e-bc9f-f290d0241fc9" name="Meltabombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="340c382e-f7a3-4100-969a-6006d8d66f8c" name="Weapon Option 2" defaultEntryId="c4b720e1-4ec2-4674-9e8e-d8773e2ebba4" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0540029b-0c13-47cb-8e56-90e52396b253" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="490d1260-07a0-463a-91a4-8c1f9d0a417a" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5029e77d-5e97-4be3-936d-1c9e4edc9a19" name="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>
<entry id="bee701e5-381e-41fd-92a9-d788c50e8536" name="Meltagun" 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="ef8896ce-a3ca-4cfc-9d20-6e174ee343dd" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="05f3db3d-a8ef-4513-acf6-cfb6a146867f" name="Melee Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="97f38d3b-ffb0-4a76-988f-382a77335b2c" 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="c8f36a4e-4743-48ab-84b3-60a66a665434" name="Power Sword" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/></entryGroup>
<entryGroup id="791a9c71-ac8f-4d07-a08c-69ecf9a8f1a3" name="Weapon Option 1" defaultEntryId="457ce3a5-94ff-4157-87db-0dd16365becd" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ed91e366-250d-4af1-adf9-c51132eed06e" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f0ae3f4c-af6e-40fa-938f-0f661a2a4a94" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d02e68ae-bd99-47c3-87f2-6191a329b573" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="9125082b-9736-4c1d-b4ff-9d0a129ea4f7" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9eb2f253-369f-44d5-9767-822e6c579cca" name="Drop Pod" 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="067dcd11-f562-4a1a-9bac-5930121b16f9" name="Razorback" 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>
<entry id="88a94885-7a94-4250-a53d-b10e3d1c402d" 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="7646142e-c385-4ad4-b0a5-c1715c4b0d45" 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="ce6bb24a-2924-4544-be3e-da68404f4e71" name="Hunter Killer Missile" 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="172bec6b-e255-4f00-ae10-1d45726be15a" name="Pintle Storm 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>
<entryGroup id="8a1da828-2ee1-4294-bf67-183b9799273f" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="16a6f08e-f45a-4cfb-beef-34285760d99d" name="Twin Heavy Bolters" 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="36ceea3e-2217-47ad-b616-af4cdd1cd8eb" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="0a2f2b60-fbc8-4e1f-b78b-f0b8bdae9592" 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="cabea162-2ef7-47df-a26d-4b002b9a8486" 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="018370b4-0d2f-4f20-8247-a87bd047a41d" 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="9770f470-b532-48fd-bc96-d68a95ae384d" name="Hunter Killer Missile" 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="d65e0833-0954-4742-a58f-7687065c2b9d" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="96d63a19-9bc6-4e42-bb20-f5e4ad5d7fdf" name="Armour" defaultEntryId="ffcca7c3-f8fc-49c9-a026-be29bc74db24" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ffcca7c3-f8fc-49c9-a026-be29bc74db24" 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>
<entry id="618d9044-f7ec-412e-a7eb-c99deadf7ff1" name="Jump Pack" 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>
<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="ffcca7c3-f8fc-49c9-a026-be29bc74db24" childId="6d51eec7-92d1-4bc7-954a-4c3805354f6e" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="6d51eec7-92d1-4bc7-954a-4c3805354f6e" name="Space Marine 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/><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="ffcca7c3-f8fc-49c9-a026-be29bc74db24" childId="618d9044-f7ec-412e-a7eb-c99deadf7ff1" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="56c3bbce-20db-4c74-8528-629abbcbcb21" name="Power Armour Additional Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="88ac5459-4c29-4b18-9e93-69eb7a340a3b" name="Combi-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="c2834aaf-e315-425e-a6b7-1a498c11956f" name="Combi-Plasma" 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="f551e7f9-1ff1-4631-8101-ced534cb730a" name="Combi-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="6173343f-f42e-4f5c-8d13-d3bfd884d0fb" name="Storm 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>
<entryGroup id="e406156c-9807-4769-ac9d-87c2462a15b6" name="Power Armour Pistol" defaultEntryId="172e3497-1060-4e24-ae4d-5e768eb9899a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c317300c-5d7f-4d6d-aa25-0e199b339019" 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="fb9466c3-ccb1-463b-8cd8-7ffe462a53ab" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="280eb4b6-0b54-43a3-a26c-a198e3b55166" 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>
<entryGroup id="cd6cf4f2-2a6e-4940-a463-b9868f30040c" name="Ranged Weapon" defaultEntryId="4cf39817-8cd5-439e-ba50-1a253d187759" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4cf39817-8cd5-439e-ba50-1a253d187759" 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>
<entry id="bc31abfb-53da-48ae-8bd4-f34ae95f6b20" name="Combi-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="7ab6d42b-d463-4a15-8ee6-9f511dfa2295" name="Combi-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="ecf02b5a-16f6-473e-9308-ab20da4521ae" name="Combi-Melta" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="04c45d93-1706-4810-8387-c17920d31d46" name="Predator" points="250.0" category="Heavy Support" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="010a7fed-30e1-4801-9c18-d798111a8451" 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="2c7b3fbd-ef4f-4635-81a4-61ad9815b881" name="Hunter Killer Missile" 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="6f0bb813-ece4-44bc-9c3c-f8820dcc70d7" name="Pintle Storm 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="d6d12f00-d9ef-4f8d-8572-b7cda221a1be" 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="6fb331dc-f728-41fc-ad7b-ce19124f6fd7" name="Techmarine" points="75.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="e72b1224-bdc1-4f3c-be72-0bb01d38078a" name="Servo Harness" 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="5c9b1cf8-e6ed-45ce-80e9-fe2422889374" name="Servitor" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="e7fd80e0-a5db-4d8b-b862-3c9e77f40aa5" name="Weapon Option" defaultEntryId="21167dfc-f555-42a9-8cf6-10d97b3da7ee" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e14b7f9c-2643-4c87-81b9-7afb4d91ee25" name="Servo Arm" 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="a05ce733-3ee8-4150-8eac-195ecd35a83a" 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>
<entry id="c6a8be62-8874-4c42-8de4-dd94e556297f" 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="4f7f0a6e-822b-41ce-987f-9ee5154a81bc" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="df4cff1d-5a44-4435-8539-5c0a55f468b6" name="Ranged Weapon" defaultEntryId="e8c23dd6-4f05-41aa-8098-9c83c1546d3f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e6cd4a6e-a140-4f0c-944e-8b8efdd34d94" 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="aa7a408c-ba5b-4e4a-8649-1e2c4291f934" name="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>
<entry id="c6c4737c-ab66-4826-abbb-44c5f247ff06" 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="3adb7dbd-aa8d-499b-a5c1-c0a486c6b9a6" name="Transport Option" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fde242a7-9e26-45f7-a5b2-a43be26f68b1" name="Drop Pod" 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="da915c8e-b690-41c4-b837-b7b41f137f4e" name="Razorback" 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>
<entry id="560aa0dc-3e9e-49c5-84d2-ac07ad6d7293" 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="8a3204d0-15bf-4da6-9170-ce0c8c6dad27" 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="8f8bc2b6-7949-43d1-8bea-c9aeb9bcfae3" name="Hunter Killer Missile" 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="684725db-e339-4951-b7a4-2d5be872f992" name="Pintle Storm 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>
<entryGroup id="f675acf2-2651-4cc1-bf6c-4bcc8d5318a3" name="Turret Weapon" defaultEntryId="cca259d6-575b-473d-b328-12e481f2dda6" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="10a121c6-dd06-46f1-a008-8605acd73b8f" name="Twin Heavy Bolters" 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="41f31045-29f1-471b-ac7f-02173051aad5" name="Twin Lascannons" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="8f83b29c-333a-48bd-b3a5-34512b5dc872" 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="e44ae940-8463-4d75-a8e4-795946443ce8" 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="29535dea-eacf-4274-b78e-d22390f18020" 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="cd399e06-0594-4cad-913c-bd12a9050a31" name="Hunter Killer Missile" 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="aacf0139-1600-46d5-a291-0d00a6cc5f5e" name="Pintle Storm 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="03658562-a7b3-456b-a4ce-70c8fe7c17a7" name="Turret Weapon" defaultEntryId="98649812-8208-4bbb-8627-f418083d14ab" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="492c3856-802a-4d53-b478-7d100c2d6f44" 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>
<entry id="6e82a025-840d-428e-b837-353726080d6d" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="457df360-4b4b-4b1c-8d88-b59f0f91e924" name="Sponsons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fbdc394b-dd32-4b6e-bae8-7d75f0247d07" 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>
<entry id="ac76686d-356a-4e06-8f39-a3c8e2a514ba" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="b6107781-6597-4cdd-84c7-397445c4f5bc" name="Ravenwing Attack Squadron" points="0.0" category="Fast Attack" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="91de811e-6667-4212-b9f0-841f1af1e6b5" name="Veteran Sergeant" 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>
<entry id="0b9d45da-f1ac-4c97-b7ce-0c0213480ce0" 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="c73f9c76-70b8-4b84-b750-e6b5e05015b4" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="037f1750-5f67-4788-a4f5-8efdeb3dfb1f" 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="ff63737c-3fde-4198-8064-db9e317d726c" 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="ee4bc5e7-80d3-47aa-ac46-ed0fc06ad7af" name="Chainsword" 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="685e081c-1e3a-4d01-992f-407e895c5571" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="45110740-3136-466b-9b66-6e6fbb47b35c" 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="ad9e287d-3e45-499f-86f0-e4b768903135" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="fa9327c4-4bde-46ef-bb9a-e7301fd256d2" name="Ravenwing Attack Bike" 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>
<entryGroup id="5bad05a3-fb04-4f6a-9368-f5ca9f1dc967" name="Heavy Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5a9e52c7-3abd-456b-8b5b-c3656f699f7d" 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>
<entry id="6e484543-6bf1-4c98-a5a0-89dc5b5cc324" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="59ec459e-af49-4e7a-89cb-76670b8acf77" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="16bc1417-2f49-4b3f-bf79-c26444eaccfb" name="2 Ravenwing Bikers" points="120.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="ec5222b3-0fe4-447e-a005-1af1ca5b49dd" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="32d7a146-5f9c-4535-9126-f114f480158d" name="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>
<entry id="8a444c8b-d319-4d85-b8c9-3585f4e90a71" name="Meltagun" 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="3a63d59b-7ddc-47df-b1df-285fa0a275df" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="dd187d9f-3c09-46df-b9f6-de64093a60cd" name="5 Ravenwing Bikers" points="220.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="68630a55-b917-4c48-a649-6af056804bd4" name="Ravenwing Land Speeder" points="100.0" category="(No Category)" 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="eb831460-80d2-4c19-9d05-73b6a24262db" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="120a161e-f1f8-4002-bf33-dbb57f5036c5" name="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>
<entry id="302b9523-f4d8-4ff3-86d2-26755a395ade" name="Meltagun" 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="320e5307-33f1-4f6c-9428-5058da03ee63" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="33f36278-043b-477a-bdf3-416787d854a6" name="Ravenwing Attack Squadron (Troops)" points="0.0" category="Troops" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="edacb3c2-7bc4-4ae7-94a1-e3621a846ca3" name="Veteran Sergeant" 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>
<entry id="6003d212-5980-4300-a6e6-b851f40f436c" 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="ae577b4f-0d51-4379-bd1f-6139c7742325" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="55050659-a9f9-41f6-9e62-80369c1e4f52" 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="062de83b-c051-4f21-bb81-ceafb992ddf1" 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="3cc6ed45-e00d-4e1b-b55f-79e2a9905f6f" name="Chainsword" 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="9159c245-ff20-4864-a98a-adaf5b09a410" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c3cece9f-e779-4c5d-950c-6ef7a89d90ab" 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="611d65a6-8b51-400e-9077-ea218a4c65da" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="73a5ece0-e1db-49a3-9309-ef35687d5b60" name="Ravenwing Attack Bike" 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>
<entryGroup id="d3c2705a-7a19-4a38-847b-48bb71a6f2dc" name="Heavy Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a454e457-9587-496f-8ca1-f77ef4e3eaf4" 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>
<entry id="3514be8f-5659-4eb8-b878-7b1ea287fabe" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="ffe898fa-985b-46c9-b3b2-71b5059ac37e" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="82cd787c-5e5f-4dc5-83be-2a4f47f7de13" name="2 Ravenwing Bikers" points="120.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="1687f130-9766-4b7c-8993-0bd8c71a42a2" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4eb3a150-1521-4b8e-8943-373e6638df6d" name="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>
<entry id="30f14f79-a688-42b8-a97e-48a685426b72" name="Meltagun" 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="efb8b11c-6b42-4595-b713-a5dd7582b03d" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="096dd019-2ec0-4d05-bc28-8f058f8bb2b0" name="5 Ravenwing Bikers" points="220.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="1d4f13c8-0ccb-4e88-a627-2c587ca5a765" name="Ravenwing Land Speeder" points="100.0" category="(No Category)" 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="969ee3b8-9e19-421d-a1a1-3b045d160281" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dffda7c8-3eac-40b8-87c3-e3afba2d2844" name="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>
<entry id="22c414dd-4508-4543-82bc-1729f7c578fd" name="Meltagun" 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="56142cc7-c578-4387-8491-7768f2e1162d" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</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="2fa4ec7f-ae66-4b27-a639-d345c4ee8ad5" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="986ef8be-4bb4-4a5f-93e0-4b451959e9c8" name="Ravenwing Command Squadron (Fast Attack)" points="0.0" category="Fast Attack" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="25824973-eca1-4c45-a340-fa4aa7ca42dd" name="Veteran Sergeant" 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>
<entry id="eac1013a-db3f-450d-8897-880529ae16f1" 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="bb07262f-0673-4eba-901f-c111e77306d6" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f6bb23c1-91a2-4eb1-9a4d-bef75ce387e7" 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="0042cc45-4457-459f-9895-0b36014a3a7b" 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="b48db968-a581-468e-8480-9db01e1b788b" name="Chainsword" 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="2b77a81b-16ae-4ceb-ac20-21fc882dcbd6" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0324eb84-46f8-46ff-8467-fc854e15476c" 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="bbe8a011-702d-4d25-9bfd-a255c94de131" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="19517d41-fc1d-4673-84e6-1402be7c4127" name="Ravenwing Attack Bike" 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>
<entryGroup id="e4b8218a-8a7e-426f-8716-75eb441089b2" name="Heavy Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="86517efe-b7af-4a6f-b51d-68140ba0810e" 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>
<entry id="1a5deb34-3d2e-4c83-a2bd-fea38c58cef4" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="41486306-a8a9-4910-bf64-62a3d03dc011" name="Ravenwing Company Standard Bearer" 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="764f43f6-61bf-4960-ab06-6e7394372b63" name="Ravenwing Apothecary" 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="269bedef-8e1f-4b95-a417-3ad12df966c3" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="198b1880-0265-4e3b-aafe-5997d0c2d0a4" name="2 Ravenwing Bikers" points="120.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="3e894985-09e2-4f12-a513-fbc825e77522" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="384cd436-1da2-40b7-95ce-f40cc33bf10a" name="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>
<entry id="a792a0f1-bb1f-4b99-9a6a-4e989425875c" name="Meltagun" 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="7efa8a3b-1bfa-4c0b-b0e1-884f81a94c6f" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="ae0febf5-3e15-41d9-a704-a29c9bd2a65d" name="5 Ravenwing Bikers" points="220.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="a8ce1b3b-2d92-400b-b288-94f3c92bc763" name="Ravenwing Land Speeder" points="100.0" category="(No Category)" 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="9eb17332-62e7-474a-9e3a-cb48f2467f6c" name="Special Weapons" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e11ca9d0-3729-450e-a9d2-2ba74e0e11e0" name="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>
<entry id="6e7f90c4-4d4a-4ccf-8b20-1ef085db28a8" name="Meltagun" 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="8286b5ff-472e-4fe3-92d0-edef39e12c65" name="Plasmagun" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</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="2fa4ec7f-ae66-4b27-a639-d345c4ee8ad5" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<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="b57f68d0-0571-49ba-9921-fe92485b3fa8" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="b57f68d0-0571-49ba-9921-fe92485b3fa8" name="Ravenwing Command Squadron (Troops)" points="0.0" category="Troops" type="unit" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="cf367c37-658d-44c2-865c-5f354bfec19f" name="Veteran Sergeant" 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>
<entry id="e9646029-a31a-44a0-9661-f0d10213371b" 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="98ad01e4-b8de-428d-99c8-946fd592c36f" name="Pistol" defaultEntryId="b4327018-74cb-4820-b794-ac424c80efd6" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b0b9e721-5dd1-4e30-b795-e15a2c8ce49e" 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="3a215b5d-915a-4961-a7b7-9ffe1d818c9e" 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="8bec8a6e-92c0-4c63-a9b4-48040f5560a2" name="Chainsword" 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="152393d3-74ba-46a9-9009-b905d2a35864" name="Melee Weapon" defaultEntryId="720818f9-b7da-46c0-add1-f79f989462b8" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2c979eba-6ca6-45ed-9a93-bef72975a188" 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="26e6e231-0c7d-4b0a-b1e2-217b913b4eb7" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="86f4b7c8-a1c7-453b-86cf-14c79f635b73" name="Ravenwing Attack Bike" 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>
<entryGroup id="77a1d8a2-91ff-4062-9b9a-e05c6b45d514" name="Heavy Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="231dca98-8654-4d46-b9ad-e689a10857e2" 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>
<entry id="63667291-3897-49f8-89ac-1762d74cba00" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="4913d7a3-55ab-449e-bd54-301e58a107d4" name="Ravenwing Company Standard Bearer" 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="aa224293-1734-4f72-9dbc-fc1c5322b2ce" name="Ravenwing Apothecary" 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="2c46a406-36d1-416c-a863-345d2e192006" name="Squad Size" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>