forked from BeedeBdoo/Sc2HotkeyData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompare output.py
1437 lines (1431 loc) · 312 KB
/
compare output.py
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
with open('output/DifferentDefault.ini') as f:
data = f.readlines()
with open('thecoreconverter reference/DifferentDefault.ini') as f:
start = False
for line in f.readlines():
if '[Commands]' in line: start = True
elif start and line not in data:
print(line.strip())
with open('output/Defaults.ini') as f:
data = f.readlines()
with open('thecoreconverter reference/Defaults.ini') as f:
start = False
for line in f.readlines():
if '[Commands]' in line: start = True
elif start and line not in data:
print(line.strip())
# This file is generated by a script. DO NOT edit.
CONFLICT_CHECKS = {'LotV Multiplayer/Protoss/Structures/Fleet Beacon' : ['AnionPulseCrystals/FleetBeacon', 'ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'Cancel'],
'LotV Multiplayer/Protoss/Structures/Gateway/General' : ['Zealot', 'Sentry', 'Stalker', 'WarpInAdept/Gateway', 'HighTemplar', 'DarkTemplar', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'LotV Multiplayer/Protoss/Structures/Gateway/Warp Gate' : ['Zealot', 'Sentry', 'Stalker', 'WarpInAdept/WarpGate', 'HighTemplar', 'DarkTemplar', 'Rally', 'MorphBackToGateway/WarpGate'],
'LotV Multiplayer/Protoss/Structures/Nexus' : ['Probe/Nexus', 'MothershipCore/Nexus', 'Stop', 'Attack', 'Rally', 'TimeWarp/Nexus', 'Cancel'],
'LotV Multiplayer/Protoss/Structures/Robotics Bay' : ['ResearchGraviticBooster/RoboticsBay', 'ResearchGraviticDrive/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'Cancel'],
'LotV Multiplayer/Protoss/Structures/Robotics Facility' : ['Observer/RoboticsFacility', 'WarpPrism/RoboticsFacility', 'Immortal/RoboticsFacility', 'Colossus/RoboticsFacility', 'WarpinDisruptor/RoboticsFacility', 'Rally', 'Cancel'],
'LotV Multiplayer/Protoss/Structures/Twilight Council' : ['ResearchCharge/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'AdeptResearchPiercingUpgrade/TwilightCouncil', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Adept' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AdeptPhaseShift/Adept', 'Rally'],
'LotV Multiplayer/Protoss/Units/Carrier' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Carrier', 'ReleaseInterceptors/Carrier', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Disruptor' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PurificationNovaTargeted/Disruptor', 'Rally'],
'LotV Multiplayer/Protoss/Units/High Templar' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/HighTemplar', 'PsiStorm/HighTemplar', 'AWrp', 'Rally'],
'LotV Multiplayer/Protoss/Units/Immortal' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/Immortal'],
'LotV Multiplayer/Protoss/Units/Mothership' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MothershipCoreWeapon/Mothership', 'MothershipMassRecall/Mothership', 'TemporalField/Mothership'],
'LotV Multiplayer/Protoss/Units/Mothership Core' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToMothership/MothershipCore', 'MothershipCoreWeapon/MothershipCore', 'MothershipCoreMassRecall/MothershipCore', 'TemporalField/MothershipCore', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Oracle' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'OracleAttack', 'OracleRevelation/Oracle', 'OracleBuildStasisTrap/Oracle', 'OracleWeaponOn/Oracle', 'OracleWeaponOff/Oracle', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Phoenix' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Phoenix', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Probe/ProbeAdvanced Structures' : ['TwilightCouncil/Probe', 'Stargate/Probe', 'RoboticsFacility/Probe', 'TemplarArchive/Probe', 'FleetBeacon/Probe', 'RoboticsBay/Probe', 'DarkShrine/Probe', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Sentry/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GuardianShield/Sentry', 'ForceField/Sentry', 'Hallucination/Sentry', 'Rally'],
'LotV Multiplayer/Protoss/Units/Sentry/Hallucinations' : ['ProbeHallucination/Sentry', 'ZealotHallucination/Sentry', 'AdeptHallucination/Sentry', 'StalkerHallucination/Sentry', 'ImmortalHallucination/Sentry', 'HighTemplarHallucination/Sentry', 'ArchonHallucination/Sentry', 'VoidRayHallucination/Sentry', 'PhoenixHallucination/Sentry', 'WarpPrismHallucination/Sentry', 'OracleHallucination/Sentry', 'ColossusHallucination/Sentry', 'DisruptorHallucination/Sentry', 'Cancel'],
'LotV Multiplayer/Protoss/Units/Stalker' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Blink/Stalker', 'Rally'],
'LotV Multiplayer/Protoss/Units/Void Ray' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidRaySwarmDamageBoost/VoidRay'],
'LotV Multiplayer/Protoss/Units/Warp Prism' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhasingMode/WarpPrism', 'TransportMode/WarpPrism', 'BunkerLoad', 'BunkerUnloadAll'],
'LotV Multiplayer/Protoss/Units/Zealot' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/Zealot', 'Rally'],
'LotV Multiplayer/Terran/Structures/Armory' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehicleAndShipPlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Barracks/Engineering BayGeneral' : ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Barracks/Flying' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechLabBarracks/BarracksFlying', 'Reactor/BarracksFlying', 'Land'],
'LotV Multiplayer/Terran/Structures/Barracks/General' : ['Marine/Barracks', 'Reaper/Barracks', 'Marauder/Barracks', 'Ghost/Barracks', 'SelectBuilder', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'Lift', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Bunker/Construction' : ['SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Bunker/General' : ['Stop', 'Attack', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Salvage/Bunker', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Command Center/Flying' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Land'],
'LotV Multiplayer/Terran/Structures/Command Center/General' : ['SCV', 'OrbitalCommand/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Factory/Flying' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabFactory/FactoryFlying', 'Reactor/FactoryFlying', 'Land'],
'LotV Multiplayer/Terran/Structures/Factory/General' : ['Hellion/Factory', 'WidowMine/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'HellionTank/Factory', 'Thor/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Fusion Core' : ['ResearchBattlecruiserSpecializations/FusionCore', 'ResearchBattlecruiserEnergyUpgrade/FusionCore', 'SelectBuilder', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Orbital Command' : ['SCV', 'Rally', 'CalldownMULE/OrbitalCommand', 'SupplyDrop/OrbitalCommand', 'Scan/OrbitalCommand', 'Lift', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Starport/Flying' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabStarport/StarportFlying', 'Reactor/StarportFlying', 'Land'],
'LotV Multiplayer/Terran/Structures/Starport/General' : ['VikingFighter/Starport', 'Medivac/Starport', 'Liberator/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'Lift', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Supply Depot/General' : ['SelectBuilder', 'Lower/SupplyDepot', 'Halt', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Supply Depot/Lowered' : ['Raise/SupplyDepotLowered'],
'LotV Multiplayer/Terran/Structures/Tech Lab/Attached to Factory' : ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchDrillClaws/FactoryTechLab', 'CycloneResearchLockOnDamageUpgrade/FactoryTechLab', 'Cancel'],
'LotV Multiplayer/Terran/Structures/Tech Lab/Attached to Starport' : ['ResearchHighCapacityFuelTanks/StarportTechLab', 'ResearchExplosiveShrapnelShells/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'ResearchBansheeCloak/StarportTechLab', 'BansheeSpeed/StarportTechLab', 'ResearchBallisticRange/StarportTechLab', 'Cancel'],
'LotV Multiplayer/Terran/Units/Ghost' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOnBanshee', 'CloakOff', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'ChannelSnipe/Ghost', 'EMP/Ghost', 'NukeCalldown/Ghost', 'Cancel'],
'LotV Multiplayer/Terran/Units/Liberator' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LiberatorAGMode/Liberator', 'LiberatorAAMode/Liberator'],
'LotV Multiplayer/Terran/Units/Medivac' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Heal/Medivac', 'MedivacSpeedBoost/Medivac', 'BunkerLoad', 'BunkerUnloadAll'],
'LotV Multiplayer/Terran/Units/Raven' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AutoTurret/Raven', 'PointDefenseDrone/Raven', 'HunterSeekerMissile/Raven'],
'LotV Multiplayer/Terran/Units/Reaper' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KD8Charge/Reaper'],
'LotV Multiplayer/Terran/Units/SCV/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'TerranBuild/SCV', 'TerranBuildAdvanced/SCV', 'Repair', 'Halt'],
'LotV Multiplayer/Terran/Units/Widow Mine' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WidowMineBurrow/WidowMine', 'WidowMineUnburrow/WidowMine'],
'LotV Multiplayer/Zerg/Structures/Creep Tumor' : ['BuildCreepTumorPropagate/CreepTumorBurrowed', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Hydralisk Den' : ['hydraliskspeed/HydraliskDen', 'MutateintoLurkerDen/HydraliskDen', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Lurker Den' : ['hydraliskspeed/LurkerDenMP', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Nydus Network' : ['Stop', 'SummonNydusWorm/NydusNetwork', 'Rally', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Spine Crawler/General' : ['Stop', 'Attack', 'SpineCrawlerUproot/SpineCrawler', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Spine Crawler/Uprooted' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpineCrawlerRoot/SpineCrawlerUprooted', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Spire' : ['zergflyerattack1', 'zergflyerarmor1', 'GreaterSpire/Spire', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Spore Crawler/General' : ['Stop', 'Attack', 'SporeCrawlerUproot/SporeCrawler', 'Cancel'],
'LotV Multiplayer/Zerg/Structures/Spore Crawler/Uprooted' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SporeCrawlerRoot/SporeCrawlerUprooted', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Baneling/Burrowed' : ['Attack', 'Explode/BanelingBurrowed', 'BurrowUp'],
'LotV Multiplayer/Zerg/Units/Baneling/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/Baneling', 'EnableBuildingAttack/Baneling', 'DisableBuildingAttack/Baneling', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Corruptor' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CausticSpray/Corruptor', 'BroodLord/Corruptor', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Drone/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ZergBuild/Drone', 'ZergBuildAdvanced/Drone', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Droplord/Creeping' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Droplord/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Hydralisk' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LurkerMP/Hydralisk', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Infestor/Burrowed' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestedTerrans/InfestorBurrowed', 'BurrowUp'],
'LotV Multiplayer/Zerg/Units/Infestor/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestedTerrans/Infestor', 'FungalGrowth/Infestor', 'NeuralParasite/Infestor', 'Cancel', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Larva/General' : ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Mutalisk/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'SwarmHostMP/Larva', 'Viper/Larva', 'Ultralisk/Larva', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Locust (Flying)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LocustMPFlyingSwoop/LocustMPFlying'],
'LotV Multiplayer/Zerg/Units/Lurker/Burrowed' : ['Stop', 'Attack', 'LurkerHoldFire/LurkerMPBurrowed', 'LurkerCancelHoldFire/LurkerMPBurrowed', 'LurkerBurrowUp'],
'LotV Multiplayer/Zerg/Units/Lurker/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowLurkerMP'],
'LotV Multiplayer/Zerg/Units/Overlord/Creeping (BunkerUnloadAll shouldn\'t be here)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'MorphtoOverlordTransport/Overlord', 'BunkerUnloadAll', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Overlord/General (BunkerUnloadAll shouldn\'t be here)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'MorphtoOverlordTransport/Overlord', 'BunkerUnloadAll', 'Cancel'],
'LotV Multiplayer/Zerg/Units/Overseer' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpawnChangeling/Overseer', 'Contaminate/Overseer'],
'LotV Multiplayer/Zerg/Units/Queen' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/Queen', 'MorphMorphalisk/Queen', 'Transfusion/Queen', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Ravager' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RavagerCorrosiveBile/Ravager', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Roach' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/Roach', 'BurrowDown'],
'LotV Multiplayer/Zerg/Units/Swarm Host/Burrowed' : ['Attack', 'VoidSwarmHostSpawnLocust/SwarmHostBurrowedMP', 'SwarmHostBurrowUp'],
'LotV Multiplayer/Zerg/Units/Swarm Host/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmHost/SwarmHostMP', 'SwarmHostBurrowDown'],
'LotV Multiplayer/Zerg/Units/Viper' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ViperConsume/Viper', 'FaceEmbrace/Viper', 'BlindingCloud/Viper', 'ParasiticBomb/Viper'],
'LotV Multiplayer/Zerg/Units/Zergling' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/Zergling', 'BurrowDown'],
'Coop/Protoss Story/Structures/Dark Pylon' : ['Stop', 'Attack', 'DarkPylonRecall/DarkPylon', 'Cancel'],
'Coop/Protoss Story/Structures/Shield Battery' : ['ShieldBatteryRecharge/ShieldBattery', 'ShieldBatteryStructureBarrier/ShieldBattery', 'Cancel'],
'Coop/Protoss Story/Structures/Solar Forge (Karax Commander)/General' : ['ResearchSolarEfficiencyLevel1/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'Coop/Protoss Story/Structures/Solar Forge (Karax Commander)/General (Broken)' : ['BrokenSolarForge/SolarForge'],
'Coop/Protoss Story/Structures/Warp Robotics Facility' : ['Immortal/RoboticsFacilityWarp', 'Colossus/RoboticsFacilityWarp', 'Observer/RoboticsFacilityWarp', 'MorphBackToRoboticsFacility/RoboticsFacilityWarp', 'Cancel'],
'Coop/Protoss Story/Structures/Warp Stargate' : ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Oracle/StargateWarp', 'Arbiter/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'Coop/Protoss Story/Units/Annihilator' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalShakurasShadowCannon/ImmortalShakuras'],
'Coop/Protoss Story/Units/Ascendant' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidHighTemplarPsiOrb/HighTemplarTaldarim', 'VoidHighTemplarMindBlast/HighTemplarTaldarim', 'AscendantSacrifice/HighTemplarTaldarim', 'Rally'],
'Coop/Protoss Story/Units/Blood Hunter' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidStasis/DarkTemplarTaldarim', 'Rally'],
'Coop/Protoss Story/Units/Carrier' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/CarrierAiur', 'Cancel'],
'Coop/Protoss Story/Units/Centurion (Vorazun Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidZealotShadowCharge/ZealotShakuras', 'VoidZealotShadowChargeStun/ZealotShakuras', 'Rally'],
'Coop/Protoss Story/Units/Corsair' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorsairMPDisruptionWeb/CorsairMP', 'Rally'],
'Coop/Protoss Story/Units/Dark Templar (Vorazun Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidDarkTemplarShadowFury/DarkTemplarShakuras', 'DarkTemplarShadowDash/DarkTemplarShakuras', 'VoidStasis/DarkTemplarShakuras', 'Rally'],
'Coop/Protoss Story/Units/Energizer (Karax Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryPurifier', 'EnergizerReclamation/SentryPurifier', 'VoidSentryPhasingMode/SentryPurifier', 'VoidSentryMobileMode/SentryPurifier', 'Rally'],
'Coop/Protoss Story/Units/Havoc' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TargetLock/Monitor', 'SentryTaldarimForceField/Monitor', 'Rally'],
'Coop/Protoss Story/Units/High Templar' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/HighArchonTemplar', 'HighArchonPsiStorm/HighArchonTemplar', 'ArchonAdvancedMergeSelection', 'Rally'],
'Coop/Protoss Story/Units/Immortal' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/ImmortalAiur', 'ImmortalShakurasShadowCannon/ImmortalAiur'],
'Coop/Protoss Story/Units/Mirage' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeamVoidCampaign/PhoenixPurifier', 'Cancel'],
'Coop/Protoss Story/Units/Mothership' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryBlackHole/SOAMothershipv4', 'SOAMothershipLineAttack/SOAMothershipv4', 'SOAMothershipBlink/SOAMothershipv4'],
'Coop/Protoss Story/Units/Sentinel (Karax Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ZealotPurifier', 'Rally'],
'Coop/Protoss Story/Units/Sentry' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepairDouble/SentryAiur', 'GuardianShield/SentryAiur', 'Rally'],
'Coop/Protoss Story/Units/Shadow Guard' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidShadowGuardShadowFury/VorazunShadowGuard', 'ShadowGuardBlink/VorazunShadowGuard', 'VoidStasis/VorazunShadowGuard'],
'Coop/Protoss Story/Units/Stalker' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StalkerBlinkShieldRestoreBase/StalkerShakuras', 'Rally'],
'Coop/Protoss Story/Units/Tempest' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LightningBomb/TempestPurifier', 'Rally'],
'Coop/Protoss Story/Units/Zealot (Artanis Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ZealotAiur', 'VoidZealotWhirlwind/ZealotAiur', 'Rally'],
'Coop/Protoss/Structures/Dark Shrine (Vorazun Commander)' : ['ResearchShadowFury/DarkShrine', 'ResearchShadowDash/DarkShrine', 'ResearchVoidStasis/DarkShrine', 'ResearchDarkArchonFullStartingEnergy/DarkShrine', 'ResearchDarkArchonMindControl/DarkShrine', 'Cancel'],
'Coop/Protoss/Structures/Fleet Beacon (Artanis+Vorazun Commander)' : ['AnionPulseCrystals/FleetBeacon', 'ResearchDoubleGravitonBeam/FleetBeacon', 'ResearchTempestDisintegration/FleetBeacon', 'ResearchOracleStasisWardUpgrade/FleetBeacon', 'Cancel'],
'Coop/Protoss/Structures/Forge (Karax Commander)' : ['ProtossGroundWeaponsLevel1/Forge', 'ProtossGroundArmorLevel1/Forge', 'ProtossShieldsLevel1/Forge', 'ResearchKaraxTurretRange/Forge', 'ResearchKaraxTurretAttackSpeed/Forge', 'ResearchStructureBarrier/Forge', 'Cancel'],
'Coop/Protoss/Structures/Gateway/General (Gateway)' : ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/Gateway', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'Coop/Protoss/Structures/Gateway/Warp Gate' : ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/WarpGate', 'Rally', 'MorphBackToGateway/WarpGate', 'Cancel'],
'Coop/Protoss/Structures/Nexus' : ['Probe/Nexus', 'Mothership/Nexus', 'Stop', 'Attack', 'Rally', 'TimeWarp/Nexus', 'Cancel'],
'Coop/Protoss/Structures/Robotics Bay (Artanis Commander)' : ['ResearchGraviticBooster/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'Cancel'],
'Coop/Protoss/Structures/Robotics Bay (Karax Commander)(not tested)' : ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'Cancel'],
'Coop/Protoss/Structures/Robotics Facility' : ['Immortal/RoboticsFacility', 'Colossus/RoboticsFacility', 'Observer/RoboticsFacility', 'Rally', 'UpgradeToRoboticsFacilityWarp/RoboticsFacility', 'Cancel'],
'Coop/Protoss/Structures/Stargate' : ['Phoenix/Stargate', 'VoidRay/Stargate', 'Oracle/Stargate', 'Arbiter/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'Coop/Protoss/Structures/Templar Archives (Artanis Commander)' : ['ResearchPsiStorm/TemplarArchive', 'ResearchHighTemplarEnergyUpgrade/TemplarArchive', 'ResearchHealingPsionicStorm/TemplarArchive', 'Cancel'],
'Coop/Protoss/Structures/Twilight Council (Artanis commander)' : ['ResearchCharge/TwilightCouncil', 'ResearchDragoonRange/TwilightCouncil', 'ResearchWhirlwind/TwilightCouncil', 'ResearchDragoonChassis/TwilightCouncil', 'Cancel'],
'Coop/Protoss/Units/Arbiter' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArbiterMPStasisField/ArbiterMP', 'ArbiterMPRecall/ArbiterMP', 'Rally'],
'Coop/Protoss/Units/Archon' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/Archon', 'PsiStorm/Archon', 'Rally'],
'Coop/Protoss/Units/Dark Archon' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DarkArchonConfusion/DarkArchon', 'DarkArchonMindControl/DarkArchon', 'Rally'],
'Coop/Protoss/Units/Observer' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoObserverSiege/Observer', 'MorphtoObserver/Observer'],
'Coop/Protoss/Units/Probe/Basic Structures' : ['Nexus/Probe', 'Assimilator/Probe', 'Pylon/Probe', 'Gateway/Probe', 'Forge/Probe', 'ShieldBattery/Probe', 'CyberneticsCore/Probe', 'PhotonCannon/Probe', 'KhaydarinMonolith/Probe', 'Cancel'],
'Coop/Protoss/Units/Reaver' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReaverScarabs/Reaver', 'Rally'],
'Coop/Protoss/Units/Sentry/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepair/Sentry', 'GuardianShield/Sentry', 'ForceField/Sentry', 'Rally'],
'Coop/Protoss/Units/TempestGeneral' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LightningBomb/Tempest', 'Rally'],
'Coop/Terran Story/Structures/Devastation Turret (Swann Commander)' : ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianGrenadeTurret', 'Halt', 'Cancel'],
'Coop/Terran Story/Structures/Drakken Laser Drill' : ['Attack', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'Coop/Terran Story/Structures/Perdition Turret' : ['Stop', 'Attack', 'SelectBuilder', 'Salvage/PerditionTurret', 'Halt', 'Cancel'],
'Coop/Terran Story/Structures/Spinning Dizzy' : ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianMissileTurret', 'Halt', 'Cancel'],
'Coop/Terran Story/Structures/Tech Reactor/Attached to Barracks (Raynor Commander, notAvailable)' : ['ResearchShieldWall/BarracksTechReactor', 'Stimpack/BarracksTechReactor', 'ResearchPunisherGrenades/BarracksTechReactor', 'ResearchIncineratorGauntlets/BarracksTechReactor', 'ResearchJuggernautPlating/BarracksTechReactor', 'ResearchStabilizerMedpacks/BarracksTechReactor', 'Cancel'],
'Coop/Terran Story/Structures/Tech Reactor/Attached to Factory (Swann Commander)' : ['ResearchHighCapacityBarrels/FactoryTechReactor', 'ResearchHellbatHellArmor/FactoryTechReactor', 'ResearchAresClassTargetingSystem/FactoryTechReactor', 'ResearchMultiLockWeaponsSystem/FactoryTechReactor', 'ResearchMaelstromRounds/FactoryTechReactor', 'ResearchLockOnRangeUpgrade/FactoryTechReactor', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechReactor', 'Research330mmBarrageCannon/FactoryTechReactor', 'Cancel'],
'Coop/Terran Story/Structures/Tech Reactor/Attached to Starport (Raynor(+Swann) Commander)' : ['ResearchBansheeCloak/StarportTechReactor', 'ResearchShockwaveMissileBattery/StarportTechReactor', 'ResearchPhobosClassWeaponsSystem/StarportTechReactor', 'ResearchRipwaveMissiles/StarportTechReactor', 'Cancel'],
'Coop/Terran Story/Units/Hercules (Swann Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HerculesLoad/Hercules', 'HerculesUnloadAll/Hercules', 'HyperjumpHercules/Hercules'],
'Coop/Terran Story/Units/Hyperion (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HyperionVoidCoopHyperjump/HyperionVoidCoop', 'HyperionVoidCoopYamatoCannon/HyperionVoidCoop', 'HyperionAdvancedPDD/HyperionVoidCoop'],
'Coop/Terran Story/Units/Medic' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MedicHeal/Medic'],
'Coop/Terran Story/Units/Science Vessel (Swann Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NanoRepair/ScienceVessel', 'Irradiate/ScienceVessel', 'DefensiveMatrixTarget/ScienceVessel'],
'Coop/Terran Story/Units/Spectre (Tosh framework, AI)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'MindBlast/Spectre', 'VoodooShield/Spectre', 'SpectreDomination/Spectre', 'NukeCalldown/Spectre', 'Cancel'],
'Coop/Terran Story/Units/Vulture (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/Vulture', 'SpiderMineReplenish/Vulture', 'IgniteAfterburners/Vulture', 'Cancel'],
'Coop/Terran Story/Units/Wraith (Swann Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WraithCloakOn/Wraith', 'WraithCloakOff/Wraith'],
'Coop/Terran/Structures/Armory' : ['TerranVehicleAndShipWeaponsLevel1/Armory', 'TerranVehicleAndShipPlatingLevel1/Armory', 'ResearchVehicleWeaponRange/Armory', 'ResearchRegenerativeBioSteel/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'Coop/Terran/Structures/Barracks (kinda Raynor Commander)/General (AI)' : ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Firebat/Barracks', 'Medic/Barracks', 'HireKelmorianMiners/Barracks', 'HireHammerSecurities/Barracks', 'HireDevilDogs/Barracks', 'MercReaper/Barracks', 'MercMedic/Barracks', 'Cancel'],
'Coop/Terran/Structures/Command Center/General' : ['SCV', 'VespeneDrone/CommandCenter', 'OrbitalCommand/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'Coop/Terran/Structures/Engineering Bay (Raynor Commander)' : ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'Coop/Terran/Structures/Factory/General (kinda Swann Commander)' : ['HellionTank/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'Coop/Terran/Structures/Factory/General3' : ['HellionTank/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'WidowMine/Factory', 'Thor/Factory', 'MercHellion/Factory', 'HireSpartanCompany/Factory', 'HireSiegeBreakers/Factory', 'Cancel'],
'Coop/Terran/Structures/Ghost Academy' : ['ResearchPersonalCloaking/GhostAcademy', 'ResearchGhostEnergyUpgrade/GhostAcademy', 'SelectBuilder', 'NukeArm/GhostAcademy', 'Halt', 'Cancel'],
'Coop/Terran/Structures/Missile Turret' : ['Stop', 'Attack', 'SelectBuilder', 'Salvage/MissileTurret', 'Halt', 'Cancel'],
'Coop/Terran/Structures/Planetary Fortress' : ['SCV', 'VespeneDrone/PlanetaryFortress', 'StopPlanetaryFortress/PlanetaryFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Cancel'],
'Coop/Terran/Structures/Starport/General3' : ['VikingFighter/Starport', 'Banshee/Starport', 'Wraith/Starport', 'Battlecruiser/Starport', 'HireDuskWing/Starport', 'HireHelsAngels/Starport', 'HireDukesRevenge/Starport', 'Cancel'],
'Coop/Terran/Structures/Tech Lab/Attached to Barracks (Raynor Commander)' : ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ResearchIncineratorGauntlets/BarracksTechLab', 'ResearchJuggernautPlating/BarracksTechLab', 'ResearchStabilizerMedpacks/BarracksTechLab', 'Cancel'],
'Coop/Terran/Structures/Tech Lab/Attached to Factory (Swann(+Raynor) Commander)' : ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchHellbatHellArmor/FactoryTechLab', 'ResearchAresClassTargetingSystem/FactoryTechLab', 'ResearchMultiLockWeaponsSystem/FactoryTechLab', 'ResearchMaelstromRounds/FactoryTechLab', 'ResearchLockOnRangeUpgrade/FactoryTechLab', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechLab', 'Research330mmBarrageCannon/FactoryTechLab', 'Cancel'],
'Coop/Terran/Structures/Tech Lab/Attached to Starport (Raynor(+Swann) Commander)' : ['ResearchBansheeCloak/StarportTechLab', 'ResearchShockwaveMissileBattery/StarportTechLab', 'ResearchPhobosClassWeaponsSystem/StarportTechLab', 'ResearchRipwaveMissiles/StarportTechLab', 'Cancel'],
'Coop/Terran/Units/Banshee (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOnBanshee', 'CloakOff', 'IgniteAfterburners/Banshee'],
'Coop/Terran/Units/Battlecruiser (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'Hyperjump/Battlecruiser', 'IgniteAfterburners/Battlecruiser'],
'Coop/Terran/Units/Cyclone' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LockOn/Cyclone', 'SwannCommanderRebuild', 'Cancel'],
'Coop/Terran/Units/Ghost' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOnBanshee', 'CloakOff', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'Snipe/Ghost', 'EMP/Ghost', 'NukeCalldown/Ghost', 'Cancel'],
'Coop/Terran/Units/Hellion (Swann Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellion/Hellion', 'MorphToHellionTank/Hellion', 'SwannCommanderRebuild'],
'Coop/Terran/Units/Liberator' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LiberatorAGMode/Liberator', 'IgniteAfterburners/Liberator'],
'Coop/Terran/Units/Raven' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AutoTurret/Raven', 'PointDefenseDrone/Raven', 'InstantHunterSeekerMissile/Raven'],
'Coop/Terran/Units/Reaper (WoL Campaign)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/Reaper'],
'Coop/Terran/Units/SCV/Advanced Structures' : ['GhostAcademy/SCV', 'MercCompound/SCV', 'Factory/SCV', 'Armory/SCV', 'Starport/SCV', 'FusionCore/SCV', 'Cancel'],
'Coop/Terran/Units/SCV/Basic Structures' : ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'BuildKelMorianRocketTurret/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'Coop/Terran/Units/Siege Tank/General (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'Unsiege', 'IgniteAfterburners/SiegeTank'],
'Coop/Terran/Units/Siege Tank/General (Wreckage,Swann Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'SwannCommanderRebuild'],
'Coop/Terran/Units/Thor (Swann Commander)/Front 01' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/Thor', 'ThorDefensiveMatrix/Thor', 'SelfRepair/Thor', 'Cancel'],
'Coop/Terran/Units/Thor (Swann Commander)/Front 02' : ['ImmortalityProtocol/ThorWreckage', 'Cancel'],
'Coop/Terran/Units/Thor (Swann Commander)/Front 03' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/ThorWreckageSwann', 'ThorDefensiveMatrix/ThorWreckageSwann', 'SelfRepair/ThorWreckageSwann', 'Cancel'],
'Coop/Terran/Units/Viking (Raynor Commander)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FighterMode', 'AssaultMode', 'IgniteAfterburners/VikingAssault'],
'Coop/Zerg Story/Structures/Bile Launcher (Zagara Commander)' : ['BileLauncherBombardment/BileLauncherZagara', 'Cancel'],
'Coop/Zerg Story/Structures/Impaler Den' : ['EvolveMuscularAugments/ImpalerDen', 'EvolveAncillaryCarapace/ImpalerDen', 'EvolveFrenzy/ImpalerDen', 'Cancel'],
'Coop/Zerg Story/Structures/Lurker Den' : ['EvolveMuscularAugments/LurkerDen', 'EvolveAncillaryCarapace/LurkerDen', 'EvolveFrenzy/LurkerDen', 'ResearchLurkerRange/LurkerDen', 'Cancel'],
'Coop/Zerg Story/Structures/Scourge Nest' : ['zergflyerattack1', 'zergflyerarmor1', 'EvolveScourgeSplashDamage/ScourgeNest', 'EvolveScourgeGasCostReduction/ScourgeNest'],
'Coop/Zerg Story/Units/Hydralisk (Impaler Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Impaler/HydraliskImpaler', 'HydraliskFrenzy/HydraliskImpaler', 'BurrowDown'],
'Coop/Zerg Story/Units/Hydralisk (Lurker Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Lurker/HydraliskLurker', 'HydraliskFrenzy/HydraliskLurker', 'BurrowDown'],
'Coop/Zerg Story/Units/Kerrigan/Burrowed' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'KerriganVoidCoopEconDrop/K5KerriganBurrowed', 'KerriganVoidCoopCrushingGripWave/K5KerriganBurrowed', 'BurrowUp'],
'Coop/Zerg Story/Units/Kerrigan/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'KerriganVoidCoopEconDrop/K5Kerrigan', 'KerriganVoidCoopCrushingGripWave/K5Kerrigan', 'BurrowDown'],
'Coop/Zerg Story/Units/Lurker (Burrowed)' : ['Stop', 'Attack', 'LurkerHoldFire/LurkerBurrowed', 'LurkerCancelHoldFire/LurkerBurrowed', 'LurkerBurrowUp'],
'Coop/Zerg Story/Units/Mutalisk (Brood Lord Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BroodLord/MutaliskBroodlord'],
'Coop/Zerg Story/Units/Mutalisk (Viper Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Viper/MutaliskViper'],
'Coop/Zerg Story/Units/Scourge/Building Attack Enabled' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'DisableBuildingAttackScourge/Scourge'],
'Coop/Zerg Story/Units/Scourge/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'EnableBuildingAttackScourge/Scourge'],
'Coop/Zerg Story/Units/Ultralisk (Noxious Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PoisonNova/HotSNoxious', 'BurrowChargeCampaignNoxious/HotSNoxious', 'BurrowDown'],
'Coop/Zerg Story/Units/Zagara/Burrowed' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoopBurrowed', 'MassRoachDrop/ZagaraVoidCoopBurrowed', 'BurrowUp'],
'Coop/Zerg Story/Units/Zagara/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoop', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoop', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoop', 'MassRoachDrop/ZagaraVoidCoop', 'BurrowDown'],
'Coop/Zerg/Structures/Baneling Nest (Zagara Commander)' : ['EvolveCentrificalHooks/BanelingNest', 'EvolveBanelingCorrosiveBile/BanelingNest', 'EvolveBanelingRupture/BanelingNest', 'EvolveBanelingHeal/BanelingNest', 'Rally', 'ZagaraVoidCoopBanelingSpawner/BanelingNest', 'Cancel'],
'Coop/Zerg/Structures/Evolution Chamber (Kerrigan+Zagara Commander)' : ['zergmeleeweapons1/EvolutionChamber', 'zergmissileweapons1/EvolutionChamber', 'zerggroundarmor1/EvolutionChamber', 'EvolveKerriganHeroicFortitude/EvolutionChamber', 'EvolveK5ChainLightning/EvolutionChamber', 'EvolveK5Cooldowns/EvolutionChamber', 'Cancel'],
'Coop/Zerg/Structures/Greater Spire' : ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/GreaterSpire', 'EvolveViciousGlaive/GreaterSpire', 'EvolveSunderingGlave/GreaterSpire', 'EvolveBroodLordSpeed/GreaterSpire', 'Cancel'],
'Coop/Zerg/Structures/Hatchery' : ['Larva', 'QueenCoop', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'Coop/Zerg/Structures/Hive' : ['Larva', 'QueenCoop', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'Coop/Zerg/Structures/Hydralisk Den (Kerrigan Commander)' : ['EvolveMuscularAugments/HydraliskDen', 'EvolveAncillaryCarapace/HydraliskDen', 'EvolveFrenzy/HydraliskDen', 'ResearchLurkerRange/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'Coop/Zerg/Structures/Infestation Pit' : ['EvolveInfestorEnergyUpgrade/InfestationPit', 'RapidIncubation/InfestationPit', 'HotSPressurizedGlands/InfestationPit', 'Cancel'],
'Coop/Zerg/Structures/Lair' : ['Larva', 'QueenCoop', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'Coop/Zerg/Structures/Nydus Network (Kerrigan Commander)' : ['Stop', 'ZagaraVoidCoopNydusWorm/NydusNetwork', 'Rally', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'Coop/Zerg/Structures/Roach Warren (Kerrigan Commander)' : ['EvolveGlialRegeneration/RoachWarren', 'EvolveTunnelingClaws/RoachWarren', 'EvolveHydriodicBile/RoachWarren', 'EvolveAdaptivePlating/RoachWarren', 'Cancel'],
'Coop/Zerg/Structures/Spawning Pool (Zagara Commander)' : ['zerglingmovementspeed/SpawningPool', 'EvolveHardenedCarapace/SpawningPool', 'zerglingattackspeed/SpawningPool', 'EvolveZerglingArmorShred/SpawningPool', 'EvolveBileLauncherIncreasedRange/SpawningPool', 'EvolveBileLauncherBombardmentCooldown/SpawningPool', 'Cancel'],
'Coop/Zerg/Structures/Spire' : ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveBroodLordSpeed/Spire', 'GreaterSpireBroodlord/Spire', 'Cancel'],
'Coop/Zerg/Structures/Ultralisk Cavern (Kerrigan Commander)' : ['EvolveChitinousPlating/UltraliskCavern', 'EvolveBurrowCharge/UltraliskCavern', 'EvolveTissueAssimilation/UltraliskCavern', 'Cancel'],
'Coop/Zerg/Units/Corruptor' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorruptionAbility/Corruptor', 'BroodLord/Corruptor', 'Cancel'],
'Coop/Zerg/Units/Drone/Advanced Structures (Zagara+Kerrigan Commander)' : ['HydraliskDen/Drone', 'InfestationPit/Drone', 'Spire/Drone', 'NydusNetwork/Drone', 'UltraliskCavern/Drone', 'ScourgeNest/Drone', 'Cancel'],
'Coop/Zerg/Units/Drone/Basic Structures (Zagara+Kerrigan Commander)' : ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'BanelingNest/Drone', 'RoachWarren/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
'Coop/Zerg/Units/Hydralisk' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/Hydralisk', 'BurrowDown'],
'Coop/Zerg/Units/Larva/General' : ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'SwarmHostMP/Larva', 'Mutalisk/Larva', 'Brutalisk/Larva', 'Cancel'],
'Coop/Zerg/Units/Larva/Swarm Queen Egg' : ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'Coop/Zerg/Units/Overlord/General (Creeping)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep/Overlord', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'Coop/Zerg/Units/Overseer' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoOverseerSiege/Overseer', 'MorphtoOverseer/Overseer'],
'Coop/Zerg/Units/Queen' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/QueenCoop', 'MorphMorphalisk/QueenCoop', 'Transfusion/QueenCoop', 'BurrowDown'],
'Coop/Zerg/Units/Swarm Host/Burrowed' : ['Attack', 'SetRallyPointSwarmHost/SwarmHostBurrowedMP', 'SwarmHost/SwarmHostBurrowedMP', 'SwarmHostBurrowUp'],
'Coop/Zerg/Units/Ultralisk' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowChargeCampaign/Ultralisk', 'BurrowDown'],
'Coop/Zerg/Units/Viper' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FaceEmbrace/Viper', 'DisablingCloud/Viper', 'ViperConsumption/Viper'],
'LotV Campaign/Protoss Story/Structures/Warp Stargate' : ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Carrier/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'LotV Campaign/Protoss Story/Units/Alarak' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AlarakKnockback/AlarakChampion', 'AlarakDeadlyCharge/AlarakChampion', 'Rally'],
'LotV Campaign/Protoss Story/Units/Artanis/Extra' : ['ArtanisChannel/ArtanisVoid', 'ArtanisChannelOff/ArtanisVoid'],
'LotV Campaign/Protoss Story/Units/Artanis/Hero Zealot' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArtanisLightningDash/ArtanisVoid', 'ArtanisAstralWind/ArtanisVoid', 'Rally'],
'LotV Campaign/Protoss Story/Units/Artanis/Mothership' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MassRecall/Artanis', 'Vortex/Artanis'],
'LotV Campaign/Protoss Story/Units/Fenix/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FenixSOACharge/FenixChampion', 'FenixWhirlwind/FenixChampion', 'VoidShieldCapacitor/FenixChampion', 'Rally'],
'LotV Campaign/Protoss Story/Units/Fenix/SOA Calldown' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FenixSOACharge/FenixSOA', 'FenixWhirlwind/FenixSOA', 'Rally'],
'LotV Campaign/Protoss Story/Units/Karax' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Reclamation/KaraxChampion', 'PhaseCannon/KaraxChampion', 'Rally'],
'LotV Campaign/Protoss Story/Units/Vorazun' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VorazunBlink/VorazunChampion', 'MohandarOmnislash/VorazunChampion', 'Rally'],
'LotV Campaign/Protoss Story/Units/Zeratul/Aiur 01' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/ZeratulVoidAiur01', 'PrologueVoidArmor/ZeratulVoidAiur01', 'ShadowBlade/ZeratulVoidAiur01', 'Rally'],
'LotV Campaign/Protoss Story/Units/Zeratul/Void' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/ZeratulVoid', 'ZeratulStun/ZeratulVoid', 'Rally'],
'LotV Campaign/Protoss/Structues/Cybernetics Core' : ['ProtossAirWeaponsLevel1/CyberneticsCore', 'ProtossAirArmorLevel1/CyberneticsCore', 'ResearchHallucination/CyberneticsCore', 'ResearchWarpGate/CyberneticsCore', 'Cancel'],
'LotV Campaign/Protoss/Structues/Stargate' : ['Phoenix/Stargate', 'VoidRay/Stargate', 'Carrier/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'LotV Campaign/Protoss/Structues/Twilight Council' : ['ResearchCharge/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampion/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil'],
'LotV Campaign/Terran Story/Units/Egon Stetmann' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BonesHeal/Stetmann'],
'LotV Campaign/Terran Story/Units/Gabriel Tosh' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBlast/Tosh', 'VoodooShield/Tosh', 'Consumption/Tosh', 'HeroNukeCalldown/Tosh'],
'LotV Campaign/Terran Story/Units/Hive Mind Emulator' : ['MindControl/HiveMindEmulator', 'Cancel'],
'LotV Campaign/Terran Story/Units/Hyperion' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SJHyperionFightersRecall/SJHyperion', 'SJHyperionBlink/SJHyperion', 'SJHyperionFighters/SJHyperion', 'SJHyperionYamato/SJHyperion', 'SJHyperionLightningStorm/SJHyperion'],
'LotV Campaign/Terran Story/Units/Jim Raynor/Castanar' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PlantC4Charge/Raynor', 'TossGrenade/Raynor', 'ExperimentalPlasmaGun/Raynor', 'TheMorosDevice/Raynor'],
'LotV Campaign/Terran Story/Units/Jim Raynor/Char' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RaynorSnipe/RaynorCommando'],
'LotV Campaign/Terran Story/Units/Nova' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NovaSnipe/Nova', 'Domination/Nova', 'ReleaseMinion/Nova', 'HeroNukeCalldown/Nova', 'Cancel'],
'LotV Campaign/Terran Story/Units/Rory Swann' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DutchPlaceTurret/Swann'],
'LotV Campaign/Terran Story/Units/Spectre/Cloaked' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'UltrasonicPulse/Spectre', 'Obliterate/Spectre', 'CloakOff', 'SpectreNukeCalldown/Spectre', 'Cancel'],
'LotV Campaign/Terran Story/Units/Spectre/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'UltrasonicPulse/Spectre', 'Obliterate/Spectre', 'CloakOnBanshee', 'SpectreNukeCalldown/Spectre', 'Cancel'],
'LotV Campaign/Terran Story/Units/Tech Reactor/Attached to Barracks' : ['ResearchShieldWall/BarracksTechReactor', 'Stimpack/BarracksTechReactor', 'ReaperSpeed/BarracksTechReactor', 'Cancel'],
'LotV Campaign/Terran Story/Units/Tech Reactor/Attached to Factory' : ['ResearchHighCapacityBarrels/FactoryTechReactor', 'ResearchSiegeTech/FactoryTechReactor', 'Cancel'],
'LotV Campaign/Terran Story/Units/Tech Reactor/Attached to Starport' : ['ResearchMedivacEnergyUpgrade/StarportTechReactor', 'ResearchBansheeCloak/StarportTechReactor', 'ResearchRavenEnergyUpgrade/StarportTechReactor', 'WraithCloak/StarportTechReactor', 'ResearchDurableMaterials/StarportTechReactor', 'ResearchSeekerMissile/StarportTechReactor', 'Cancel'],
'LotV Campaign/Terran Story/Units/Tychus Findlay' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TossGrenadeTychus/TychusCommando'],
'LotV Campaign/Terran/Structures/Factory/AI Mess 02' : ['Hellion/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Thor/Factory', 'MercHellion/Factory', 'HireSpartanCompany/Factory', 'HireSiegeBreakers/Factory', 'Cancel'],
'LotV Campaign/Terran/Structures/Factory/General' : ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'LotV Campaign/Terran/Structures/Tech Lab/Attached to Factory' : ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchSiegeTech/FactoryTechLab', 'ResearchStrikeCannons/FactoryTechLab', 'Cancel'],
'LotV Campaign/Terran/Structures/Tech Lab/Attached to Starport' : ['ResearchMedivacEnergyUpgrade/StarportTechLab', 'ResearchDurableMaterials/StarportTechLab', 'ResearchSeekerMissile/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'ResearchBansheeCloak/StarportTechLab', 'Cancel'],
'LotV Campaign/Zerg Story/Units/Alexei Stukov' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StukovBossBlast/InfestedStukov', 'DevastatingShot/InfestedStukov', 'StukovInfestedTerrans/InfestedStukov', 'StukovCrystalChannel/InfestedStukov'],
'LotV Campaign/Zerg Story/Units/Dehaka' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/Dehaka', 'DehakaMirrorImage/Dehaka', 'DehakaHeal/Dehaka', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Dehaka Spawn' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/DehakaMirrorImage', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Impaler/Burrowed' : ['Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImpalerBurrowUp'],
'LotV Campaign/Zerg Story/Units/Impaler/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImpalerBurrowDown'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Burrowed' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'WildMutation/K5KerriganBurrowed', 'K5Leviathan/K5KerriganBurrowed', 'BurrowUp'],
'LotV Campaign/Zerg Story/Units/Kerrigan/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'WildMutation/K5Kerrigan', 'K5Leviathan/K5Kerrigan', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Kerrigan - Empowered' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganEpilogue03QuantumRay/KerriganEpilogue03', 'KerriganEpilogue03Heal/KerriganEpilogue03', 'KerriganEpilogue03CreepTeleport/KerriganEpilogue03', 'KerriganEpilogue03Extinction/KerriganEpilogue03', 'Cancel'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Kerrigan - Ulnar' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganVoidKineticBlast/KerriganVoidUlnar02', 'KerriganVoidSpawnBanelings/KerriganVoidUlnar02', 'KerriganVoidApocalypse/KerriganVoidUlnar02'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Kerrigan - Void' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/KerriganVoid', 'PsionicLift/KerriganVoid', 'WildMutation/KerriganVoid', 'K5Leviathan/KerriganVoid', 'Cancel'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Kerrigan - Void - Burrowed' : ['MindBolt/KerriganVoidBurrowed', 'PsionicLift/KerriganVoidBurrowed', 'WildMutation/KerriganVoidBurrowed', 'K5Leviathan/KerriganVoidBurrowed', 'BurrowUp'],
'LotV Campaign/Zerg Story/Units/Kerrigan/Umoja Missions' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/KerriganGhostLab', 'PsionicLift/KerriganGhostLab'],
'LotV Campaign/Zerg Story/Units/Niadra/Larva' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ParasiticInvasion/LarvalQueen', 'GrowSwarmQueen/LarvalQueen'],
'LotV Campaign/Zerg Story/Units/Niadra/Stage 1' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenZergling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Niadra/Stage 2' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Niadra/Stage 3' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'LotV Campaign/Zerg Story/Units/Queen' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'QueenClassicParasite/QueenClassic', 'QueenMPEnsnare/QueenClassic', 'QueenMPSpawnBroodlings/QueenClassic', 'CreepTumor/QueenClassic'],
'LotV Campaign/Zerg/Structures/Hatchery' : ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'LotV Campaign/Zerg/Structures/Hive' : ['Larva', 'Queen', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'LotV Campaign/Zerg/Structures/Hydralisk Den' : ['hydraliskspeed/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'LotV Campaign/Zerg/Structures/Lair' : ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'LotV Campaign/Zerg/Units/Infestor/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FungalGrowth/Infestor', 'InfestedTerrans/Infestor', 'InfestorConsumption/Infestor', 'Cancel', 'BurrowDown'],
'LotV Campaign/Zerg/Units/Queen' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/Queen', 'QueenBurstHeal/Queen', 'MorphMorphalisk/Queen', 'DeepTunnel/Queen', 'BurrowDown'],
'LotV Prologue/Protoss Story/Units/Selendis (WoL Protoss Missions)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Selendis', 'Cancel'],
'LotV Prologue/Protoss Story/Units/Urun (WoL Protoss Missions)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Urun', 'Rally'],
'LotV Prologue/Protoss Story/Units/Zeratul (LotV Prologue)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/PrologueZeratul', 'PrologueVoidArmor/PrologueZeratul', 'ShadowBlade/PrologueZeratul', 'Rally'],
'LotV Prologue/Protoss Story/Units/Zeratul (WoL Protoss Missions)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZeratulBlink/Zeratul', 'ZeratulStun/Zeratul', 'Rally'],
'LotV Prologue/Protoss/Units/Mothership' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MassRecall/Mothership', 'Vortex/Mothership'],
'LotV Prologue/Protoss/Units/Oracle' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSiphon/Oracle', 'OracleRevelation/Oracle', 'ResourceStun/Oracle', 'Cancel'],
'LotV Prologue/Protoss/Units/Probe/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'GasCanisterGather/Probe', 'ProtossBuild/Probe', 'ProtossBuildAdvanced/Probe'],
'LotV Prologue/Protoss/Units/Shadow of the Void (Stalker)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Blink/ShadowOfTheVoidStalker', 'Rally'],
'LotV Prologue/Protoss/Units/Shadow of the Void (Zealot)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ShadowOfTheVoidZealot', 'Rally'],
'LotV Prologue/Terran Story/Units/Merc Compound' : ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'HireDukesRevenge/MercCompound', 'MercMedic/MercCompound', 'ReaperSpeed/MercCompound', 'MercHellion/MercCompound', 'MercReaper/MercCompound', 'Rally', 'Halt', 'Cancel'],
'LotV Prologue/Terran/Structures/Armory' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'LotV Prologue/Terran/Structures/Barracks/General' : ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'SelectBuilder', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Lift', 'Cancel'],
'LotV Prologue/Terran/Structures/Factory/AI Mess 01' : ['Vulture/Factory', 'Predator/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'MicroBot/Factory', 'Thor/Factory', 'Hellion/Factory', 'Cancel'],
'LotV Prologue/Terran/Structures/Factory/General' : ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'LotV Prologue/Terran/Structures/Starport/General' : ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'LotV Prologue/Terran/Structures/Tech Lab/Attached to Barracks' : ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ReaperSpeed/BarracksTechLab', 'Cancel'],
'LotV Prologue/Terran/Units/Warhound' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TornadoMissile/WarHound'],
'LotV Prologue/Zerg/Structures/Hatchery' : ['Larva', 'Queen', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'LotV Prologue/Zerg/Structures/Lair' : ['Larva', 'Queen', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'HotS Campaign/Protoss/Units/Fleet Beacon' : ['ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'OracleEnergyUpgrade/FleetBeacon', 'TempestRangeUpgrade/FleetBeacon', 'Cancel'],
'HotS Campaign/Protoss/Units/Stargate' : ['Phoenix/Stargate', 'VoidRay/Stargate', 'Carrier/Stargate', 'Oracle/Stargate', 'Tempest/Stargate', 'WarpInScout/Stargate', 'Rally', 'Cancel'],
'HotS Campaign/Terran/Structures/Barracks/General (non-constructing)' : ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Ghost/Barracks', 'Medic/Barracks', 'Firebat/Barracks', 'Spectre/Barracks', 'MengskUnits/Barracks', 'Rally', 'TechLabBarracks/Barracks', 'Reactor/Barracks', 'TechReactorAI/Barracks', 'Lift', 'Cancel'],
'HotS Campaign/Terran/Structures/Factory/General (non-constructing)' : ['Hellion/Factory', 'SiegeTank/Factory', 'WarHound/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'HotS Campaign/Terran/Structures/Starport/General' : ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'HotS Campaign/Terran/Structures/Starport/General (non-constructing)' : ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'CampaignVehicles', 'MengskUnits/Starport', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'HotS Campaign/Zerg Story/Units/Giant Ursadon (Enemy Within Mission)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Consume/GiantYeti', 'GiantYetiLeap/GiantYeti'],
'HotS Campaign/Zerg Story/Units/Lyote (Enemy Within Mission)' : ['Stop', 'Consume/Lyote'],
'HotS Campaign/Zerg/Units/Baneling (Hunter Strain)/Burrowed' : ['Explode/HotSHunterBurrowed', 'BurrowUp'],
'HotS Campaign/Zerg/Units/Baneling (Hunter Strain)/Enabled Building Attack' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSHunter', 'DisableBuildingAttack/HotSHunter', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Baneling (Hunter Strain)/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSHunter', 'EnableBuildingAttack/HotSHunter', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Baneling (Splitter Strain)/Enabled Building Attack' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'DisableBuildingAttack/HotSSplitterlingBig', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Baneling (Splitter Strain)/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'EnableBuildingAttack/HotSSplitterlingBig', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Baneling (Splitter Strain,split)/Enabled Building Attack' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'DisableBuildingAttackSplitterling/HotSSplitterlingBig', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Baneling (Splitter Strain,split)/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSSplitterlingBig', 'EnableBuildingAttackSplitterling/HotSSplitterlingBig', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Infestor' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FungalGrowth/Infestor', 'NPSwarm/Infestor', 'InfestorConsumption/Infestor', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Swarm Host (Carrion Strain)/Burrowed' : ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitABurrowed', 'RapidIncubation/SwarmHostSplitBBurrowed', 'SwarmHostUprootUnburrow'],
'HotS Campaign/Zerg/Units/Swarm Host (Carrion Strain)/General (Burrow)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'SwarmHostRootBurrow'],
'HotS Campaign/Zerg/Units/Swarm Host (Carrion Strain)/General (Rapid Incubation)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'SwarmHostRoot'],
'HotS Campaign/Zerg/Units/Swarm Host (Carrion Strain)/Rooted (Rapid Incubation)' : ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitARooted', 'RapidIncubation/SwarmHostSplitARooted', 'SwarmHostUproot'],
'HotS Campaign/Zerg/Units/Swarm Host (Creeper Strain)/Burrowed' : ['Stop', 'Attack', 'LocustLaunchCreeper/SwarmHostSplitBBurrowed', 'SwarmHostDeepBurrow/SwarmHostSplitBBurrowed', 'RapidIncubation/SwarmHostSplitBBurrowed', 'SwarmHostUprootUnburrow'],
'HotS Campaign/Zerg/Units/Swarm Host (Creeper Strain)/General (Burrow)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRootBurrow'],
'HotS Campaign/Zerg/Units/Swarm Host (Creeper Strain)/General (Rapid Incubation)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRoot'],
'HotS Campaign/Zerg/Units/Swarm Host (Creeper Strain)/Rooted (Rapid Incubation)' : ['Stop', 'Attack', 'LocustLaunchCreeper/SwarmHostSplitBRooted', 'SwarmHostDeepBurrow/SwarmHostSplitBRooted', 'RapidIncubation/SwarmHostSplitBRooted', 'SwarmHostUproot'],
'HotS Campaign/Zerg/Units/Swarm Host/Burrowed' : ['Stop', 'Attack', 'LocustLaunch/SwarmHostBurrowed', 'RapidIncubation/SwarmHostBurrowed', 'SwarmHostUprootUnburrow'],
'HotS Campaign/Zerg/Units/Swarm Host/General (Burrow)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHost', 'SwarmHostRootBurrow'],
'HotS Campaign/Zerg/Units/Swarm Host/General (Rapid Incubation)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHost', 'SwarmHostRoot'],
'HotS Campaign/Zerg/Units/Swarm Host/Rooted (Rapid Incubation)' : ['Stop', 'Attack', 'LocustLaunch/SwarmHostRooted', 'RapidIncubation/SwarmHostRooted', 'SwarmHostUproot'],
'HotS Campaign/Zerg/Units/Ultralisk (Torrasque)/Burrowed' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TorrasqueChrysalis/HotSTorrasqueBurrowed', 'BurrowUp'],
'HotS Campaign/Zerg/Units/Ultralisk (Torrasque)/General' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowChargeCampaign/HotSTorrasque', 'TorrasqueChrysalis/HotSTorrasque', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Zergling (Raptor Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/HotSRaptor', 'BurrowDown'],
'HotS Campaign/Zerg/Units/Zergling (Swarmling Strain)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/HotSSwarmling', 'BurrowDown'],
'WoL Campaign/Protoss/Structues/Fleet Beacon' : ['ResearchVoidRaySpeedUpgrade/FleetBeacon', 'ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'Cancel'],
'WoL Campaign/Terran Story/Structues/Merc Compound' : ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'SelectBuilder', 'Rally', 'HireDukesRevenge/MercCompound', 'Halt', 'Cancel'],
'WoL Campaign/Terran Story/Structues/Shadow Ops' : ['SelectBuilder', 'SpectreNukeArm/GhostAcademy', 'Halt', 'Cancel'],
'WoL Campaign/Terran Story/Units/Jackson\'s Revenge' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/DukesRevenge', 'DefensiveMatrix/DukesRevenge'],
'WoL Campaign/Terran Story/Units/Odin' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OdinBarrage/Odin', 'OdinNukeCalldown/Odin', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 1/1' : ['TerranVehicleWeaponsUltraCapacitorsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 1/2' : ['TerranVehicleWeaponsUltraCapacitorsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 1/3' : ['TerranVehicleWeaponsUltraCapacitorsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 2/1' : ['TerranVehicleWeaponsUltraCapacitorsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 2/2' : ['TerranVehicleWeaponsUltraCapacitorsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 2/3' : ['TerranVehicleWeaponsUltraCapacitorsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 3/1' : ['TerranVehicleWeaponsUltraCapacitorsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 3/2' : ['TerranVehicleWeaponsUltraCapacitorsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Ultra Capacitors, Vehicle/Ship: 3/3' : ['TerranVehicleWeaponsUltraCapacitorsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsUltraCapacitorsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 1/1' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 1/2' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 1/3' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 2/1' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 2/2' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 2/3' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 3/1' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 3/2' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Armory/Vanadium Plating, Vehicle/Ship: 3/3' : ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingVanadiumPlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingVanadiumPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Barracks/Flying (Tech Reactor)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactor/BarracksFlying', 'Land'],
'WoL Campaign/Terran/Structures/Command Center/General (Orbital Relay)' : ['SCV', 'UpgradeToPlanetaryFortress/CommandCenter', 'Scan/CommandCenter', 'CalldownMULE/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Ultra Capacitors level 1' : ['TerranInfantryWeaponsUltraCapacitorsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Ultra Capacitors level 2' : ['TerranInfantryWeaponsUltraCapacitorsLevel2/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Ultra Capacitors level 3' : ['TerranInfantryWeaponsUltraCapacitorsLevel3/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Vanadium Plating level 1' : ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorVanadiumPlatingLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Vanadium Plating level 2' : ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorVanadiumPlatingLevel2/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Engineering Bay/Vanadium Plating level 3' : ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorVanadiumPlatingLevel3/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'WoL Campaign/Terran/Structures/Factory/Flying (Tech Reactor)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactor/FactoryFlying', 'Land'],
'WoL Campaign/Terran/Structures/Factory/General' : ['Hellion/Factory', 'SiegeTank/Factory', 'Thor/Factory', 'Predator/Factory', 'Vulture/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'WoL Campaign/Terran/Structures/Starport/Flying (Tech Reactor)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactor/StarportFlying', 'Land'],
'WoL Campaign/Terran/Structures/Starport/General' : ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'BuildHercules/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'WoL Campaign/Terran/Units/Battlecruiser' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/Battlecruiser', 'DefensiveMatrix/Battlecruiser'],
'WoL Campaign/Terran/Units/SCV/Basic Structures' : ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'WoL Campaign/Terran/Units/SCV/Basic Structures (Orbital Relay purchased)' : ['CommandCenterOrbRelay/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'WoL Campaign/Zerg/Structures/Infestation Pit' : ['EvolvePeristalsis/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'Cancel'],
'WoL Campaign/Zerg/Structures/Ultralisk Cavern' : ['EvolveAnabolicSynthesis2/UltraliskCavern', 'EvolveChitinousPlating/UltraliskCavern', 'Cancel'],
'WoL Campaign/Zerg/Units/Larva/General' : ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Scourge/Larva', 'Ultralisk/Larva', 'SwarmHostMP/Larva', 'Mutalisk/Larva', 'Cancel'],
'HotS Multiplayer/Protoss/Units/Oracle' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OracleRevelation/Oracle', 'LightofAiur/Oracle', 'OracleWeaponOn/Oracle', 'OracleWeaponOff/Oracle', 'Cancel'],
'HotS Multiplayer/Terran/Units/Thor' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArmorpiercingMode', 'ExplosiveMode', 'Cancel'],
'HotS Multiplayer/Zerg/Structures/Hydralisk Den' : ['hydraliskspeed/HydraliskDen', 'MuscularAugments/HydraliskDen', 'Cancel'],
'HotS Multiplayer/Zerg/Structures/Infestation Pit' : ['EvolveInfestorEnergyUpgrade/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'EvolveFlyingLocusts/InfestationPit', 'Cancel'],
'Left2Die/Terran Story/Structures/Science Facility' : ['ResearchMedic/ScienceFacility', 'ResearchFirebat/ScienceFacility', 'ResearchReaper/ScienceFacility', 'ResearchHellion/ScienceFacility', 'ResearchGoliath/ScienceFacility', 'ResearchSiegeTank/ScienceFacility', 'ResearchBunkerUpgrade/ScienceFacility', 'ResearchPerditionTurret/ScienceFacility', 'ResearchFireSuppression/ScienceFacility', 'ResearchTechReactor/ScienceFacility'],
'Left2Die/Terran Story/Units/Death Head (Reaper Merc)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/MercReaper'],
'Left2Die/Terran Story/Units/Devil Dog (Firebat Merc)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'IncineratorNozzles/DevilDog', 'StimFirebat/DevilDog'],
'Left2Die/Terran Story/Units/Firebat' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'IncineratorNozzles/Firebat', 'StimFirebat/Firebat'],
'Left2Die/Terran Story/Units/Hammer Securities (Marauder Merc)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Stim', 'JackhammerConcussionGrenade/HammerSecurity'],
'Left2Die/Terran Story/Units/Skibi\'s Angels (Merc Medic)' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MercMedicHeal/MercMedic'],
'Left2Die/Terran/Structures/Tech Lab/Attached to Barracks' : ['Stimpack/BarracksTechLab', 'ResearchJackhammerConcussionGrenade/BarracksTechLab', 'ResearchStabilizerMedPacks/BarracksTechLab', 'ResearchIncineratorNozzles/BarracksTechLab', 'ResearchG4Charge/BarracksTechLab', 'Cancel'],
'Left2Die/Terran/Structures/Tech Lab/Attached to Factory' : ['ResearchCerberusMines/FactoryTechLab', 'ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchMultiLockTargetingSystem/FactoryTechLab', 'ResearchShapedBlast/FactoryTechLab', 'ResearchRegenerativeBioSteel/FactoryTechLab', 'Cancel'],
'Left2Die/Terran/Units/Marauder' : ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Stim', 'JackhammerConcussionGrenade/Marauder']}
# This file is generated by a script.
CONFLICT_CHECKS_NEW = {'alliedcommanders/AbathurLavaWorm': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YagdraFirebreath/AbathurLavaWorm', 'YagdraFireball/AbathurLavaWorm', 'YagdraTunnel/AbathurLavaWorm'],
'alliedcommanders/AmonAetherMawEpilogue03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AetherMawAetherStorm/AmonAetherMawEpilogue03'],
'alliedcommanders/ArbiterMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArbiterMPStasisField/ArbiterMP', 'ArbiterMPRecall/ArbiterMP', 'Rally'],
'alliedcommanders/ArchAngelCoopAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArchAngelCoopMissileShot/ArchAngelCoopAssault', 'ArchAngelCoopRepel/ArchAngelCoopAssault', 'FighterMode'],
'alliedcommanders/ArchAngelCoopFighter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArchAngelCoopBombardment/ArchAngelCoopAssault', 'AssaultMode'],
'alliedcommanders/Archon': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/Archon', 'Feedback/Archon', 'PsiStorm/Archon', 'Rally'],
'alliedcommanders/Armory': ['TerranVehicleAndShipWeaponsLevel1/Armory', 'TerranVehicleAndShipPlatingLevel1/Armory', 'ResearchVehicleWeaponRange/Armory', 'ResearchRegenerativeBioSteel/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'alliedcommanders/Artanis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MassRecall/Artanis', 'Vortex/Artanis'],
'alliedcommanders/BanelingNest': ['EvolveCentrificalHooks/BanelingNest', 'EvolveBanelingCorrosiveBile/BanelingNest', 'EvolveBanelingRupture/BanelingNest', 'EvolveBanelingHeal/BanelingNest', 'Rally', 'ZagaraVoidCoopBanelingSpawner/BanelingNest', 'Cancel'],
'alliedcommanders/Banshee': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOnBanshee', 'CloakOff', 'IgniteAfterburners/Banshee'],
'alliedcommanders/BarracksTechLab 0': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ResearchIncineratorGauntlets/BarracksTechLab', 'ResearchJuggernautPlating/BarracksTechLab', 'ResearchStabilizerMedpacks/BarracksTechLab', 'Cancel'],
'alliedcommanders/BarracksTechLab 1': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ResearchReaperSpiderMines/BarracksTechLab', 'ResearchJuggernautPlating/BarracksTechLab', 'ResearchStabilizerMedpacks/BarracksTechLab', 'Cancel'],
'alliedcommanders/BarracksTechReactor': ['ResearchShieldWall/BarracksTechReactor', 'Stimpack/BarracksTechReactor', 'ResearchPunisherGrenades/BarracksTechReactor', 'ResearchIncineratorGauntlets/BarracksTechReactor', 'ResearchJuggernautPlating/BarracksTechReactor', 'ResearchStabilizerMedpacks/BarracksTechReactor', 'Cancel'],
'alliedcommanders/Battlecruiser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'Hyperjump/Battlecruiser', 'IgniteAfterburners/Battlecruiser'],
'alliedcommanders/BileLauncherZagara': ['BileLauncherBombardment/BileLauncherZagara', 'Cancel'],
'alliedcommanders/Brutalisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SymbioteCarapace/Brutalisk', 'BrutaliskDeepTunnel/Brutalisk', 'BurrowDown'],
'alliedcommanders/Colossus (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchExtendedThermalLance/Colossus'],
'alliedcommanders/ColossusPurifier (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchExtendedThermalLance/ColossusPurifier'],
'alliedcommanders/CommandCenter 0': ['SCV', 'VespeneDrone/CommandCenter', 'OrbitalCommand/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'alliedcommanders/CommandCenter 1': ['SCV', 'VespeneDrone/CommandCenter', 'OrbitalCommand/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'alliedcommanders/CommandCenter 2': ['SCV', 'VespeneDrone/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'alliedcommanders/CommandCenter 3': ['SCV', 'VespeneDrone/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'alliedcommanders/CreepColony': ['SunkenColony/CreepColony', 'SporeColony/CreepColony', 'Cancel'],
'alliedcommanders/CreepTumorBurrowed': ['ZagaraVoidCoopCreepMaster/CreepTumorBurrowed', 'Cancel'],
'alliedcommanders/CycloneWreckage 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LockOn/Cyclone', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/CycloneWreckage 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LockOnUpgraded/Cyclone', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/DarkPylonOvercharged': ['Stop', 'Attack', 'DarkPylonRecall/DarkPylon', 'Cancel'],
'alliedcommanders/DarkShrine': ['ResearchShadowFury/DarkShrine', 'ResearchShadowDash/DarkShrine', 'ResearchVoidStasis/DarkShrine', 'ResearchDarkArchonFullStartingEnergy/DarkShrine', 'ResearchDarkArchonMindControl/DarkShrine', 'Cancel'],
'alliedcommanders/DarkTemplarShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidDarkTemplarShadowFury/DarkTemplarShakuras', 'DarkTemplarShadowDash/DarkTemplarShakuras', 'VoidStasis/DarkTemplarShakuras', 'Rally'],
'alliedcommanders/DefilerMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'InfestorConsumption/DefilerMP', 'DefilerMPDarkSwarm/DefilerMP', 'DefilerMPPlague/DefilerMP', 'EvolveToBrutalisk/DefilerMP', 'BurrowDown'],
'alliedcommanders/Devourer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CorrosiveAcidDevourer/Devourer', 'EvolveToLeviathan/Devourer'],
'alliedcommanders/DrakkenLaserDrillCoop 0': ['Attack', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 1': ['DrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 2': ['DrakkenLaserDrillNuke/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/DrakkenLaserDrillCoop 3': ['BrokenDrakkenLaserDrill/DrakkenLaserDrillCoop', 'ResearchDrakkenLaserDrillBFG/DrakkenLaserDrillCoop', 'Cancel'],
'alliedcommanders/Drone (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ZergBuild/Drone', 'ZergBuildAdvanced/Drone', 'MutatorWorkerSleep/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ZergBuild/Drone', 'ZergBuildAdvanced/Drone', 'MutatorWorkerSleep/Drone', 'BurrowDown'],
'alliedcommanders/Drone (card index 1) 0': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'BanelingNest/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 1) 1': ['Hatchery/Drone', 'Extractor/Drone', 'SpawningPool/Drone', 'EvolutionChamber/Drone', 'RoachWarren/Drone', 'SpineCrawler/Drone', 'SporeCrawler/Drone', 'ZagaraBileLauncher/Drone', 'Cancel'],
'alliedcommanders/Drone (card index 2)': ['HydraliskDen/Drone', 'InfestationPit/Drone', 'Spire/Drone', 'NydusNetwork/Drone', 'UltraliskCavern/Drone', 'ScourgeNest/Drone', 'Cancel'],
'alliedcommanders/DroneOperator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VespeneDrone/DroneOperator'],
'alliedcommanders/DukesRevenge': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/DukesRevenge', 'DefensiveMatrix/DukesRevenge'],
'alliedcommanders/EngineeringBay 0': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 1': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 2': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 3': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 4': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 5': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 6': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 7': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/EngineeringBay 8': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'ResearchFireSuppressionSystems/EngineeringBay', 'ResearchImprovedTurretAttackSpeed/EngineeringBay', 'Halt', 'Cancel'],
'alliedcommanders/Epilogue02VoidRift (card index 1)': ['Zealot', 'Stalker', 'Colossus/Epilogue02VoidRift', 'Immortal/Epilogue02VoidRift', 'VoidRay/Epilogue02VoidRift', 'Zergling/Epilogue02VoidRift', 'Hydralisk/Epilogue02VoidRift', 'Mutalisk/Epilogue02VoidRift', 'Ultralisk/Epilogue02VoidRift', 'Rally', 'Marine/Epilogue02VoidRift', 'Ghost/Epilogue02VoidRift', 'SiegeTank/Epilogue02VoidRift', 'Banshee/Epilogue02VoidRift', 'Cancel'],
'alliedcommanders/EvolutionChamber 0': ['zergmeleeweapons1/EvolutionChamber', 'zergmissileweapons1/EvolutionChamber', 'zerggroundarmor1/EvolutionChamber', 'Transfusion/EvolutionChamber', 'EvolveHatcheryDoubleQueue/EvolutionChamber', 'EvolveKerriganHeroicFortitude/EvolutionChamber', 'EvolveK5ChainLightning/EvolutionChamber', 'EvolveK5Cooldowns/EvolutionChamber', 'Cancel'],
'alliedcommanders/EvolutionChamber 1': ['zergmeleeweapons1/EvolutionChamber', 'zergmissileweapons1/EvolutionChamber', 'zerggroundarmor1/EvolutionChamber', 'Transfusion/EvolutionChamber', 'EvolveHatcheryDoubleQueue/EvolutionChamber', 'EvolveKerriganHeroicFortitude/EvolutionChamber', 'EvolveK5ChainLightning/EvolutionChamber', 'EvolveAberrationArmorAura/EvolutionChamber', 'Cancel'],
'alliedcommanders/EvolutionPit (card index 0)': ['ResearchAbathurImprovedToxicNest/EvolutionPit', 'ResearchAbathurHiddenToxicNest/EvolutionPit', 'ResearchAbathurLocustAirAttack/EvolutionPit', 'ResearchAbathurNetworkedCarapace/EvolutionPit', 'Cancel'],
'alliedcommanders/Factory (card index 2)': ['Hellion/Factory', 'Goliath/Factory', 'SiegeTank/Factory', 'WidowMine/Factory', 'Thor/Factory', 'MercHellion/Factory', 'HireSpartanCompany/Factory', 'HireSiegeBreakers/Factory', 'Cancel'],
'alliedcommanders/FactoryFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabFactory/FactoryFlying', 'TechReactorAI/FactoryFlying', 'Land'],
'alliedcommanders/FactoryTechLab': ['ResearchHighCapacityBarrels/FactoryTechLab', 'ResearchHellbatHellArmor/FactoryTechLab', 'ResearchAresClassTargetingSystem/FactoryTechLab', 'ResearchMultiLockWeaponsSystem/FactoryTechLab', 'ResearchMaelstromRounds/FactoryTechLab', 'ResearchLockOnRangeUpgrade/FactoryTechLab', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechLab', 'Research330mmBarrageCannon/FactoryTechLab', 'Cancel'],
'alliedcommanders/FactoryTechReactor': ['ResearchHighCapacityBarrels/FactoryTechReactor', 'ResearchHellbatHellArmor/FactoryTechReactor', 'ResearchAresClassTargetingSystem/FactoryTechReactor', 'ResearchMultiLockWeaponsSystem/FactoryTechReactor', 'ResearchMaelstromRounds/FactoryTechReactor', 'ResearchLockOnRangeUpgrade/FactoryTechReactor', 'ResearchCycloneLockOnDamageUpgrade/FactoryTechReactor', 'Research330mmBarrageCannon/FactoryTechReactor', 'Cancel'],
'alliedcommanders/FenixChampion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FenixSOACharge/FenixChampion', 'FenixWhirlwind/FenixChampion', 'VoidShieldCapacitor/FenixChampion', 'Rally'],
'alliedcommanders/Flagship': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOff', 'FlagshipTimeBomb/Flagship', 'FlagshipWarpInPhoenix/Flagship', 'FlagshipWarpInScout/Flagship', 'CloakOnFlagship/Flagship', 'Cancel'],
'alliedcommanders/FleetBeacon': ['AnionPulseCrystals/FleetBeacon', 'ResearchDoubleGravitonBeam/FleetBeacon', 'ResearchTempestDisintegration/FleetBeacon', 'ResearchOracleStasisWardUpgrade/FleetBeacon', 'Cancel'],
'alliedcommanders/Forge': ['ProtossGroundWeaponsLevel1/Forge', 'ProtossGroundArmorLevel1/Forge', 'ProtossShieldsLevel1/Forge', 'ResearchKaraxTurretRange/Forge', 'ResearchKaraxTurretAttackSpeed/Forge', 'ResearchStructureBarrier/Forge', 'Cancel'],
'alliedcommanders/Gateway (card index 0) 0': ['Zealot', 'WarpInReplicant/Gateway', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/Gateway', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'alliedcommanders/Gateway (card index 0) 1': ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/Gateway', 'Rally', 'UpgradeToWarpGate/Gateway', 'Cancel'],
'alliedcommanders/GreaterRoachWarren': ['EvolveGlialRegeneration/GreaterRoachWarren', 'EvolveTunnelingClaws/GreaterRoachWarren', 'EvolveHydriodicBile/GreaterRoachWarren', 'EvolveAdaptivePlating/GreaterRoachWarren', 'Cancel'],
'alliedcommanders/GreaterSpire 0': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/GreaterSpire', 'EvolveViciousGlaive/GreaterSpire', 'EvolveSunderingGlave/GreaterSpire', 'EvolveGuardianAttackRangeIncrease/GreaterSpire', 'EvolveDevourerAoEDamage/GreaterSpire', 'Cancel'],
'alliedcommanders/GreaterSpire 1': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/GreaterSpire', 'EvolveViciousGlaive/GreaterSpire', 'EvolveSunderingGlave/GreaterSpire', 'EvolveBroodLordSpeed/GreaterSpire', 'EvolveDevourerAoEDamage/GreaterSpire', 'Cancel'],
'alliedcommanders/GuardianMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToLeviathan/GuardianMP'],
'alliedcommanders/Hatchery (card index 0) 0': ['Larva', 'BuildCreepTumor/Hatchery', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'alliedcommanders/Hatchery (card index 0) 1': ['Larva', 'QueenCoop', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'alliedcommanders/HellbatWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellion/Hellion', 'SwannCommanderRebuild'],
'alliedcommanders/HellionWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToHellionTank/Hellion', 'SwannCommanderRebuild'],
'alliedcommanders/Hercules': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HerculesLoad/Hercules', 'HerculesUnloadAll/Hercules', 'HyperjumpHercules/Hercules'],
'alliedcommanders/HighArchonTemplar 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighArchonTemplar', 'Feedback/HighArchonTemplar', 'HighArchonPsiStorm/HighArchonTemplar', 'AWrp', 'Rally'],
'alliedcommanders/HighArchonTemplar 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighArchonTemplar', 'Feedback/HighArchonTemplar', 'HighArchonPsiStorm/HighArchonTemplar', 'ArchonAdvancedMergeSelection', 'Rally'],
'alliedcommanders/HighTemplar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HealingPsionicStorm/HighTemplar', 'Feedback/HighTemplar', 'PsiStorm/HighTemplar', 'AWrp', 'Rally'],
'alliedcommanders/Hive (card index 0) 0': ['Larva', 'QueenClassic', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/Hive (card index 0) 1': ['Larva', 'BuildCreepTumor/Hive', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/Hive (card index 0) 2': ['Larva', 'QueenCoop', 'RespawnZergling/Hive', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Cancel'],
'alliedcommanders/HotSLeviathan': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'SymbioteCarapace/HotSLeviathan'],
'alliedcommanders/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/HugeSwarmQueen 5': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenRoach/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 6': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'BurrowDown'],
'alliedcommanders/HugeSwarmQueen 7': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskLurker/HugeSwarmQueen', 'Cancel'],
'alliedcommanders/Hut': ['HutLoad/Hut', 'HutUnloadAll/Hut', 'Rally'],
'alliedcommanders/HybridNemesis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HybridGeneralPhaseShift/HybridNemesis'],
'alliedcommanders/HydraliskDen 0': ['EvolveMuscularAugments/HydraliskDen', 'EvolveAncillaryCarapace/HydraliskDen', 'EvolveFrenzy/HydraliskDen', 'ResearchLurkerRange/HydraliskDen', 'ImpalerDen/HydraliskDen', 'Cancel'],
'alliedcommanders/HydraliskDen 1': ['EvolveMuscularAugments/HydraliskDen', 'EvolveAncillaryCarapace/HydraliskDen', 'EvolveFrenzy/HydraliskDen', 'ResearchLurkerRange/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'alliedcommanders/HydraliskEvolved': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/HydraliskEvolved', 'BurrowDown'],
'alliedcommanders/HydraliskImpaler': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HydraliskFrenzy/HydraliskImpaler', 'Impaler/HydraliskImpaler', 'BurrowDown'],
'alliedcommanders/HydraliskLurker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Lurker/HydraliskLurker', 'HydraliskFrenzy/HydraliskLurker', 'BurrowDown'],
'alliedcommanders/HyperionVoidCoop': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HyperionVoidCoopHyperjump/HyperionVoidCoop', 'HyperionVoidCoopYamatoCannon/HyperionVoidCoop', 'HyperionAdvancedPDD/HyperionVoidCoop'],
'alliedcommanders/ImmortalAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/ImmortalAiur', 'ImmortalShakurasShadowCannon/ImmortalAiur'],
'alliedcommanders/ImmortalShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalShakurasShadowCannon/ImmortalShakuras'],
'alliedcommanders/ImpalerAbathur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AbathurDeepTunnel/ImpalerAbathur', 'ImpalerBurrowDown'],
'alliedcommanders/ImpalerAbathurBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AbathurDeepTunnel/ImpalerAbathurBurrowed', 'ImpalerBurrowUp'],
'alliedcommanders/ImpalerDen': ['EvolveMuscularAugments/ImpalerDen', 'EvolveAncillaryCarapace/ImpalerDen', 'EvolveFrenzy/ImpalerDen', 'ResearchSeismicSpinesAbathur/ImpalerDen', 'Cancel'],
'alliedcommanders/InfestableBiodome': ['InfestedAbomination/InfestableBiodome', 'BiodomeLoad/InfestableBiodome', 'BiodomeUnloadAll/InfestableBiodome'],
'alliedcommanders/InfestationPit 0': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 1': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'EvolveViperAbductImprovedStun/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 2': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'SwarmHostDeepBurrow/InfestationPit', 'ResearchNeuralParasite/InfestationPit', 'Cancel'],
'alliedcommanders/InfestationPit 3': ['HotSPressurizedGlands/InfestationPit', 'EvolveViperImprovedCastRange/InfestationPit', 'SwarmHostDeepBurrow/InfestationPit', 'EvolveViperAbductImprovedStun/InfestationPit', 'Cancel'],
'alliedcommanders/InfestedAbomination': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AberrationProtectiveCover/InfestedAbomination', 'BurrowDown'],
'alliedcommanders/InfestedAbominationBurrowed': ['AberrationProtectiveCover/InfestedAbominationBurrowed', 'BurrowUp'],
'alliedcommanders/InfestedRefinery': ['InfestedAbomination/InfestedRefinery', 'Rally', 'Cancel'],
'alliedcommanders/K5Kerrigan 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'KerriganVoidCoopEconDrop/K5Kerrigan', 'KerriganVoidCoopCrushingGripWave/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5Kerrigan 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'WildMutation/K5Kerrigan', 'KerriganVoidCoopCrushingGripWave/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5Kerrigan 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5Kerrigan', 'PsionicLift/K5Kerrigan', 'KerriganVoidCoopEconDrop/K5Kerrigan', 'K5Leviathan/K5Kerrigan', 'BurrowDown'],
'alliedcommanders/K5KerriganBurrowed 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'KerriganVoidCoopEconDrop/K5KerriganBurrowed', 'KerriganVoidCoopCrushingGripWave/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganBurrowed 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'WildMutation/K5KerriganBurrowed', 'KerriganVoidCoopCrushingGripWave/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganBurrowed 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'KerriganVoidCoopEconDrop/K5KerriganBurrowed', 'K5Leviathan/K5KerriganBurrowed', 'BurrowUp'],
'alliedcommanders/K5KerriganPsiStrike 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'KerriganVoidCoopEconDrop/K5KerriganPsiStrike', 'K5Leviathan/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/K5KerriganPsiStrike 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'WildMutation/K5KerriganPsiStrike', 'K5Leviathan/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/K5KerriganPsiStrike 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'KerriganVoidCoopEconDrop/K5KerriganPsiStrike', 'KerriganVoidCoopCrushingGripWave/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/K5KerriganPsiStrike 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganPsiStrike', 'PsionicLift/K5KerriganPsiStrike', 'WildMutation/K5KerriganPsiStrike', 'KerriganVoidCoopCrushingGripWave/K5KerriganPsiStrike', 'BurrowDown'],
'alliedcommanders/KaraxChampion': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Reclamation/KaraxChampion', 'PhaseCannon/KaraxChampion', 'Rally'],
'alliedcommanders/KelMorianGrenadeTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianGrenadeTurret', 'Halt', 'Cancel'],
'alliedcommanders/KelMorianMissileTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/KelMorianMissileTurret', 'Halt', 'Cancel'],
'alliedcommanders/KelMorianWorker (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReturnCargo', 'TerranBuild/KelMorianWorker', 'Repair', 'Halt'],
'alliedcommanders/KelMorianWorker (card index 1)': ['BuildKelMorianAutoTurret/KelMorianWorker', 'Bunker/KelMorianWorker', 'MissileTurret/KelMorianWorker', 'BuildKelMorianRocketTurret/KelMorianWorker', 'BuildDrakkenLaserDrill/KelMorianWorker', 'Cancel'],
'alliedcommanders/KerriganCharBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DeepTunnel/KerriganCharBurrowed', 'BurrowUp'],
'alliedcommanders/KerriganEpilogue03 (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganEpilogue03QuantumRay/KerriganEpilogue03', 'KerriganEpilogue03Heal/KerriganEpilogue03', 'KerriganEpilogue03CreepTeleport/KerriganEpilogue03', 'KerriganEpilogue03Extinction/KerriganEpilogue03', 'Cancel'],
'alliedcommanders/KerriganReviveCocoon (card index 0)': ['Rally', 'MindBolt/KerriganReviveCocoon', 'PsionicLift/KerriganReviveCocoon', 'KerriganVoidCoopEconDrop/KerriganReviveCocoon', 'KerriganVoidCoopCrushingGripWave/KerriganReviveCocoon'],
'alliedcommanders/KerriganVoid': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/KerriganVoid', 'PsionicLift/KerriganVoid', 'WildMutation/KerriganVoid', 'K5Leviathan/KerriganVoid', 'BurrowDown'],
'alliedcommanders/KerriganVoidBurrowed': ['MindBolt/KerriganVoidBurrowed', 'PsionicLift/KerriganVoidBurrowed', 'WildMutation/KerriganVoidBurrowed', 'K5Leviathan/KerriganVoidBurrowed', 'BurrowUp'],
'alliedcommanders/KerriganVoidUlnar02': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'KerriganVoidKineticBlast/KerriganVoidUlnar02', 'KerriganVoidSpawnBanelings/KerriganVoidUlnar02', 'KerriganVoidApocalypse/KerriganVoidUlnar02'],
'alliedcommanders/KhaydarinMonolith': ['Stop', 'Attack', 'ResearchKaraxTurretRange/KhaydarinMonolith', 'ResearchKaraxTurretAttackSpeed/KhaydarinMonolith', 'Cancel'],
'alliedcommanders/Lair (card index 0) 0': ['Larva', 'Queen', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/Lair (card index 0) 1': ['Larva', 'QueenClassic', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/Lair (card index 0) 2': ['Larva', 'BuildCreepTumor/Lair', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/Lair (card index 0) 3': ['Larva', 'QueenCoop', 'RespawnZergling/Lair', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenZergling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'alliedcommanders/LargeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenRaptor/LargeSwarmQueen', 'SwarmQueenCorpser/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenRoach/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'alliedcommanders/LargeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'BurrowDown'],
'alliedcommanders/Larva 00': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 01': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 02': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 03': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 04': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 05': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 06': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 07': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 08': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'QueenClassic', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 09': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Corruptor/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 10': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Corruptor/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 11': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 12': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 13': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 14': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 15': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'SwarmHostMP/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 16': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'SwarmHostMP/Larva', 'Infestor/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Larva 17': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Aberration/Larva', 'Scourge/Larva', 'Hydralisk/Larva', 'Defiler/Larva', 'Ultralisk/Larva', 'Mutalisk/Larva', 'Viper/Larva', 'Cancel'],
'alliedcommanders/Leviathan': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BioPlasmidDischarge/Leviathan', 'BioStasis/Leviathan', 'LeviathanSpawnMutalisk/Leviathan', 'SpawnBroodLord/Leviathan'],
'alliedcommanders/Liberator': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LiberatorAGMode/Liberator', 'IgniteAfterburners/Liberator'],
'alliedcommanders/Locust': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/Locust'],
'alliedcommanders/LocustNestBurrowed': ['SetRallyPointSwarmHost/LocustNestBurrowed', 'SwarmHost/LocustNestBurrowed', 'Cancel'],
'alliedcommanders/LurkerBurrowed': ['Stop', 'Attack', 'LurkerHoldFire/LurkerBurrowed', 'LurkerCancelHoldFire/LurkerBurrowed', 'LurkerBurrowUp'],
'alliedcommanders/LurkerDen': ['EvolveMuscularAugments/LurkerDen', 'EvolveAncillaryCarapace/LurkerDen', 'EvolveFrenzy/LurkerDen', 'ResearchLurkerRange/LurkerDen', 'Cancel'],
'alliedcommanders/LurkerDenMP': ['hydraliskspeed/LurkerDenMP', 'ResearchLurkerRange/LurkerDenMP', 'Cancel'],
'alliedcommanders/LurkerMP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BurrowLurkerMP'],
'alliedcommanders/MercMedic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MercMedicHeal/MercMedic', 'MercMedicHealToggle/MercMedic'],
'alliedcommanders/MercReaper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'D8Charge/MercReaper'],
'alliedcommanders/MercVulture': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/MercVulture', 'SpiderMineReplenish/MercVulture', 'Cancel'],
'alliedcommanders/MissileTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/MissileTurret', 'Halt', 'Cancel'],
'alliedcommanders/Mutalisk': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToGuardian/Mutalisk', 'MorphtoDevourer/Mutalisk', 'EvolveToLeviathan/Mutalisk'],
'alliedcommanders/NydusNetwork': ['Stop', 'ZagaraVoidCoopNydusWorm/NydusNetwork', 'Rally', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'alliedcommanders/Observer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoObserverSiege/Observer'],
'alliedcommanders/ObserverSiegeMode': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoObserver/Observer'],
'alliedcommanders/OdinMKII': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OdinBarrage/OdinMKII', 'Cancel'],
'alliedcommanders/OrbitalCommand': ['SCV', 'Rally', 'CalldownMULE/OrbitalCommand', 'OrbitalCommandCalldownSupplyDepot/OrbitalCommand', 'Scan/OrbitalCommand', 'Lift', 'Cancel'],
'alliedcommanders/Overseer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoOverseerSiege/Overseer', 'Contaminate/Overseer'],
'alliedcommanders/OverseerSiegeMode': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphtoOverseerNormal/Overseer'],
'alliedcommanders/PerditionTurret': ['Stop', 'Attack', 'SelectBuilder', 'Salvage/PerditionTurret', 'Halt', 'Cancel'],
'alliedcommanders/PerditionTurretUnderground': ['Attack', 'Salvage/PerditionTurretUnderground', 'Cancel'],
'alliedcommanders/PhotonCannon': ['Stop', 'Attack', 'ResearchKaraxTurretRange/PhotonCannon', 'ResearchKaraxTurretAttackSpeed/PhotonCannon', 'Cancel'],
'alliedcommanders/PitAlarak': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'AlarakMindBlast/PitAlarak', 'Blink/PitAlarak', 'AlarakPsiOrb/PitAlarak', 'PitAlarakSuperMove/PitAlarak', 'PitAlarakTerrazineTeleport/PitAlarak', 'Cancel'],
'alliedcommanders/PlanetaryFortress': ['SCV', 'VespeneDrone/PlanetaryFortress', 'StopPlanetaryFortress/PlanetaryFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Cancel'],
'alliedcommanders/PrimalTownHall (card index 0)': ['Stop', 'Attack', 'PrimalZergling/PrimalTownHall', 'PrimalRoach/PrimalTownHall', 'PrimalHydralisk/PrimalTownHall', 'PrimalFlyer/PrimalTownHall', 'Rally', 'PrimalMutalisk/PrimalTownHall', 'PrimalUltralisk/PrimalTownHall', 'Cancel'],
'alliedcommanders/Probe (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'ProtossBuild/Probe', 'ProtossBuildAdvanced/Probe', 'MutatorWorkerSleep/Probe'],
'alliedcommanders/Queen (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Transfusion/Queen', 'BuildCreepTumor/Queen', 'QueenBurstHeal/Queen', 'EvolveToBrutalisk/Queen', 'DeepTunnel/Queen', 'BurrowDown'],
'alliedcommanders/Queen (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Transfusion/Queen', 'BuildCreepTumor/Queen', 'QueenBurstHeal/Queen', 'EvolveToBrutalisk/Queen', 'DeepTunnel/Queen', 'Cancel'],
'alliedcommanders/QueenBurrowed': ['Attack', 'EvolveToBrutalisk/QueenBurrowed', 'BurrowUp'],
'alliedcommanders/QueenCoop (card index 0) 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/QueenCoop', 'MorphMorphalisk/QueenCoop', 'Transfusion/QueenCoop', 'BurrowDown'],
'alliedcommanders/QueenCoop (card index 0) 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/QueenCoop', 'MorphMorphalisk/QueenCoop', 'Transfusion/QueenCoop', 'Cancel'],
'alliedcommanders/RavagerAbathur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RavagerAbathurCorrosiveBile/RavagerAbathur', 'EvolveToBrutalisk/RavagerAbathur', 'BurrowDown'],
'alliedcommanders/RavagerAbathurBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RavagerAbathurBurrowed', 'BurrowUp'],
'alliedcommanders/Raven': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AutoTurret/Raven', 'PointDefenseDrone/Raven', 'InstantHunterSeekerMissile/Raven'],
'alliedcommanders/Raynor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PlantC4Charge/Raynor', 'TossGrenade/Raynor', 'ExperimentalPlasmaGun/Raynor', 'TheMorosDevice/Raynor'],
'alliedcommanders/Reaver': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ReaverScarabs/Reaver', 'ResearchReaverIncreasedScarabSplashRadius/Reaver'],
'alliedcommanders/ResearchVessel': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchVesselLoad/ResearchVessel', 'HerculesUnloadAll/ResearchVessel', 'Land'],
'alliedcommanders/ResearchVesselLanded': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ResearchVesselLoad/ResearchVesselLanded', 'HerculesUnloadAll/ResearchVesselLanded', 'Lift'],
'alliedcommanders/Roach': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/Roach', 'EvolveToBrutalisk/Roach', 'BurrowDown'],
'alliedcommanders/RoachBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RoachBurrowed', 'BurrowUp'],
'alliedcommanders/RoachCorpser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/RoachCorpser', 'BurrowDown'],
'alliedcommanders/RoachVile': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Ravager/RoachVile', 'EvolveToBrutalisk/RoachVile', 'BurrowDown'],
'alliedcommanders/RoachVileBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveToBrutalisk/RoachVileBurrowed', 'BurrowUp'],
'alliedcommanders/RoachWarren': ['EvolveGlialRegeneration/RoachWarren', 'EvolveTunnelingClaws/RoachWarren', 'EvolveAdaptivePlating/RoachWarren', 'EvolveCorrosiveBileRadiusIncrease/RoachWarren', 'EvolveCorrosiveBileDamageIncrease/RoachWarren', 'Cancel'],
'alliedcommanders/RoboticsBay 0': ['ResearchGraviticBooster/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 1': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 2': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchReaverIncreasedScarabSplashRadius/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsBay 3': ['ResearchGraviticBooster/RoboticsBay', 'ResearchExtendedThermalLance/RoboticsBay', 'ResearchReaverIncreasedScarabCount/RoboticsBay', 'ResearchBarrier/RoboticsBay', 'Cancel'],
'alliedcommanders/RoboticsFacility (card index 0)': ['Immortal/RoboticsFacility', 'WarpinDisruptor/RoboticsFacility', 'Observer/RoboticsFacility', 'Rally', 'UpgradeToRoboticsFacilityWarp/RoboticsFacility', 'Cancel'],
'alliedcommanders/RoboticsFacilityWarp (card index 0)': ['Immortal/RoboticsFacilityWarp', 'Colossus/RoboticsFacilityWarp', 'Observer/RoboticsFacilityWarp', 'MorphBackToRoboticsFacility/RoboticsFacilityWarp', 'Cancel'],
'alliedcommanders/SCV (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'TerranBuild/SCV', 'TerranBuildAdvanced/SCV', 'Repair', 'MutatorWorkerSleep/SCV', 'Halt'],
'alliedcommanders/SCV (card index 1) 0': ['CommandCenterOrbRelay/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'BuildKelMorianRocketTurret/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'alliedcommanders/SCV (card index 1) 1': ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'BuildKelMorianRocketTurret/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'alliedcommanders/SCV (card index 2)': ['GhostAcademy/SCV', 'MercCompound/SCV', 'Factory/SCV', 'Armory/SCV', 'Starport/SCV', 'FusionCore/SCV', 'Cancel'],
'alliedcommanders/SJMercStarport': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Rally', 'Battlecruiser/SJMercStarport', 'Cancel'],
'alliedcommanders/SJSpaceStationValerian': ['Stop', 'Attack', 'NanoRepair/SJSpaceStationValerian'],
'alliedcommanders/SOAMothershipv4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryBlackHole/SOAMothershipv4', 'SOAMothershipLineAttack/SOAMothershipv4', 'SOAMothershipBlink/SOAMothershipv4'],
'alliedcommanders/SS_Battlecruiser': ['Attack', 'HunterSeekerMissile/SS_Plane'],
'alliedcommanders/ScienceVessel': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NanoRepair/ScienceVessel', 'Irradiate/ScienceVessel', 'DefensiveMatrixTarget/ScienceVessel'],
'alliedcommanders/Scourge 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'EnableBuildingAttackScourge/Scourge'],
'alliedcommanders/Scourge 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DetonateScourge/Scourge', 'DisableBuildingAttackScourge/Scourge'],
'alliedcommanders/ScourgeNest': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveScourgeSplashDamage/ScourgeNest', 'EvolveScourgeGasCostReduction/ScourgeNest', 'Cancel'],
'alliedcommanders/Sentry (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepair/Sentry', 'GuardianShield/Sentry', 'ForceField/Sentry', 'Rally'],
'alliedcommanders/SentryAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepair/SentryCampaignBase', 'GuardianShield/SentryCampaignBase', 'Rally'],
'alliedcommanders/SentryPhasing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryPurifier', 'VoidSentryMobileMode/SentryPurifier', 'ResearchKaraxEnergyRegenUpgrade/SentryPurifier'],
'alliedcommanders/SentryPurifier 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryCampaignBase', 'EnergizerReclamation/SentryCampaignBase', 'VoidSentryPhasingMode/SentryCampaignBase', 'ResearchKaraxEnergyRegenUpgrade/SentryCampaignBase'],
'alliedcommanders/SentryPurifier 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryChronoBeam/SentryCampaignBase', 'EnergizerReclamation/SentryCampaignBase', 'VoidSentryPhasingMode/SentryCampaignBase', 'Rally'],
'alliedcommanders/ShadowShieldGenerator': ['ActivateShieldGenerator/ShadowShieldGenerator', 'DeactivateShieldGenerator/ShadowShieldGenerator'],
'alliedcommanders/ShieldBattery': ['ShieldBatteryRecharge/ShieldBattery', 'ShieldBatteryStructureBarrier/ShieldBattery', 'ResearchKaraxTurretRange/ShieldBattery', 'ResearchKaraxEnergyRegenUpgrade/ShieldBattery', 'Cancel'],
'alliedcommanders/SiegeTank 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'SiegeTankJumpJet/SiegeTank'],
'alliedcommanders/SiegeTank 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'IgniteAfterburners/SiegeTank'],
'alliedcommanders/SiegeTankSieged': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Unsiege', 'SiegeTankJumpJet/SiegeTank'],
'alliedcommanders/SiegeTankWreckage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SiegeMode', 'SwannCommanderRebuild'],
'alliedcommanders/SlaynElemental': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SlaynElementalGrab/SlaynElemental', 'SlaynElementalGrabAOE/SlaynElemental'],
'alliedcommanders/SolarForge (card index 0) 0': ['ResearchSolarEfficiencyLevel1/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SolarForge (card index 0) 1': ['ResearchSolarEfficiencyLevel2/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SolarForge (card index 0) 2': ['ResearchSolarEfficiencyLevel3/SolarForge', 'ResearchSOARepairBeamExtraTarget/SolarForge', 'ResearchSOAOrbitalStrikeUpgrade/SolarForge', 'ResearchSOASolarLanceUpgrade/SolarForge', 'Cancel'],
'alliedcommanders/SpacePlatformVentsUnit': ['LeviathanSpawnMutalisk/SpacePlatformVentsUnit', 'SpawnCorruptor/SpacePlatformVentsUnit', 'SpawnBroodLord/SpacePlatformVentsUnit'],
'alliedcommanders/SpawningPool': ['zerglingmovementspeed/SpawningPool', 'EvolveHardenedCarapace/SpawningPool', 'zerglingattackspeed/SpawningPool', 'EvolveZerglingArmorShred/SpawningPool', 'EvolveBileLauncherIncreasedRange/SpawningPool', 'EvolveBileLauncherBombardmentCooldown/SpawningPool', 'Cancel'],
'alliedcommanders/Spectre 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'MindBlast/Spectre', 'VoodooShield/Spectre', 'SpectreDomination/Spectre', 'NukeCalldown/Spectre', 'Cancel'],
'alliedcommanders/Spectre 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpectreHoldFire/Spectre', 'SpectreWeaponsFree/Spectre', 'MindBlast/Spectre', 'VoodooShield/Spectre', 'SpectreDomination/Spectre', 'NukeCalldown/Spectre', 'ReleaseMinion/Spectre'],
'alliedcommanders/Spire 0': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveBroodLordSpeed/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireBroodlord/Spire', 'Cancel'],
'alliedcommanders/Spire 1': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveBroodLordSpeed/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireViper/Spire', 'Cancel'],
'alliedcommanders/Spire 2': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveGuardianAttackRangeIncrease/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireBroodlord/Spire', 'Cancel'],
'alliedcommanders/Spire 3': ['zergflyerattack1', 'zergflyerarmor1', 'EvolveMutaliskRapidRegeneration/Spire', 'EvolveViciousGlaive/Spire', 'EvolveSunderingGlave/Spire', 'EvolveGuardianAttackRangeIncrease/Spire', 'EvolveDevourerAoEDamage/Spire', 'GreaterSpireViper/Spire', 'Cancel'],
'alliedcommanders/StalkerShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StalkerBlinkShieldRestoreBase/StalkerShakuras', 'BlinkShieldRestoreUpgrade/StalkerShakuras', 'Rally'],
'alliedcommanders/Stargate (card index 0)': ['Phoenix/Stargate', 'VoidRay/Stargate', 'Oracle/Stargate', 'Arbiter/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'alliedcommanders/StargateWarp (card index 0)': ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Oracle/StargateWarp', 'Arbiter/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'alliedcommanders/StarportTechLab': ['ResearchBansheeCloak/StarportTechLab', 'ResearchShockwaveMissileBattery/StarportTechLab', 'ResearchPhobosClassWeaponsSystem/StarportTechLab', 'ResearchRipwaveMissiles/StarportTechLab', 'Cancel'],
'alliedcommanders/StarportTechReactor': ['ResearchBansheeCloak/StarportTechReactor', 'ResearchShockwaveMissileBattery/StarportTechReactor', 'ResearchPhobosClassWeaponsSystem/StarportTechReactor', 'ResearchRipwaveMissiles/StarportTechReactor', 'Cancel'],
'alliedcommanders/SuperWarpGate (card index 1)': ['Probe/SuperWarpGate', 'VoidRay/SuperWarpGate', 'Oracle/SuperWarpGate', 'MothershipCore/SuperWarpGate', 'Stalker', 'WarpInFenixChampion/SuperWarpGate', 'WarpInDarkTemplarChampion/SuperWarpGate', 'WarpInDarkArchonChampion/SuperWarpGate', 'WarpInVulcanChampion/SuperWarpGate', 'WarpInArtanisChampion/SuperWarpGate'],
'alliedcommanders/Swann': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'DutchPlaceTurret/Swann'],
'alliedcommanders/SwarmHost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHost', 'RapidIncubation/SwarmHost', 'LocustLaunch/SwarmHost', 'AbathurDeepTunnel/SwarmHost', 'EvolveToBrutalisk/SwarmHost', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostBurrowed': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostBurrowed', 'RapidIncubation/SwarmHostBurrowed', 'LocustLaunch/SwarmHostBurrowed', 'AbathurDeepTunnel/SwarmHostBurrowed', 'EvolveToBrutalisk/SwarmHostBurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostRooted': ['Stop', 'Attack', 'LocustLaunch/SwarmHostRooted', 'RapidIncubation/SwarmHostRooted', 'HotSPressurizedGlands/SwarmHostRooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmHostSplitA 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'HotSPressurizedGlands/SwarmHostSplitA', 'SwarmHostRoot'],
'alliedcommanders/SwarmHostSplitA 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'RapidIncubation/SwarmHostSplitA', 'HotSPressurizedGlands/SwarmHostSplitA', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostSplitABurrowed': ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitABurrowed', 'RapidIncubation/SwarmHostSplitABurrowed', 'HotSPressurizedGlands/SwarmHostSplitABurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostSplitARooted': ['Stop', 'Attack', 'LocustFlyingLaunch/SwarmHostSplitARooted', 'RapidIncubation/SwarmHostSplitARooted', 'HotSPressurizedGlands/SwarmHostSplitARooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmHostSplitB 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitB', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRoot'],
'alliedcommanders/SwarmHostSplitB 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitB', 'SwarmHostDeepBurrow/SwarmHostSplitB', 'RapidIncubation/SwarmHostSplitB', 'SwarmHostRootBurrow'],
'alliedcommanders/SwarmHostSplitBBurrowed': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitBBurrowed', 'LocustLaunchCreeper/SwarmHostSplitBBurrowed', 'SwarmHostDeepBurrow/SwarmHostSplitBBurrowed', 'RapidIncubation/SwarmHostSplitBBurrowed', 'SwarmHostUprootUnburrow'],
'alliedcommanders/SwarmHostSplitBRooted': ['Stop', 'Attack', 'HotSPressurizedGlands/SwarmHostSplitBRooted', 'LocustLaunchCreeper/SwarmHostSplitBRooted', 'SwarmHostDeepBurrow/SwarmHostSplitBRooted', 'RapidIncubation/SwarmHostSplitBRooted', 'SwarmHostUproot'],
'alliedcommanders/SwarmQueenEgg (card index 1) 0': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 1': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 2': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/SwarmQueenEgg (card index 1) 3': ['SwarmQueenZergling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'alliedcommanders/TechTreeImmortal': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalOverload/Immortal'],
'alliedcommanders/Tempest': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'LightningBomb/Tempest', 'Rally'],
'alliedcommanders/TemplarArchive': ['ResearchPsiStorm/TemplarArchive', 'ResearchHighTemplarEnergyUpgrade/TemplarArchive', 'ResearchHealingPsionicStorm/TemplarArchive', 'Cancel'],
'alliedcommanders/TestHero (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'Cancel'],
'alliedcommanders/Thor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/Thor', 'SelfRepair/Thor', 'Cancel'],
'alliedcommanders/ThorAP': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ExplosiveMode', 'SelfRepair/Thor', 'Cancel'],
'alliedcommanders/ThorWreckageSwann 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/ThorWreckageSwann', 'SwannCommanderRebuild', 'Cancel'],
'alliedcommanders/ThorWreckageSwann 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', '250mmStrikeCannons/ThorWreckageSwann', 'SelfRepair/ThorWreckageSwann', 'Cancel'],
'alliedcommanders/TitanMechAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TitanMechGunShotCharge/TitanMechAssault', 'TitanMechGunShot/TitanMechAssault', 'TitanMechMissileShot/TitanMechAssault', 'TitanMechRepel/TitanMechAssault', 'FighterMode'],
'alliedcommanders/ToxicNestBurrowed': ['ToxicNestExplode/ToxicNestBurrowed', 'Cancel'],
'alliedcommanders/TwilightCouncil': ['ResearchCharge/TwilightCouncil', 'ResearchDragoonChassis/TwilightCouncil', 'ResearchWhirlwind/TwilightCouncil', 'ResearchDragoonRange/TwilightCouncil', 'Cancel'],
'alliedcommanders/UltraliskCavern': ['EvolveChitinousPlating/UltraliskCavern', 'EvolveBurrowCharge/UltraliskCavern', 'EvolveTissueAssimilation/UltraliskCavern', 'Cancel'],
'alliedcommanders/Urun (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Urun', 'Rally'],
'alliedcommanders/VespeneDrone': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VespeneDrone/VespeneDrone'],
'alliedcommanders/VikingAssault': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'FighterMode', 'IgniteAfterburners/VikingAssault'],
'alliedcommanders/VikingFighter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'AssaultMode', 'IgniteAfterburners/VikingAssault'],
'alliedcommanders/Viper': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'EvolveViperImprovedCastRange/Viper', 'EvolveViperAbductImprovedStun/Viper', 'FaceEmbrace/Viper', 'DisablingCloud/Viper', 'ViperConsumption/Viper', 'ParasiticBomb/Viper', 'EvolveToLeviathan/Viper'],
'alliedcommanders/VoidCoopWarbot': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WarbotA/VoidCoopWarbot'],
'alliedcommanders/VoidRift (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRift', 'Immortal/VoidRift', 'VoidRay/VoidRift', 'Archon/VoidRift', 'Phoenix/VoidRift', 'Oracle/VoidRift', 'Cancel'],
'alliedcommanders/VoidRiftUnselectable (card index 1)': ['Marine/VoidRiftUnselectable', 'Ghost/VoidRiftUnselectable', 'SiegeTank/VoidRiftUnselectable', 'Banshee/VoidRiftUnselectable', 'Thor/VoidRiftUnselectable', 'Battlecruiser/VoidRiftUnselectable', 'Liberator/VoidRiftUnselectable', 'Medivac/VoidRiftUnselectable', 'Raven/VoidRiftUnselectable', 'Cancel'],
'alliedcommanders/VoidRiftUnselectable (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRiftUnselectable', 'Immortal/VoidRiftUnselectable', 'VoidRay/VoidRiftUnselectable', 'Archon/VoidRiftUnselectable', 'Phoenix/VoidRiftUnselectable', 'Oracle/VoidRiftUnselectable', 'Cancel'],
'alliedcommanders/VoidShardAC': ['Stop', 'Attack', 'VoidRift/VoidShardAC'],
'alliedcommanders/VoidThrasher (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasher', 'Immortal/VoidThrasher', 'VoidRay/VoidThrasher', 'Zergling/VoidThrasher', 'Hydralisk/VoidThrasher', 'Mutalisk/VoidThrasher', 'Ultralisk/VoidThrasher', 'Marine/VoidThrasher', 'Ghost/VoidThrasher', 'SiegeTank/VoidThrasher', 'Banshee/VoidThrasher', 'Cancel'],
'alliedcommanders/VoidThrasherWalker (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Rally', 'KaiserWormScourgeMissile/VoidThrasherWalker', 'VoidThrasherLightningAoE/VoidThrasherWalker', 'VoidThrasherLightningAoEExtra/VoidThrasherWalker'],
'alliedcommanders/VoidThrasherWalker (card index 1)': ['Zealot', 'Stalker', 'Colossus/VoidThrasherWalker', 'Immortal/VoidThrasherWalker', 'VoidRay/VoidThrasherWalker', 'Zergling/VoidThrasherWalker', 'Hydralisk/VoidThrasherWalker', 'Mutalisk/VoidThrasherWalker', 'Ultralisk/VoidThrasherWalker', 'Marine/VoidThrasherWalker', 'Ghost/VoidThrasherWalker', 'SiegeTank/VoidThrasherWalker', 'Banshee/VoidThrasherWalker', 'Cancel'],
'alliedcommanders/VorazunShadowGuard': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidShadowGuardShadowFury/VorazunShadowGuard', 'ShadowGuardBlink/VorazunShadowGuard', 'VoidStasis/VorazunShadowGuard'],
'alliedcommanders/Vulture': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpiderMine/Vulture', 'SpiderMineReplenish/Vulture', 'IgniteAfterburners/Vulture', 'Cancel'],
'alliedcommanders/WarfieldFortress': ['SCV', 'StopPlanetaryFortress/WarfieldFortress', 'Attack', 'Rally', 'CommandCenterLoad', 'BunkerUnloadAll', 'Cancel'],
'alliedcommanders/WarpGate (card index 0) 0': ['Zealot', 'WarpInReplicant/WarpGate', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/WarpGate', 'Rally', 'MorphBackToGateway/WarpGate', 'Cancel'],
'alliedcommanders/WarpGate (card index 0) 1': ['Zealot', 'Sentry', 'Stalker', 'HighTemplar', 'DarkTemplar', 'DarkArchon/WarpGate', 'Rally', 'MorphBackToGateway/WarpGate', 'Cancel'],
'alliedcommanders/WarpPrismGiant': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhasingMode/WarpPrismGiant', 'BunkerLoad', 'BunkerUnloadAll'],
'alliedcommanders/WarpPrismPhasing': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'TransportMode/WarpPrism', 'BunkerLoad', 'BunkerUnloadAll'],
'alliedcommanders/ZagaraReviveCocoon (card index 0)': ['ZagaraVoidCoopBanelingSpawner/ZagaraReviveCocoon', 'Rally', 'ZagaraVoidCoopBanelingBarrage/ZagaraReviveCocoon', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraReviveCocoon', 'ZagaraVoidCoopMassFrenzy/ZagaraReviveCocoon', 'MassRoachDrop/ZagaraReviveCocoon'],
'alliedcommanders/ZagaraVoidCoop': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingSpawner/ZagaraVoidCoop', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoop', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoop', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoop', 'MassRoachDrop/ZagaraVoidCoop', 'BurrowDown'],
'alliedcommanders/ZagaraVoidCoopBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ZagaraVoidCoopBanelingSpawner/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopBanelingBarrage/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopSpawnHunterKillers/ZagaraVoidCoopBurrowed', 'ZagaraVoidCoopMassFrenzy/ZagaraVoidCoopBurrowed', 'MassRoachDrop/ZagaraVoidCoopBurrowed', 'BurrowUp'],
'alliedcommanders/ZealotAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/ZealotAiur', 'VoidZealotWhirlwind/ZealotAiur', 'Rally'],
'campaigncommon/AmonCrystalEpilogue03': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'AmonCrystalDematerialize/AmonCrystalEpilogue03'],
'campaigncommon/ArtanisVoid (card index 1)': ['ArtanisChannel/ArtanisVoid', 'ArtanisChannelOff/ArtanisVoid'],
'campaigncommon/Ball': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Taunt/Ball'],
'campaigncommon/BroodMother': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/BroodMother', 'QueenBurstHeal/BroodMother', 'DeepTunnel/BroodMother', 'Cancel'],
'campaigncommon/CarrierAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/CarrierAiur', 'RepairDrones/CarrierAiur', 'Rally'],
'campaigncommon/CarrierRepairDrone': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CarrierRepairDroneHeal/CarrierRepairDrone'],
'campaigncommon/CarrierTaldarim': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Carrier', 'RepairDrones/Carrier', 'Rally'],
'campaigncommon/ColonistVehicleUnit01': ['Move', 'Stop', 'MoveHoldPosition', 'ParkColonistVehicle/ColonistVehicleUnit01', 'StartColonistVehicle/ColonistVehicleUnit01'],
'campaigncommon/CreepTumorBurrowed': ['BuildCreepTumorPropagate/CreepTumorBurrowed', 'Cancel'],
'campaigncommon/Dehaka': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/Dehaka', 'DehakaMirrorImage/Dehaka', 'DehakaHeal/Dehaka', 'BurrowDown'],
'campaigncommon/Factory (card index 0) 00': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 01': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 02': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 03': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 04': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 05': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 06': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 07': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 08': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 09': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 10': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'campaigncommon/Factory (card index 0) 11': ['Vulture/Factory', 'Hellion/Factory', 'SiegeTank/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'campaigncommon/Factory (card index 0) 12': ['Vulture/Factory', 'Hellion/Factory', 'WarHound/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'campaigncommon/Hatchery (card index 0)': ['Larva', 'Queen', 'RespawnZergling/Hatchery', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'campaigncommon/HerculesLanderFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'Land'],
'campaigncommon/HighTemplarShakuras': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/HighTemplarShakuras', 'PsiStorm/HighTemplarShakuras', 'AWrp'],
'campaigncommon/HotSHunter': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/HotSHunter', 'EnableBuildingAttack/HotSHunter', 'BurrowDown'],
'campaigncommon/HotSRaptor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/HotSRaptor', 'BurrowDown'],
'campaigncommon/HotSTorrasqueBurrowed': ['Attack', 'UltraliskBurrowCharge/HotSTorrasqueBurrowed', 'TorrasqueChrysalis/HotSTorrasqueBurrowed', 'BurrowUp'],
'campaigncommon/HugeSwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'Cancel'],
'campaigncommon/HugeSwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenZergling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'Cancel'],
'campaigncommon/HugeSwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'campaigncommon/HugeSwarmQueen 3': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenSwarmling/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'campaigncommon/HugeSwarmQueen 4': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenVile/HugeSwarmQueen', 'SwarmQueenHydralisk/HugeSwarmQueen', 'BurrowDown'],
'campaigncommon/HugeSwarmQueen 5': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/HugeSwarmQueen', 'SwarmQueenRaptor/HugeSwarmQueen', 'SwarmQueenCorpser/HugeSwarmQueen', 'SwarmQueenHydraliskImpaler/HugeSwarmQueen', 'BurrowDown'],
'campaigncommon/HybridBehemoth': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ConsumeDNA/HybridBehemoth', 'HybridFAoEStun/HybridBehemoth'],
'campaigncommon/HybridDestroyer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonPrison/HybridDestroyer'],
'campaigncommon/K5KerriganBurrowed': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MindBolt/K5KerriganBurrowed', 'PsionicLift/K5KerriganBurrowed', 'WildMutation/K5KerriganBurrowed', 'K5Leviathan/K5KerriganBurrowed', 'BurrowUp'],
'campaigncommon/LargeSwarmQueen': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/LargeSwarmQueen', 'SwarmQueenSwarmling/LargeSwarmQueen', 'SwarmQueenVile/LargeSwarmQueen', 'GrowHugeQueen/LargeSwarmQueen', 'Cancel'],
'campaigncommon/LiberatorAG': ['Stop', 'Attack', 'LiberatorAAMode/Liberator'],
'campaigncommon/Maar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PsionicShockwave/Maar', 'GravitonPrison/Maar', 'HybridBlink/Maar'],
'campaigncommon/Medic': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MedicHeal/Medic'],
'campaigncommon/MengskBC': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/MengskBC', 'DefensiveMatrix/MengskBC'],
'campaigncommon/MengskWraith': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WraithCloakOn/MengskWraith', 'CloakOff'],
'campaigncommon/MothershipAiur06': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PlanetCracker/MothershipAiur06', 'PlanetCrackerOff/MothershipAiur06'],
'campaigncommon/Nexus': ['Probe/Nexus', 'MothershipCore/Nexus', 'Stop', 'Attack', 'Rally', 'TimeWarp/Nexus', 'Cancel'],
'campaigncommon/Overlord': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'campaigncommon/Overseer': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SpawnChangeling/Overseer', 'Contaminate/Overseer'],
'campaigncommon/PitMalash': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'PitMalashPsiShift/PitMalash', 'PitMalashUppercut/PitMalash', 'PitMalashSuperMove/PitMalash', 'Cancel'],
'campaigncommon/RoboticsFacility (card index 0)': ['Immortal/RoboticsFacility', 'Colossus/RoboticsFacility', 'Observer/RoboticsFacility', 'Rally', 'UpgradeToRoboticsFacilityWarp/RoboticsFacility', 'Cancel'],
'campaigncommon/SJHyperion (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SJHyperionFightersRecall/SJHyperion', 'SJHyperionBlink/SJHyperion', 'SJHyperionFighters/SJHyperion', 'SJHyperionYamato/SJHyperion'],
'campaigncommon/SentryAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'VoidSentryShieldRepairDouble/SentryCampaignBase', 'GuardianShield/SentryCampaignBase', 'Rally'],
'campaigncommon/StalkerPurifier': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'StalkerBlinkMultiple/Stalker', 'Rally'],
'campaigncommon/Stargate (card index 0)': ['Phoenix/Stargate', 'VoidRay/Stargate', 'Carrier/Stargate', 'Rally', 'UpgradeToStargateWarp/Stargate', 'Cancel'],
'campaigncommon/Stargate (card index 1)': ['Phoenix/Stargate', 'VoidRay/Stargate', 'Scout/Stargate', 'UpgradeToStargateWarp/Stargate'],
'campaigncommon/StargateWarp (card index 0)': ['Phoenix/StargateWarp', 'VoidRay/StargateWarp', 'Carrier/StargateWarp', 'MorphBackToStargate/StargateWarp', 'Cancel'],
'campaigncommon/StarportFlying 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactorAI/StarportFlying', 'Reactor/StarportFlying', 'Land'],
'campaigncommon/StarportFlying 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'BuildTechLabStarport/StarportFlying', 'TechReactorAI/StarportFlying', 'Land'],
'campaigncommon/Stetmann': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BonesHeal/Stetmann'],
'campaigncommon/SwarmHost': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'HotSPressurizedGlands/SwarmHost', 'SwarmHostRoot'],
'campaigncommon/SwarmQueen 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenZergling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'Cancel'],
'campaigncommon/SwarmQueen 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenSwarmling/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'Cancel'],
'campaigncommon/SwarmQueen 2': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'SwarmQueenParasiticInvasion/SwarmQueen', 'SwarmQueenRaptor/SwarmQueen', 'GrowLargeQueen/SwarmQueen', 'Cancel'],
'campaigncommon/SwarmQueenEgg (card index 1) 0': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydralisk/SwarmQueenEgg', 'Cancel'],
'campaigncommon/SwarmQueenEgg (card index 1) 1': ['SwarmQueenRaptor/SwarmQueenEgg', 'SwarmQueenCorpser/SwarmQueenEgg', 'SwarmQueenHydraliskLurker/SwarmQueenEgg', 'Cancel'],
'campaigncommon/SwarmQueenEgg (card index 1) 2': ['SwarmQueenSwarmling/SwarmQueenEgg', 'SwarmQueenRoach/SwarmQueenEgg', 'SwarmQueenHydraliskImpaler/SwarmQueenEgg', 'Cancel'],
'campaigncommon/TechTreePhoenix 0': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeamVoidCampaign/Phoenix', 'Cancel'],
'campaigncommon/TechTreePhoenix 1': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GravitonBeam/Phoenix', 'Cancel'],
'campaigncommon/TechTreeSentry (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Hallucination/Sentry', 'GuardianShield/Sentry', 'ForceField/Sentry', 'Rally'],
'campaigncommon/TransportTruck': ['Move', 'Stop', 'MoveHoldPosition', 'TransportTruckLoad/TransportTruck', 'TransportTruckUnloadAll/TransportTruck', 'Rally'],
'campaigncommon/TwilightCouncil': ['WarpInActiveArtanisChampion/TwilightCouncil', 'ResearchStalkerTeleport/TwilightCouncil', 'WarpInVulcanChampion/TwilightCouncil', 'WarpInReaverChampion/TwilightCouncil', 'WarpInFenixChampion/TwilightCouncil', 'WarpInDarkArchonChampion/TwilightCouncil', 'Cancel'],
'campaigncommon/VoidRiftUnselectable (card index 0)': ['Rally', 'TerranBuild/VoidRiftUnselectable', 'ProtossBuild/VoidRiftUnselectable', 'ZergBuild/VoidRiftUnselectable', 'Cancel'],
'campaigncommon/VoidRiftUnselectable (card index 2)': ['Zealot', 'Stalker', 'Colossus/VoidRiftUnselectable', 'Immortal/VoidRiftUnselectable', 'Carrier/VoidRiftUnselectable', 'Archon/VoidRiftUnselectable', 'Phoenix/VoidRiftUnselectable', 'Oracle/VoidRiftUnselectable', 'Cancel'],
'campaigncommon/VoidRiftUnselectable (card index 3)': ['Zergling/VoidRiftUnselectable', 'Hydralisk/VoidRiftUnselectable', 'Mutalisk/VoidRiftUnselectable', 'Ultralisk/VoidRiftUnselectable', 'MorphToOverseer/VoidRiftUnselectable', 'Roach/VoidRiftUnselectable', 'Aberration/VoidRiftUnselectable', 'BroodLord/VoidRiftUnselectable', 'Viper/VoidRiftUnselectable', 'Cancel'],
'campaigncommon/VoidSeeker': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BunkerLoad', 'BunkerUnloadAll', 'PhaseMineBlast/VoidSeeker'],
'campaigncommon/VoidThrasher (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Rally', 'KaiserWormScourgeMissile/VoidThrasher', 'VoidThrasherLightningAoE/VoidThrasher', 'VoidThrasherLightningAoEExtra/VoidThrasher'],
'campaigncommon/Yagdra': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YagdraFireball/Yagdra', 'YagdraTunnel/Yagdra', 'YagdraFirebreath/Yagdra'],
'campaigncommon/YagdraEggSmall': ['PrimalZergling/YagdraEggSmall', 'PrimalHydralisk/YagdraEggSmall', 'Rally', 'Cancel'],
'campaigncommon/YetiMomma': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/YetiMomma'],
'campaigncommon/Zergling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Baneling/Zergling', 'BurrowDown'],
'challenges/BarracksTechLab': ['ResearchShieldWall/BarracksTechLab', 'Stimpack/BarracksTechLab', 'ResearchPunisherGrenades/BarracksTechLab', 'ReaperSpeed/BarracksTechLab', 'Cancel'],
'challenges/CommandCenter': ['SCV', 'OrbitalCommand/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'challenges/FleetBeacon': ['ResearchVoidRaySpeedUpgrade/FleetBeacon', 'ResearchInterceptorLaunchSpeedUpgrade/FleetBeacon', 'Cancel'],
'challenges/Hatchery': ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Lair/Hatchery', 'Cancel'],
'challenges/InfestationPit': ['EvolvePeristalsis/InfestationPit', 'EvolveInfestorEnergyUpgrade/InfestationPit', 'Cancel'],
'challenges/UltraliskCavern': ['EvolveAnabolicSynthesis2/UltraliskCavern', 'EvolveChitinousPlating/UltraliskCavern', 'Cancel'],
'challenges/Zealot': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Charge/Zealot', 'Rally'],
'libertymulti/BarracksFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechLabBarracks/BarracksFlying', 'Reactor/BarracksFlying', 'Land'],
'libertymulti/Lair': ['Larva', 'Queen', 'ResearchBurrow', 'overlordspeed', 'EvolveVentralSacks', 'RallyEgg', 'Rally', 'Hive/Lair', 'Cancel'],
'libertymulti/OrbitalCommand': ['SCV', 'Rally', 'CalldownMULE/OrbitalCommand', 'SupplyDrop/OrbitalCommand', 'Scan/OrbitalCommand', 'Lift', 'Cancel'],
'libertymulti/Probe (card index 2)': ['TwilightCouncil/Probe', 'Stargate/Probe', 'RoboticsFacility/Probe', 'TemplarArchive/Probe', 'FleetBeacon/Probe', 'RoboticsBay/Probe', 'DarkShrine/Probe', 'Cancel'],
'libertystory/Armory 00': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 01': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 02': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 03': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 04': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 05': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 06': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 07': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 08': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 09': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 10': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 11': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 12': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 13': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 14': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 15': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 16': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 17': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 18': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 19': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 20': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 21': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 22': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 23': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 24': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 25': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 26': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 27': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 28': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 29': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 30': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 31': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 32': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 33': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 34': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 35': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 36': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 37': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 38': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 39': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 40': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 41': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 42': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 43': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 44': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 45': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 46': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 47': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 48': ['TerranVehicleWeaponsLevel2/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 49': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 50': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 51': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 52': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 53': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 54': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 55': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 56': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 57': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 58': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 59': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 60': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 61': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 62': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 63': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 64': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 65': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 66': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 67': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 68': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 69': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 70': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 71': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 72': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 73': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 74': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel2/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 75': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 76': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel2/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 77': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel1/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 78': ['TerranVehicleWeaponsLevel3/Armory', 'TerranVehiclePlatingLevel3/Armory', 'TerranShipWeaponsLevel3/Armory', 'TerranShipPlatingLevel3/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Armory 79': ['TerranVehicleWeaponsLevel1/Armory', 'TerranVehiclePlatingLevel2/Armory', 'TerranShipWeaponsLevel1/Armory', 'TerranShipPlatingLevel1/Armory', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Baneling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Explode/Baneling', 'SapStructure/Baneling', 'BurrowDown'],
'libertystory/BarracksFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactorAI/BarracksFlying', 'Reactor/BarracksFlying', 'Land'],
'libertystory/Battlecruiser': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'YamatoGun', 'MissilePods/Battlecruiser', 'DefensiveMatrix/Battlecruiser'],
'libertystory/CommandCenter 0': ['SCV', 'UpgradeToPlanetaryFortress/CommandCenter', 'Scan/CommandCenter', 'CalldownMULE/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'libertystory/CommandCenter 1': ['SCV', 'UpgradeToPlanetaryFortress/CommandCenter', 'Scan/CommandCenter', 'CalldownMULE/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 0': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 1': ['TerranInfantryWeaponsLevel1/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 2': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 3': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 4': ['TerranInfantryWeaponsLevel2/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 5': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel1/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 6': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel2/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/EngineeringBay 7': ['TerranInfantryWeaponsLevel3/EngineeringBay', 'TerranInfantryArmorLevel3/EngineeringBay', 'ResearchHiSecAutoTracking/EngineeringBay', 'ResearchNeosteelFrame/EngineeringBay', 'UpgradeBuildingArmorLevel1/EngineeringBay', 'SelectBuilder', 'Halt', 'Cancel'],
'libertystory/Factory 0': ['Hellion/Factory', 'SiegeTank/Factory', 'Thor/Factory', 'Predator/Factory', 'Vulture/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'libertystory/Factory 1': ['Hellion/Factory', 'SiegeTank/Factory', 'Thor/Factory', 'Predator/Factory', 'Vulture/Factory', 'Diamondback/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'libertystory/FactoryFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'TechReactorAI/FactoryFlying', 'Reactor/FactoryFlying', 'Land'],
'libertystory/GhostLaserLines (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'NukeCalldown/Ghost', 'GhostHoldFire/Ghost', 'WeaponsFree/Ghost', 'Snipe/Ghost', 'EMP/Ghost', 'CloakOnBanshee', 'CloakOff', 'Cancel'],
'libertystory/HydraliskDen': ['hydraliskspeed/HydraliskDen', 'LurkerDen/HydraliskDen', 'Cancel'],
'libertystory/Larva': ['Drone/Larva', 'Overlord/Larva', 'Zergling/Larva', 'Roach/Larva', 'Hydralisk/Larva', 'Infestor/Larva', 'Scourge/Larva', 'Mutalisk/Larva', 'Corruptor/Larva', 'Ultralisk/Larva', 'Cancel'],
'libertystory/LurkerDen': ['hydraliskspeed/LurkerDen', 'Cancel'],
'libertystory/MercCompound 0': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'SelectBuilder', 'Rally', 'HireDukesRevenge/MercCompound', 'Halt', 'Cancel'],
'libertystory/MercCompound 1': ['HireKelmorianMiners/MercCompound', 'HireDevilDogs/MercCompound', 'HireHammerSecurities/MercCompound', 'HireSpartanCompany/MercCompound', 'HireSiegeBreakers/MercCompound', 'HireHelsAngels/MercCompound', 'HireDuskWing/MercCompound', 'SelectBuilder', 'Rally', 'ReaperSpeed/MercCompound', 'Halt', 'Cancel'],
'libertystory/Odin': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'OdinBarrage/Odin', 'OdinNukeCalldown/Odin', 'Cancel'],
'libertystory/OrbitalCommandFlying': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'CommandCenterLoad', 'BunkerUnloadAll', 'Land'],
'libertystory/Overlord 0': ['Move', 'Stop', 'MoveHoldPosition', 'ColonyInfestation/Overlord', 'Attack', 'MorphToOverseer/Overlord', 'GenerateCreep/Overlord', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'libertystory/Overlord 1': ['Move', 'Stop', 'MoveHoldPosition', 'ColonyInfestation/Overlord', 'Attack', 'MorphToOverseer/Overlord', 'StopGenerateCreep', 'BunkerLoad', 'BunkerUnloadAll', 'Cancel'],
'libertystory/Raven': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildAutoTurret/Raven', 'BuildPointDefenseDrone/Raven', 'HunterSeekerMissile/Raven'],
'libertystory/SCV (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'GatherProt', 'ReturnCargo', 'TerranBuild/SCV', 'TerranBuildAdvanced/SCV', 'Repair', 'Cancel'],
'libertystory/SCV (card index 1) 0': ['CommandCenterOrbRelay/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'libertystory/SCV (card index 1) 1': ['CommandCenter/SCV', 'Refinery/SCV', 'SupplyDepot/SCV', 'Barracks/SCV', 'EngineeringBay/SCV', 'PerditionTurret/SCV', 'Bunker/SCV', 'MissileTurret/SCV', 'SensorTower/SCV', 'HiveMindEmulator/SCV', 'Cancel'],
'libertystory/SS_CarrierBoss': ['SS_CarrierSpawnInterceptor/SS_Plane', 'Attack'],
'libertystory/Selendis': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/Selendis', 'Cancel'],
'libertystory/Spire': ['zergflyerattack1', 'zergflyerarmor1', 'GreaterSpire/Spire', 'Cancel'],
'libertystory/Starport 0': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'BuildHercules/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Lift', 'Cancel'],
'libertystory/Starport 1': ['VikingFighter/Starport', 'Medivac/Starport', 'Raven/Starport', 'Banshee/Starport', 'Battlecruiser/Starport', 'Wraith/Starport', 'BuildHercules/Starport', 'SelectBuilder', 'Rally', 'TechLabStarport/Starport', 'Reactor/Starport', 'TechReactorAI/Starport', 'Halt', 'Cancel'],
'libertystory/StarportTechLab': ['ResearchMedivacEnergyUpgrade/StarportTechLab', 'ResearchDurableMaterials/StarportTechLab', 'ResearchSeekerMissile/StarportTechLab', 'ResearchRavenEnergyUpgrade/StarportTechLab', 'WraithCloak/StarportTechLab', 'Cancel'],
'libertystory/Tassadar': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Feedback/Tassadar', 'PsiStorm/Tassadar', 'Rally'],
'libertystory/Thor': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ImmortalityProtocol/Thor', '250mmStrikeCannons/Thor', 'Cancel'],
'libertystory/WarpPrism': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'PhasingMode/WarpPrism', 'BunkerLoad', 'BunkerUnloadAll'],
'libertystory/Wraith': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'WraithCloakOn/Wraith', 'WraithCloakOff/Wraith'],
'novacampaign/ArtanisVoid (card index 0)': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'ArtanisLightningDash/ArtanisVoid', 'ArtanisAstralWind/ArtanisVoid', 'Rally'],
'novacampaign/Barracks (card index 1)': ['Marine/Barracks', 'Marauder/Barracks', 'Reaper/Barracks', 'Firebat/Barracks', 'Medic/Barracks', 'HireKelmorianMiners/Barracks', 'HireHammerSecurities/Barracks', 'HireDevilDogs/Barracks', 'MercReaper/Barracks', 'MercMedic/Barracks', 'Separatist/Barracks', 'Cancel'],
'novacampaign/BiodomeHalfBuilt': ['BiodomeLoad/BiodomeHalfBuilt', 'BiodomeUnloadAll/BiodomeHalfBuilt'],
'novacampaign/BroodMother': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'BuildCreepTumor/BroodMother', 'QueenBurstHeal/BroodMother', 'DeepTunnel/BroodMother', 'BurrowDown'],
'novacampaign/Bunker 0': ['StopBunker/Bunker', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Halt', 'Cancel'],
'novacampaign/Bunker 1': ['Stop', 'Attack', 'SpiderMine/Bunker', 'SelectBuilder', 'SetBunkerRallyPoint/Bunker', 'Stim', 'BunkerLoad', 'BunkerUnloadAll', 'Salvage/Bunker', 'Cancel'],
'novacampaign/CarrierAiur': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Interceptor/CarrierAiur', 'RepairDrones/CarrierAiur', 'Cancel'],
'novacampaign/Changeling': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Disguise/Changeling'],
'novacampaign/ColonistShip': ['Attack', 'BunkerLoad', 'BunkerUnloadAll', 'Lift'],
'novacampaign/ColonistVehicleUnit': ['Move', 'Stop', 'MoveHoldPosition', 'ParkColonistVehicle/ColonistVehicleUnit', 'StartColonistVehicle/ColonistVehicleUnit'],
'novacampaign/CommandCenter': ['SCV', 'OrbitalCommand/CommandCenter', 'UpgradeToPlanetaryFortress/CommandCenter', 'SelectBuilder', 'Rally', 'CommandCenterLoad', 'CommandCenterUnloadAll', 'Lift', 'Cancel'],
'novacampaign/DehakaMirrorImage': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'Drag/DehakaMirrorImage', 'BurrowDown'],
'novacampaign/Factory (card index 0) 00': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 01': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 02': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 03': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 04': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 05': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 06': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 07': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 08': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 09': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 10': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 11': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 12': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 13': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 14': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 15': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 16': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 17': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 18': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 19': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 20': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 21': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 22': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 23': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 24': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 25': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 26': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 27': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 28': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 29': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 30': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 31': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 32': ['HellionTank/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 33': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 34': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 35': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 36': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 37': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 38': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 39': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 40': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 41': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 42': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 43': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 44': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 45': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 46': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 47': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 48': ['HellionTank/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 49': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 50': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 51': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 52': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 53': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 54': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 55': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 56': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 57': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 58': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 59': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 60': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 61': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 62': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 63': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 64': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 65': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 66': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 67': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 68': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 69': ['Hellion/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 70': ['Hellion/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 71': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 72': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 73': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 74': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 75': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 76': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 77': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'TechReactorAI/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 78': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/Factory (card index 0) 79': ['Vulture/Factory', 'WarHound/Factory', 'BuildCyclone/Factory', 'Thor/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'SelectBuilder', 'Rally', 'TechLabFactory/Factory', 'Reactor/Factory', 'Halt', 'Cancel'],
'novacampaign/Factory (card index 0) 80': ['Vulture/Factory', 'SiegeTank/Factory', 'BuildCyclone/Factory', 'Diamondback/Factory', 'CampaignVehicles/Factory', 'Goliath/Factory', 'MengskUnits/Factory', 'Rally', 'TechReactorAI/Factory', 'Reactor/Factory', 'Lift', 'Cancel'],
'novacampaign/FenixSOA': ['Stop', 'MoveHoldPosition', 'MovePatrol', 'FenixSOACharge/FenixSOA', 'FenixWhirlwind/FenixSOA', 'VoidShieldCapacitor/FenixSOA', 'Rally'],
'novacampaign/Flagship': ['Move', 'Stop', 'MoveHoldPosition', 'MovePatrol', 'Attack', 'CloakOff', 'FlagshipTimeBomb/Flagship', 'FlagshipWarpInPhoenix/Flagship', 'FlagshipWarpInScout/Flagship', 'CloakOnFlagship/Flagship', 'Rally'],