-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCoTtypes.xml
More file actions
2823 lines (2759 loc) · 344 KB
/
CoTtypes.xml
File metadata and controls
2823 lines (2759 loc) · 344 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!-- $Id: CoTtypes.xml,v 1.80 2009/06/10 17:01:00 econnors Exp $
Copyright (C) 2003 MITRE Corporation
Author: Mike Butler <mgb@mitre.org>
Date: 02-Mar-03
Desc: Type mapping for CoT schemas...
This is the mapping from CoT target types to other
message format target types. At present, the CoT type
serves as a prefix for the type. Upper case
strings are taken directly from the mil-std-2525
type hierarchy, lower case characters are CoT
extensions. The matching *is* case sensitive!!!
(This avoids clashes is mil-std-2525 gets extended.)
Note that these types presently are exclusive to
the "atom" part of the CoT hierarchy (a-*) and that
they do not include the initial a-x- prefix.
This allows the same type mapping to be used for all
variants (a-h-, a-f-, a-u-, ...)
Conversion in the inverse direction (from some other
type e.g., TADIL-J to CoT) can be accomplished similarly,
but there is the caveat that the mappings are not
one-to-one. (E.g., several Tadil-J "SAM" types may
map to a single CoT SAM, so it's tough to use the
same table both ways...)
Coversion from CoT types to other display types...
Note that tadil-j displays can't show the full tadil-j
type catalog, so we settle for a few arbitrary mappings...
**NOTE** tadilj mappings are presently overridden in the
Tadilj.pm module!!! (What's here don't matter for TADILJ!)
17-Feb-05
Add in other portions of the MS2525 type tree, specifically
for MOOTW.
-->
<types>
<cot cot="a-.-A" full="Air/Air Track" desc="Air Track" />
<cot cot="a-.-A-C" full="Air/Civ" desc="CIVIL AIRCRAFT" />
<cot cot="a-.-A-C-F" full="Air/Civ/fixed" desc="FIXED WING" />
<cot cot="a-.-A-C-F-q" full="Air/Civ/fixed/rpv, drone, uav" desc="FIXED WING RPV/Drone" />
<cot cot="a-.-A-C-H" full="Air/Civ/rotary" desc="ROTARY WING" />
<cot cot="a-.-A-C-L" full="Air/Civ/Blimp" desc="LIGHTER THAN AIR" />
<cot cot="a-.-A-M-F" full="Air/Mil/Fixed" desc="FIXED WING" />
<cot cot="a-.-A-M-F-g" full="Air/Mil/Fixed/Gunship" desc="FIXED WING GUNSHIP" />
<cot cot="a-.-A-M-F-A" full="Air/Mil/Fixed/Attack/Strike" desc="ATTACK/STRIKE" />
<cot cot="a-.-A-M-F-B" full="Air/Mil/Fixed/Bomber" desc="BOMBER" />
<cot cot="a-.-A-M-F-C" full="Air/Mil/Fixed/Transport" desc="CARGO AIRLIFT (TRANSPORT)" />
<cot cot="a-.-A-M-F-C-H" full="Air/Mil/Fixed/Transport/Heavy" desc="CARGO AIRLIFT (HEAVY)" />
<cot cot="a-.-A-M-F-C-L" full="Air/Mil/Fixed/Transport/Light" desc="CARGO AIRLIFT (LIGHT)" />
<cot cot="a-.-A-M-F-C-M" full="Air/Mil/Fixed/Transport/Medium" desc="CARGO AIRLIFT (MEDIUM)" />
<cot cot="a-.-A-M-F-D" full="Air/Mil/Fixed/C2" desc="AIRBORNE COMMAND POST (C2)" />
<cot cot="a-.-A-M-F-F" full="Air/Mil/Fixed/Fighter" desc="FIGHTER" />
<cot cot="a-.-A-M-F-F-I" full="Air/Mil/Fixed/Interceptor" desc="INTERCEPTOR" />
<cot cot="a-.-A-M-F-H" full="Air/Mil/Fixed/CSAR" desc="COMBAT SEARCH AND RESCUE (CSAR)" />
<cot cot="a-.-A-M-F-J" full="Air/Mil/Fixed/ECM/Jammer" desc="ELECTRONIC COUNTERMEASURES (ECM/JAMMER)" />
<cot cot="a-.-A-M-F-K" full="Air/Mil/Fixed/Tanker" desc="TANKER" />
<cot cot="a-.-A-M-F-L" full="Air/Mil/Fixed/VSTOL" desc="VSTOL" />
<cot cot="a-.-A-M-F-M" full="Air/Mil/Fixed/SOF" desc="SPECIAL OPERATIONS FORCES (SOF)" />
<cot cot="a-.-A-M-F-O" full="Air/Mil/Fixed/MEDEVAC" desc="MEDEVAC" />
<cot cot="a-.-A-M-F-P" full="Air/Mil/Fixed/Patrol" desc="PATROL" />
<cot cot="a-.-A-M-F-P-M" full="Air/Mil/Fixed/Mine Countermeasures" desc="MINE COUNTERMEASURES" />
<cot cot="a-.-A-M-F-P-N" full="Air/Mil/Fixed/ASUW" desc="ANTISURFACE WARFARE/ASUW" />
<cot cot="a-.-A-M-F-Q" full="Air/Mil/Fixed/Drone,RPV,UAV" desc="DRONE (RPV/UAV)" />
<cot cot="a-.-A-M-F-R" full="Air/Mil/Fixed/RECONN" desc="RECONNAISSANCE" />
<cot cot="a-.-A-M-F-R-W" full="Air/Mil/Fixed/AEW" desc="AIRBORNE EARLY WARNING (AEW)" />
<cot cot="a-.-A-M-F-R-X" full="Air/Mil/Fixed/Photo" desc="PHOTOGRAPHIC" />
<cot cot="a-.-A-M-F-R-Z" full="Air/Mil/Fixed/ESM" desc="ELECTRONIC SURVEILLANCE MEASURES" />
<cot cot="a-.-A-M-F-S" full="Air/Mil/Fixed/ASW/Carrier Based" desc="ANTISUBMARINE WARFARE (ASW) CARRIER BASED" />
<cot cot="a-.-A-M-F-T" full="Air/Mil/Fixed/Trainer" desc="TRAINER" />
<cot cot="a-.-A-M-F-U" full="Air/Mil/Fixed/Utility" desc="UTILITY" />
<cot cot="a-.-A-M-F-U-H" full="Air/Mil/Fixed/Utility/Heavy" desc="UTILITY (HEAVY)" />
<cot cot="a-.-A-M-F-U-L" full="Air/Mil/Fixed/Utility/Light" desc="UTILITY (LIGHT)" />
<cot cot="a-.-A-M-F-U-M" full="Air/Mil/Fixed/Utility/Medium" desc="UTILITY (MEDIUM)" />
<cot cot="a-.-A-M-F-Y" full="Air/Mil/Fixed/C3I" desc="COMMUNICATIONS (C3I)" />
<cot cot="a-.-A-M-H" full="Air/Mil/Rotor" desc="ROTARY WING" />
<cot cot="a-.-A-M-H-A" full="Air/Mil/Rotor/Attack" desc="ATTACK" />
<cot cot="a-.-A-M-H-C" full="Air/Mil/Rotor/Transport" desc="CARGO AIRLIFT (TRANSPORT)" />
<cot cot="a-.-A-M-H-C-H" full="Air/Mil/Rotor/Transport/Heavy" desc="CARGO AIRLIFT (HEAVY)" />
<cot cot="a-.-A-M-H-C-L" full="Air/Mil/Rotor/Transport/Light" desc="CARGO AIRLIFT (LIGHT)" />
<cot cot="a-.-A-M-H-C-M" full="Air/Mil/Rotor/Transport/Medium" desc="CARGO AIRLIFT (MEDIUM)" />
<cot cot="a-.-A-M-H-D" full="Air/Mil/Rotor/C2" desc="AIRBORNE COMMAND POST (C2)" />
<cot cot="a-.-A-M-H-H" full="Air/Mil/Rotor/CSAR" desc="COMBAT SEARCH AND RESCUE (CSAR)" />
<cot cot="a-.-A-M-H-I" full="Air/Mil/Rotor/Mine Countermeasures" desc="MINE COUNTERMEASURES" />
<cot cot="a-.-A-M-H-J" full="Air/Mil/Rotor/ECM/Jammer" desc="ELECTRONIC COUNTERMEASURES (ECM/JAMMER)" />
<cot cot="a-.-A-M-H-K" full="Air/Mil/Rotor/Tanker" desc="TANKER" />
<cot cot="a-.-A-M-H-M" full="Air/Mil/Rotor/SOF" desc="SPECIAL OPERATIONS FORCES (SOF)" />
<cot cot="a-.-A-M-H-O" full="Air/Mil/Rotor/MEDEVAC" desc="MEDEVAC" />
<cot cot="a-.-A-M-H-Q" full="Air/Mil/Rotor/Drone,RPV,UAV" desc="DRONE (RPV/UAV)" />
<cot cot="a-.-A-M-H-R" full="Air/Mil/Rotor/Reconnaissance" desc="RECONNAISSANCE" />
<cot cot="a-.-A-M-H-S" full="Air/Mil/Rotor/ASW/MPA" desc="ANTISUBMARINE WARFARE/MPA" />
<cot cot="a-.-A-M-H-T" full="Air/Mil/Rotor/Trainer" desc="TRAINER" />
<cot cot="a-.-A-M-H-U" full="Air/Mil/Rotor/Utility" desc="UTILITY" />
<cot cot="a-.-A-M-H-U-H" full="Air/Mil/Rotor/Utility/Heavy)" desc="UTILITY (HEAVY)" />
<cot cot="a-.-A-M-H-U-L" full="Air/Mil/Rotor/Utility/Light)" desc="UTILITY (LIGHT)" />
<cot cot="a-.-A-M-H-U-M" full="Air/Mil/Rotor/Utility/Medium)" desc="UTILITY (MEDIUM)" />
<cot cot="a-.-A-M-L" full="Air/Mil/Blimp" desc="LIGHTER THAN AIR" />
<cot cot="a-.-A-W" full="Air/Weapon" desc="WEAPON" />
<cot cot="a-.-A-W-D" full="Air/Weapon/Decoy" desc="DECOY" />
<cot cot="a-.-A-W-M" full="Air/Weapon/Missile In Flight" desc="MISSILE IN FLIGHT" />
<cot cot="a-.-A-W-M-A" full="Air/Weapon/Missile/Air Launched" desc="AIR LAUNCHED MISSILE" />
<cot cot="a-.-A-W-M-A-A" full="Air/Weapon/Missile/Air To Air" desc="AIR TO AIR MISSILE (AAM)" />
<cot cot="a-.-A-W-M-A-S" full="Air/Weapon/Missile/Air To Surface" desc="AIR TO SURFACE MISSILE (ASM)" />
<cot cot="a-.-A-W-M-L" full="Air/Weapon/Missile/Attack Missile" desc="LAND ATTACK MISSILE" />
<cot cot="a-.-A-W-M-S" full="Air/Weapon/Missile/Land Launched Missile" desc="SURFACE/LAND LAUNCHED MISSILE" />
<cot cot="a-.-A-W-M-S-A" full="Air/Weapon/Missile/SAM" desc="SURFACE TO AIR MISSILE (SAM)" />
<cot cot="a-.-A-W-M-S-A-f" full="Air/Weapon/Missile/SAM/FixedSite" desc="SAM (FixedSite)" />
<cot cot="a-.-A-W-M-S-A-i" full="Air/Weapon/Missile/SAM/Manpad" desc="SAM (Manpad)" />
<cot cot="a-.-A-W-M-S-A-m" full="Air/Weapon/Missile/SAM/Mobile" desc="SAM (Mobile)" />
<cot cot="a-.-A-W-M-S-S" full="Air/Weapon/Missile/Surface To Surface (SSM)" desc="SURFACE TO SURFACE MISSILE (SSM)" />
<cot cot="a-.-A-W-M-U" full="Air/Weapon/Missile/Subsurface To Surface (S/SSM)" desc="SUBSURFACE TO SURFACE MISSILE (S/SSM)" />
<cot cot="a-.-G" full="Ground" desc="GROUND TRACK" />
<cot cot="a-.-G-E" full="Gnd/Equipment" desc="EQUIPMENT" />
<cot cot="a-.-G-E-S" full="Gnd/Equip/Sensor" desc="SENSOR" />
<cot cot="a-.-G-E-S-E" full="Gnd/Equip/Sensor/Emplaced" desc="EMPLACED SENSOR" />
<cot cot="a-.-G-E-S-R" full="Gnd/Equip/Sensor/Radar" desc="RADAR" />
<cot cot="a-.-G-E-V" full="Gnd/Equip/Vehicle" desc="GROUND VEHICLE" />
<cot cot="a-.-G-E-V-A" full="Gnd/Equip/Vehic/Armor/Gun" desc="Armor (GUN)" />
<cot cot="a-.-G-E-V-A-A" full="Gnd/Equip/Vehic/Armor/Apc" desc="Armor (APC)" />
<cot cot="a-.-G-E-V-A-A-R" full="Gnd/Equip/Vehic/Armor/Apc/Recovery" desc="ARMORED PERSONNEL CARRIER RECOVERY" />
<cot cot="a-.-G-E-V-A-C" full="Gnd/Equip/Vehic/Armor/C2V/ACV" desc="C2V/ACV" />
<cot cot="a-.-G-E-V-A-I" full="Gnd/Equip/Vehic/Armor/Infantry" desc="ARMORED INFANTRY" />
<cot cot="a-.-G-E-V-A-L" full="Gnd/Equip/Vehic/Armor/Light" desc="LIGHT ARMORED VEHICLE" />
<cot cot="a-.-G-E-V-A-S" full="Gnd/Equip/Vehic/Armor/Combat Service Support" desc="COMBAT SERVICE SUPPORT VEHICLE" />
<cot cot="a-.-G-E-V-A-T" full="Gnd/Equip/Vehic/Armor/Tank" desc="TANK" />
<cot cot="a-.-G-E-V-A-T-H" full="Gnd/Equip/Vehic/Armor/Tank/Heavy" desc="TANK HEAVY" />
<cot cot="a-.-G-E-V-A-T-H-R" full="Gnd/Equip/Vehic/Armor/Tank/Heavy/Recovery" desc="TANK HEAVY RECOVERY" />
<cot cot="a-.-G-E-V-A-T-L" full="Gnd/Equip/Vehic/Armor/Tank/Light" desc="TANK LIGHT" />
<cot cot="a-.-G-E-V-A-T-L-R" full="Gnd/Equip/Vehic/Armor/Tank/Light/Recovery" desc="TANK LIGHT RECOVERY" />
<cot cot="a-.-G-E-V-A-T-M" full="Gnd/Equip/Vehic/Armor/Tank/Medium" desc="TANK MEDIUM" />
<cot cot="a-.-G-E-V-A-T-M-R" full="Gnd/Equip/Vehic/Armor/Tank/Medium/Recovery" desc="TANK MEDIUM RECOVERY" />
<cot cot="a-.-G-E-V-C" full="Gnd/Equip/Vehic/Civilian" desc="CIVILIAN VEHICLE" />
<cot cot="a-.-G-E-V-E" full="Gnd/Equip/Vehic/Engineer" desc="ENGINEER VEHICLE" />
<cot cot="a-.-G-E-V-E-A" full="Gnd/Equip/Vehic/Mine Clearing Vehicle" desc="MINE CLEARING VEHICLE" />
<cot cot="a-.-G-E-V-E-A-A" full="Gnd/Equip/Vehic/Armored Mounted Mine Clearing Vehicle" desc="ARMORED MOUNTED MINE CLEARING VEHICLE" />
<cot cot="a-.-G-E-V-E-A-T" full="Gnd/Equip/Vehic/Trailer Mounted Mine Clearing Vehicle" desc="TRAILER MOUNTED MINE CLEARING VEHICLE" />
<cot cot="a-.-G-E-V-E-B" full="Gnd/Equip/Vehic/Bridge" desc="BRIDGE" />
<cot cot="a-.-G-E-V-E-C" full="Gnd/Equip/Vehic/Construction" desc="CONSTRUCTION VEHICLE" />
<cot cot="a-.-G-E-V-E-D" full="Gnd/Equip/Vehic/Dozer" desc="DOZER" />
<cot cot="a-.-G-E-V-E-E" full="Gnd/Equip/Vehic/Earthmover" desc="EARTHMOVER" />
<cot cot="a-.-G-E-V-E-M" full="Gnd/Equip/Vehic/Mine Laying Vehicle" desc="MINE LAYING VEHICLE" />
<cot cot="a-.-G-E-V-E-M-L" full="Gnd/Equip/Vehic/Truck Mounted With Volcano" desc="TRUCK MOUNTED WITH VOLCANO" />
<cot cot="a-.-G-E-V-E-M-V" full="Gnd/Equip/Vehic/Armored Carrier With Volcano" desc="ARMORED CARRIER WITH VOLCANO" />
<cot cot="a-.-G-E-V-T" full="Gnd/Equip/Vehic/Locomotive" desc="Locomotive" />
<cot cot="a-.-G-E-V-U" full="Gnd/Equip/Vehic/Utility" desc="UTILITY VEHICLE" />
<cot cot="a-.-G-E-V-U-B" full="Gnd/Equip/Vehic/Bus" desc="BUS" />
<cot cot="a-.-G-E-V-U-L" full="Gnd/Equip/Vehic/Limited Cross Country Truck" desc="LIMITED CROSS COUNTRY TRUCK" />
<cot cot="a-.-G-E-V-U-R" full="Gnd/Equip/Vehic/Boat" desc="WATER CRAFT" />
<cot cot="a-.-G-E-V-U-R-l" full="Gnd/Equip/Vehic/Boat/Large" desc="Boat (Large)" />
<cot cot="a-.-G-E-V-U-R-m" full="Gnd/Equip/Vehic/Boat/Med" desc="Boat (Med)" />
<cot cot="a-.-G-E-V-U-R-s" full="Gnd/Equip/Vehic/Boat/Small" desc="Boat (Small)" />
<cot cot="a-.-G-E-V-U-S" full="Gnd/Equip/Vehic/Semi" desc="SEMI" />
<cot cot="a-.-G-E-V-U-X" full="Gnd/Equip/Vehic/Cross Country Truck" desc="CROSS COUNTRY TRUCK" />
<cot cot="a-.-G-E-V-m" full="Gnd/Equip/Vehic/Ambulance" desc="Ambulance" />
<cot cot="a-.-G-E-W" full="Gnd/Equip/Weapon" desc="WEAPON" />
<cot cot="a-.-G-E-W-A" full="Gnd/Equip/Weapon/Air Defense Gun" desc="AIR DEFENSE GUN" />
<cot cot="a-.-G-E-W-A-H" full="Gnd/Equip/Weapon/AAA/Heavy" desc="AAA (Heavy)" />
<cot cot="a-.-G-E-W-A-L" full="Gnd/Equip/Weapon/AAA/Light" desc="AAA (Light)" />
<cot cot="a-.-G-E-W-A-M" full="Gnd/Equip/Weapon/AAA/Medium" desc="AAA (Medium)" />
<cot cot="a-.-G-E-W-D" full="Gnd/Equip/Weapon/DirectFire/" desc="DIRECT FIRE GUN" />
<cot cot="a-.-G-E-W-D-H" full="Gnd/Equip/Weapon/DirectFire/Heavy" desc="DIRECT FIRE GUN HEAVY" />
<cot cot="a-.-G-E-W-D-H-S" full="Gnd/Equip/Weapon/DirectFire/Heavy/Self Propelled" desc="DIRECT FIRE GUN HEAVY SELF PROPELLED" />
<cot cot="a-.-G-E-W-D-L" full="Gnd/Equip/Weapon/DirectFire/Light" desc="DIRECT FIRE GUN LIGHT" />
<cot cot="a-.-G-E-W-D-L-S" full="Gnd/Equip/Weapon/DirectFire/Light/Self Propelled" desc="DIRECT FIRE GUN LIGHT SELF PROPELLED" />
<cot cot="a-.-G-E-W-D-M" full="Gnd/Equip/Weapon/DirectFire/Medium" desc="DIRECT FIRE GUN MEDIUM" />
<cot cot="a-.-G-E-W-D-M-S" full="Gnd/Equip/Weapon/DirectFire/Medium/Self Propelled" desc="DIRECT FIRE GUN MEDIUM SELF PROPELLED" />
<cot cot="a-.-G-E-W-G" full="Gnd/Equip/Weapon/AnitTankGun" desc="ANTI TANK GUN" />
<cot cot="a-.-G-E-W-G-H" full="Gnd/Equip/Weapon/Atg/Heavy" desc="ANTI TANK GUN HEAVY" />
<cot cot="a-.-G-E-W-G-L" full="Gnd/Equip/Weapon/Atg/Light" desc="ANTI TANK GUN LIGHT" />
<cot cot="a-.-G-E-W-G-M" full="Gnd/Equip/Weapon/Atg/Medium" desc="ANTI TANK GUN MEDIUM" />
<cot cot="a-.-G-E-W-G-R" full="Gnd/Equip/Weapon/Atg/Recoilless" desc="ANTI TANK GUN RECOILLESS" />
<cot cot="a-.-G-E-W-H" full="Gnd/Equip/Weapon/Howitzer" desc="HOWITZER" />
<cot cot="a-.-G-E-W-H-H" full="Gnd/Equip/Weapon/Howitzer/Heavy" desc="HOWITZER HEAVY" />
<cot cot="a-.-G-E-W-H-H-S" full="Gnd/Equip/Weapon/Howitzer/Heavy/Self Propelled" desc="HOWITZER HEAVY SELF PROPELLED" />
<cot cot="a-.-G-E-W-H-L" full="Gnd/Equip/Weapon/Howitzer/Light" desc="HOWITZER LIGHT" />
<cot cot="a-.-G-E-W-H-L-S" full="Gnd/Equip/Weapon/Howitzer/Light/Self Propelled" desc="HOWITZER LIGHT SELF PROPELLED" />
<cot cot="a-.-G-E-W-H-M" full="Gnd/Equip/Weapon/Howitzer/Medium" desc="HOWITZER MEDIUM" />
<cot cot="a-.-G-E-W-H-M-S" full="Gnd/Equip/Weapon/Howitzer/Medium/Self Propelled" desc="HOWITZER MEDIUM SELF PROPELLED" />
<cot cot="a-.-G-E-W-M" full="Gnd/Equip/Weapon/MissileLauncher" desc="MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-A" full="Gnd/Equip/Weapon/MissileLauncher/Ad/Air Defense" desc="AIR DEFENSE (AD) MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-A-I" full="Gnd/Equip/Weapon/MissileLauncher/Ad/Intermediate Range" desc="INTERMEDIATE RANGE AD MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-A-L" full="Gnd/Equip/Weapon/MissileLauncher/Ad/Long Range" desc="LONG RANGE AD MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-A-S" full="Gnd/Equip/Weapon/MissileLauncher/Ad/Short Range" desc="SHORT RANGE AD MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-A-T" full="Gnd/Equip/Weapon/MissileLauncher/Ad/Theater" desc="AD MISSILE LAUNCHER THEATER" />
<cot cot="a-.-G-E-W-M-S" full="Gnd/Equip/Weapon/MissileLauncher/SS/Surface Surf (SS)" desc="SURF SURF (SS) MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-S-I" full="Gnd/Equip/Weapon/MissileLauncher/SS/Intermediate Range" desc="INTERMEDIATE RANGE SS MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-S-L" full="Gnd/Equip/Weapon/MissileLauncher/SS/Long Range" desc="LONG RANGE SS MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-S-S" full="Gnd/Equip/Weapon/MissileLauncher/SS/Short Range" desc="SHORT RANGE SS MISSILE LAUNCHER" />
<cot cot="a-.-G-E-W-M-T" full="Gnd/Equip/Weapon/MissileLauncher/AT/Antitank" desc="MISSILE LAUNCHER ANTITANK (AT)" />
<cot cot="a-.-G-E-W-M-T-H" full="Gnd/Equip/Weapon/MissileLauncher/AT/Heavy" desc="MISSILE LAUNCHER AT HEAVY" />
<cot cot="a-.-G-E-W-M-T-L" full="Gnd/Equip/Weapon/MissileLauncher/AT/Light" desc="MISSILE LAUNCHER AT LIGHT" />
<cot cot="a-.-G-E-W-M-T-M" full="Gnd/Equip/Weapon/MissileLauncher/AT/Medium" desc="MISSILE LAUNCHER AT MEDIUM" />
<cot cot="a-.-G-E-W-O" full="Gnd/Equip/Weapon/Mortar" desc="MORTAR" />
<cot cot="a-.-G-E-W-O-H" full="Gnd/Equip/Weapon/Mortar/Heavy" desc="MORTAR HEAVY" />
<cot cot="a-.-G-E-W-O-L" full="Gnd/Equip/Weapon/Mortar/Light" desc="MORTAR LIGHT" />
<cot cot="a-.-G-E-W-O-M" full="Gnd/Equip/Weapon/Mortar/Medium" desc="MORTAR MEDIUM" />
<cot cot="a-.-G-E-W-R" full="Gnd/Equip/Weapon/Rifle/Automatic Weapon" desc="RIFLE/AUTOMATIC WEAPON" />
<cot cot="a-.-G-E-W-R-H" full="Gnd/Equip/Weapon/Rifle/Heavy Machine Gun" desc="HEAVY MACHINE GUN" />
<cot cot="a-.-G-E-W-R-L" full="Gnd/Equip/Weapon/Rifle/Light Machine Gun" desc="LIGHT MACHINE GUN" />
<cot cot="a-.-G-E-W-R-R" full="Gnd/Equip/Weapon/Rifle/Rifle" desc="RIFLE" />
<cot cot="a-.-G-E-W-S" full="Gnd/Equip/Weapon/RocketLauncher/Single/" desc="SINGLE ROCKET LAUNCHER" />
<cot cot="a-.-G-E-W-S-H" full="Gnd/Equip/Weapon/RocketLauncher/Single/Heavy" desc="SINGLE ROCKET LAUNCHER HEAVY" />
<cot cot="a-.-G-E-W-S-L" full="Gnd/Equip/Weapon/RocketLauncher/Single/Light" desc="SINGLE ROCKET LAUNCHER LIGHT" />
<cot cot="a-.-G-E-W-S-M" full="Gnd/Equip/Weapon/RocketLauncher/Single/Medium" desc="SINGLE ROCKET LAUNCHER MEDIUM" />
<cot cot="a-.-G-E-W-T" full="Gnd/Equip/Weapon/RocketLauncher/AntiTank" desc="ANTI TANK ROCKET LAUNCHER" />
<cot cot="a-.-G-E-W-T-H" full="Gnd/Equip/Weapon/RocketLauncher/AT/Heavy" desc="ANTI TANK ROCKET LAUNCHER HEAVY" />
<cot cot="a-.-G-E-W-T-L" full="Gnd/Equip/Weapon/RocketLauncher/AT/Light" desc="ANTI TANK ROCKET LAUNCHER LIGHT" />
<cot cot="a-.-G-E-W-T-M" full="Gnd/Equip/Weapon/RocketLauncher/AT/Medium" desc="ANTI TANK ROCKET LAUNCHER MEDIUM" />
<cot cot="a-.-G-E-W-X" full="Gnd/Equip/Weapon/RocketLauncher/Multiple " desc="MULTIPLE ROCKET LAUNCHER" />
<cot cot="a-.-G-E-W-X-H" full="Gnd/Equip/Weapon/RocketLauncher/Multiple/Heavy" desc="MULTIPLE ROCKET LAUNCHER HEAVY" />
<cot cot="a-.-G-E-W-X-L" full="Gnd/Equip/Weapon/RocketLauncher/Multiple/Light" desc="MULTIPLE ROCKET LAUNCHER LIGHT" />
<cot cot="a-.-G-E-W-X-M" full="Gnd/Equip/Weapon/RocketLauncher/Multiple/Medium" desc="MULTIPLE ROCKET LAUNCHER MEDIUM" />
<cot cot="a-.-G-E-W-Z" full="Gnd/Equip/Weapon/Grenade Launcher" desc="GRENADE LAUNCHER" />
<cot cot="a-.-G-E-W-Z-H" full="Gnd/Equip/Weapon/Grenade Launcher/Heavy" desc="GRENADE LAUNCHER HEAVY" />
<cot cot="a-.-G-E-W-Z-L" full="Gnd/Equip/Weapon/Grenade Launcher/Light" desc="GRENADE LAUNCHER LIGHT" />
<cot cot="a-.-G-E-W-Z-M" full="Gnd/Equip/Weapon/Grenade Launcher/Medium" desc="GRENADE LAUNCHER MEDIUM" />
<cot cot="a-.-G-E-X" full="Gnd/Equip/Special Equipment" desc="SPECIAL EQUIPMENT" />
<cot cot="a-.-G-E-X-F" full="Gnd/Equip/Flame Thrower" desc="FLAME THROWER" />
<cot cot="a-.-G-E-X-L" full="Gnd/Equip/Laser" desc="LASER" />
<cot cot="a-.-G-E-X-M" full="Gnd/Equip/Land Mines" desc="LAND MINES" />
<cot cot="a-.-G-E-X-M-C" full="Gnd/Equip/Claymore" desc="CLAYMORE" />
<cot cot="a-.-G-E-X-M-L" full="Gnd/Equip/Less Than Lethal" desc="LESS THAN LETHAL" />
<cot cot="a-.-G-E-X-N" full="Gnd/Equip/Nbc Equipment" desc="NBC EQUIPMENT" />
<cot cot="a-.-G-I" full="Gnd/Building" desc="Building" />
<cot cot="a-.-G-I-B" full="Gnd/Structure/Base/Military" desc="MILITARY BASE/FACILITY" />
<cot cot="a-.-G-I-B-A" full="Gnd/Structure/Base/Airbase" desc="AIRPORT/AIRBASE" />
<cot cot="a-.-G-I-B-N" full="Gnd/Structure/Base/Naval Base" desc="SEAPORT/NAVAL BASE" />
<!-- Begin section that incorporates experimental extensions to support Incident Management facilities -->
<cot cot="a-.-G-I-c" full="Gnd/Structure/Civilian" desc="Civilian" />
<cot cot="a-.-G-I-c-b" full="Gnd/Structure/Civilian/Bridge" desc="Bridge" />
<cot cot="a-.-G-I-c-bar" full="Gnd/Structure/Civilian/Fence or Wall or Barrier" desc="Fence/Wall/Barrier" />
<cot cot="a-.-G-I-c-can" full="Gnd/Structure/Civilian/Canal" desc="Canal" />
<cot cot="a-.-G-I-c-can-l" full="Gnd/Structure/Civilian/Canal/Lock" desc="Canal Lock" />
<cot cot="a-.-G-I-c-frm" full="Gnd/Structure/Civilian/Farm" desc="Farm" />
<cot cot="a-.-G-I-c-l" full="Gnd/Structure/Civilian/Levee" desc="Levy" />
<cot cot="a-.-G-I-c-mon" full="Gnd/Structure/Civilian/Monument" desc="Monument" />
<cot cot="a-.-G-I-c-o" full="Gnd/Structure/Civilian/Offices" desc="Offices" />
<cot cot="a-.-G-I-c-rah" full="Gnd/Structure/Civilian/Residence or Apartment or Hotel" desc="Residence/Apartment/Hotel" />
<cot cot="a-.-G-I-c-rel" full="Gnd/Structure/Civilian/Religous" desc="Religous" />
<cot cot="a-.-G-I-c-res" full="Gnd/Structure/Civilian/Resevoir" desc="Resevoir" />
<cot cot="a-.-G-I-c-ret" full="Gnd/Structure/Civilian/Retail" desc="Retail" />
<cot cot="a-.-G-I-c-sch" full="Gnd/Structure/Civilian/School" desc="School" />
<cot cot="a-.-G-I-c-vip" full="Gnd/Structure/Civilian/VIP" desc="VIP" />
<cot cot="a-.-G-I-c-whs" full="Gnd/Structure/Civilian/Warehouse" desc="Warehouse" />
<cot cot="a-.-G-I-E" full="Gnd/Structure/Factory" desc="EQUIPMENT MANUFACTURE" />
<cot cot="a-.-G-I-E-h" full="Gnd/Structure/Factory/Heavy" desc="Heavy" />
<cot cot="a-.-G-I-E-l" full="Gnd/Structure/Factory/Light" desc="Light" />
<cot cot="a-.-G-I-E-o" full="Gnd/Structure/Factory/Plant Other" desc="Plant Other" />
<cot cot="a-.-G-I-G" full="Gnd/Structure/Government" desc="GOVERNMENT LEADERSHIP" />
<cot cot="a-.-G-I-i" full="Gnd/Structure/IM Facilities" desc="IM Facilities" />
<cot cot="a-.-G-I-i-e" full="Gnd/Structure/IM Facilities/Emergency Management" desc="Emergency Management" />
<cot cot="a-.-G-I-i-e-eoc" full="Gnd/Structure/IM Facilities/Emergency Management/Emergency Operations Center" desc="Emergency Operations Center" />
<cot cot="a-.-G-I-i-e-ic" full="Gnd/Structure/IM Facilities/Emergency Management/Incident Commander" desc="Incident Commander" />
<cot cot="a-.-G-I-i-e-icc" full="Gnd/Structure/IM Facilities/Emergency Management/Incident Communications Center" desc="Incident Communications Center" />
<cot cot="a-.-G-I-i-e-icp" full="Gnd/Structure/IM Facilities/Emergency Management/Incident Command Post" desc="Incident Command Post" />
<cot cot="a-.-G-I-i-e-wr" full="Gnd/Structure/IM Facilities/Emergency Management/War Room" desc="War Room" />
<cot cot="a-.-G-I-i-f" full="Gnd/Structure/IM Facilities/Fire and Hazmat" desc="Fire/Hazmat" />
<cot cot="a-.-G-I-i-f-fd" full="Gnd/Structure/IM Facilities/Fire and Hazmat/Fire Department" desc="Fire Department" />
<cot cot="a-.-G-I-i-h" full="Gnd/Structure/IM Facilities/Health and Medical" desc="Health and Medical" />
<cot cot="a-.-G-I-i-h-md" full="Gnd/Structure/IM Facilities/Health and Medical/Medical Dispatch" desc="Medical Dispatch" />
<cot cot="a-.-G-I-i-l" full="Gnd/Structure/IM Facilities/Law Enforcement" desc="Law Enforcement" />
<cot cot="a-.-G-I-i-l-cp" full="Gnd/Structure/IM Facilities/Law Enforcement/Police Checkpoint" desc="Police Checkpoint" />
<cot cot="a-.-G-I-i-l-hp" full="Gnd/Structure/IM Facilities/Law Enforcement/Highway Patrol" desc="Highway Patrol" />
<cot cot="a-.-G-I-i-l-lp" full="Gnd/Structure/IM Facilities/Law Enforcement/Local Police" desc="Local Police" />
<cot cot="a-.-G-I-i-l-ntz" full="Gnd/Structure/IM Facilities/Law Enforcement/No Trespassing Zone" desc="No Trespassing Zone" />
<cot cot="a-.-G-I-i-l-sd" full="Gnd/Structure/IM Facilities/Law Enforcement/Sheriffs Department" desc="Sheriffs Department" />
<cot cot="a-.-G-I-i-l-sp" full="Gnd/Structure/IM Facilities/Law Enforcement/State Police" desc="State Police" />
<cot cot="a-.-G-I-i-m" full="Gnd/Structure/IM Facilities/Emergency Medical Services" desc="Emergency Medical Services" />
<cot cot="a-.-G-I-i-o" full="Gnd/Structure/IM Facilities/Other" desc="Other" />
<cot cot="a-.-G-I-i-o-ad" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch" desc="Agency Dispatch" />
<cot cot="a-.-G-I-i-o-ad-ems" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/EMS" desc="EMS" />
<cot cot="a-.-G-I-i-o-ad-f" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Fire" desc="Fire" />
<cot cot="a-.-G-I-i-o-ad-hwy" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Highway" desc="Highway" />
<cot cot="a-.-G-I-i-o-ad-mda" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Media" desc="Media" />
<cot cot="a-.-G-I-i-o-ad-pl" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Police Local" desc="Police Local" />
<cot cot="a-.-G-I-i-o-ad-ps" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Police Station" desc="Police Station" />
<cot cot="a-.-G-I-i-o-ad-tow" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Tow" desc="Tow" />
<cot cot="a-.-G-I-i-o-ad-ts" full="Gnd/Structure/IM Facilities/Other/Agency Dispatch/Transit" desc="Transit" />
<cot cot="a-.-G-I-i-o-bcc" full="Gnd/Structure/IM Facilities/Other/Border Control Checkpoint" desc="Border Control Checkpoint" />
<cot cot="a-.-G-I-i-o-dmz" full="Gnd/Structure/IM Facilities/Other/DMZ" desc="DMZ" />
<cot cot="a-.-G-I-i-o-isp" full="Gnd/Structure/IM Facilities/Other/Independent Service Provider" desc="Independent Service Provider" />
<cot cot="a-.-G-I-i-o-mc" full="Gnd/Structure/IM Facilities/Other/Mobile Center" desc="Mobile Center" />
<cot cot="a-.-G-I-i-o-mc-f" full="Gnd/Structure/IM Facilities/Other/Mobile Center/Fire" desc="Fire" />
<cot cot="a-.-G-I-i-o-mc-h" full="Gnd/Structure/IM Facilities/Other/Mobile Center/Medical" desc="Medical" />
<cot cot="a-.-G-I-i-o-mc-l" full="Gnd/Structure/IM Facilities/Other/Mobile Center/Law Enforcement" desc="Law Enforcement" />
<cot cot="a-.-G-I-i-o-mes" full="Gnd/Structure/IM Facilities/Other/Message Center" desc="Message Center" />
<cot cot="a-.-G-I-i-o-mob" full="Gnd/Structure/IM Facilities/Other/Mobilization Center" desc="Mobilization Center" />
<cot cot="a-.-G-I-i-o-mob-ems" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/EMS" desc="EMS" />
<cot cot="a-.-G-I-i-o-mob-es" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Transit" desc="Transit" />
<cot cot="a-.-G-I-i-o-mob-f" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Fire" desc="Fire" />
<cot cot="a-.-G-I-i-o-mob-hwy" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Highway" desc="Highway" />
<cot cot="a-.-G-I-i-o-mob-mda" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Media" desc="Media" />
<cot cot="a-.-G-I-i-o-mob-pl" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Police Local" desc="Ploce Local" />
<cot cot="a-.-G-I-i-o-mob-ps" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Police Station" desc="Police Station" />
<cot cot="a-.-G-I-i-o-mob-tow" full="Gnd/Structure/IM Facilities/Other/Mobilization Center/Tow" desc="Tow" />
<cot cot="a-.-G-I-i-o-ps" full="Gnd/Structure/IM Facilities/Other/Public Safety" desc="Public Safety" />
<cot cot="a-.-G-I-i-o-rl" full="Gnd/Structure/IM Facilities/Other/Reporting Locations" desc="Reporting Locations" />
<cot cot="a-.-G-I-i-o-sa" full="Gnd/Structure/IM Facilities/Other/Staging Area" desc="Staging Area" />
<cot cot="a-.-G-I-i-o-sa-ems" full="Gnd/Structure/IM Facilities/Other/Staging Area/EMS" desc="EMS" />
<cot cot="a-.-G-I-i-o-sa-f" full="Gnd/Structure/IM Facilities/Other/Staging Area/Fire" desc="Fire" />
<cot cot="a-.-G-I-i-o-sa-hwy" full="Gnd/Structure/IM Facilities/Other/Staging Area/Highway" desc="Highway" />
<cot cot="a-.-G-I-i-o-sa-mda" full="Gnd/Structure/IM Facilities/Other/Staging Area/Media" desc="Media" />
<cot cot="a-.-G-I-i-o-sa-pl" full="Gnd/Structure/IM Facilities/Other/Staging Area/Police Local" desc="Police Local" />
<cot cot="a-.-G-I-i-o-sa-ps" full="Gnd/Structure/IM Facilities/Other/Staging Area/Police Station" desc="Police Station" />
<cot cot="a-.-G-I-i-o-sa-tow" full="Gnd/Structure/IM Facilities/Other/Staging Area/Tow" desc="Tow" />
<cot cot="a-.-G-I-i-o-sa-ts" full="Gnd/Structure/IM Facilities/Other/Staging Area/Transit" desc="Transit" />
<cot cot="a-.-G-I-i-o-sc" full="Gnd/Structure/IM Facilities/Other/Security Checkpoint" desc="Security Checkpoint" />
<cot cot="a-.-G-I-i-o-seg" full="Gnd/Structure/IM Facilities/Other/Segment" desc="Segment" />
<cot cot="a-.-G-I-i-o-t" full="Gnd/Structure/IM Facilities/Other/Transportation" desc="Transportation" />
<cot cot="a-.-G-I-i-o-t-im" full="Gnd/Structure/IM Facilities/Other/Transportation/Transit Incident Management Center" desc="Transit Incident Management Center" />
<cot cot="a-.-G-I-i-o-t-tc" full="Gnd/Structure/IM Facilities/Other/Transportation/Transit Management Center" desc="Transit Management Center" />
<cot cot="a-.-G-I-i-o-t-td" full="Gnd/Structure/IM Facilities/Other/Transportation/Traffic Inc Service Patrol Dispatch" desc="Traffic Inc Service Patrol Dispatch" />
<cot cot="a-.-G-I-i-o-t-tm" full="Gnd/Structure/IM Facilities/Other/Transportation/Traffic Management Center" desc="Traffic Management Center" />
<cot cot="a-.-G-I-i-o-tmp" full="Gnd/Structure/IM Facilities/Other/Temp" desc="Temporary" />
<cot cot="a-.-G-I-i-o-tmp-f" full="Gnd/Structure/IM Facilities/Other/Temp/Fire" desc="Fire" />
<cot cot="a-.-G-I-i-o-tmp-h" full="Gnd/Structure/IM Facilities/Other/Temp/Medical" desc="Medical" />
<cot cot="a-.-G-I-i-o-tmp-l" full="Gnd/Structure/IM Facilities/Other/Temp/Law Enforcement" desc="Law Enforcement" />
<cot cot="a-.-G-I-i-p" full="Gnd/Structure/IM Facilities/Public Works" desc="Public Works" />
<cot cot="a-.-G-I-M" full="Gnd/Structure/Mil/Military Materiel Facility" desc="MILITARY MATERIEL FACILITY" />
<cot cot="a-.-G-I-M-A" full="Gnd/Structure/Mil/Aircraft Production" desc="AIRCRAFT PRODUCTION/ASSEMBLY" />
<cot cot="a-.-G-I-M-C" full="Gnd/Structure/Mil/NBC Warfare Production" desc="CHEMICAL/BIOLOGICAL WARFARE PRODUCTION" />
<cot cot="a-.-G-I-M-E" full="Gnd/Structure/Mil/Ammunition Production" desc="AMMUNITION AND EXPLOSIVES PRODUCTION" />
<cot cot="a-.-G-I-M-F" full="Gnd/Structure/Mil/Nuclear Energy" desc="NUCLEAR ENERGY" />
<cot cot="a-.-G-I-M-F-A" full="Gnd/Structure/Mil/Atomic Energy Reactor" desc="ATOMIC ENERGY REACTOR" />
<cot cot="a-.-G-I-M-F-P" full="Gnd/Structure/Mil/Nuclear Material Production" desc="NUCLEAR MATERIAL PRODUCTION" />
<cot cot="a-.-G-I-M-F-P-W" full="Gnd/Structure/Mil/Nuclear/Weapons Grade" desc="WEAPONS GRADE" />
<cot cot="a-.-G-I-M-F-S" full="Gnd/Structure/Mil/Nuclear Material Storage" desc="NUCLEAR MATERIAL STORAGE" />
<cot cot="a-.-G-I-M-G" full="Gnd/Structure/Mil/Armament Production" desc="ARMAMENT PRODUCTION" />
<cot cot="a-.-G-I-M-M" full="Gnd/Structure/Mil/Missile+Space System Production" desc="MISSILE/SPACE SYSTEM PRODUCTION" />
<cot cot="a-.-G-I-M-N" full="Gnd/Structure/Mil/Engineering Equipment Production" desc="ENGINEERING EQUIPMENT PRODUCTION" />
<cot cot="a-.-G-I-M-N-B" full="Gnd/Structure/Mil/Bridge" desc="BRIDGE" />
<cot cot="a-.-G-I-M-N-B-l" full="Gnd/Structure/Mil/Bridge/Large" desc="Bridge (Large)" />
<cot cot="a-.-G-I-M-N-B-m" full="Gnd/Structure/Mil/Bridge/Med" desc="Bridge (Med)" />
<cot cot="a-.-G-I-M-N-B-s" full="Gnd/Structure/Mil/Bridge/Small" desc="Bridge (Small)" />
<cot cot="a-.-G-I-M-N-c" full="Gnd/Structure/Mil/Canal" desc="Canal" />
<cot cot="a-.-G-I-M-S" full="Gnd/Structure/Mil/Ship Construction" desc="SHIP CONSTRUCTION" />
<cot cot="a-.-G-I-M-V" full="Gnd/Structure/Mil/Military Vehicle Production" desc="MILITARY VEHICLE PRODUCTION" />
<cot cot="a-.-G-I-P" full="Gnd/Structure/Processing Facility" desc="PROCESSING FACILITY" />
<cot cot="a-.-G-I-P-D" full="Gnd/Structure/Decon" desc="DECON" />
<cot cot="a-.-G-I-R" full="Gnd/Structure/Raw Material Production/Storage" desc="RAW MATERIAL PRODUCTION/STORAGE" />
<cot cot="a-.-G-I-R-M" full="Gnd/Structure/Mine" desc="MINE" />
<cot cot="a-.-G-I-R-N" full="Gnd/Structure/NBC" desc="NBC" />
<cot cot="a-.-G-I-R-N-B" full="Gnd/Structure/Biological" desc="BIOLOGICAL" />
<cot cot="a-.-G-I-R-N-C" full="Gnd/Structure/Chemical" desc="CHEMICAL" />
<cot cot="a-.-G-I-R-N-N" full="Gnd/Structure/Nuclear" desc="NUCLEAR" />
<cot cot="a-.-G-I-R-P" full="Gnd/Structure/PETROLEUM/GAS/OIL" desc="PETROLEUM/GAS/OIL" />
<cot cot="a-.-G-I-R-P-r" full="Gnd/Structure/PETROLEUM/GAS/OIL/Refinery" desc="Refinery" />
<cot cot="a-.-G-I-T" full="Gnd/Structure/Transport Facility" desc="TRANSPORT FACILITY" />
<cot cot="a-.-G-I-T-a" full="Gnd/Structure/Transport Facility/Airport" desc="Airport" />
<cot cot="a-.-G-I-T-hb" full="Gnd/Structure/Transport Facility/Helibase" desc="Helibase" />
<cot cot="a-.-G-I-T-hs" full="Gnd/Structure/Transport Facility/Helispot" desc="Helispot" />
<cot cot="a-.-G-I-T-l" full="Gnd/Structure/Transport Facility/Land Port" desc="Land Port" />
<cot cot="a-.-G-I-T-pg" full="Gnd/Structure/Transport Facility/Parking Garage" desc="Parking Garage" />
<cot cot="a-.-G-I-T-r" full="Gnd/Structure/Transport Facility/Railroad" desc="Railroad" />
<cot cot="a-.-G-I-T-s" full="Gnd/Structure/Transport Facility/Seaport" desc="Seaport" />
<cot cot="a-.-G-I-U" full="Gnd/Structure/Utility/Service, Research, Utility Facility" desc="SERVICE, RESEARCH, UTILITY FACILITY" />
<cot cot="a-.-G-I-U-E" full="Gnd/Structure/Utility/Electric Power" desc="ELECTRIC POWER FACILITY" />
<cot cot="a-.-G-I-U-E-c" full="Gnd/Structure/Utility/Electric Power/Coal Power Plant" desc="Coal Power Plant" />
<cot cot="a-.-G-I-U-E-h" full="Gnd/Structure/Utility/Electric Power/Hydroelectric Power Plant" desc="Hydroelectric Power Plant" />
<cot cot="a-.-G-I-U-E-o" full="Gnd/Structure/Utility/Electric Power/Other Power" desc="Other Power" />
<cot cot="a-.-G-I-U-E-ps" full="Gnd/Structure/Utility/Electric Power/Power Substation" desc="Power Substation" />
<cot cot="a-.-G-I-U-E-D" full="Gnd/Structure/Utility/Dam" desc="DAM" />
<cot cot="a-.-G-I-U-E-F" full="Gnd/Structure/Utility/Fossil Fuel" desc="FOSSIL FUEL" />
<cot cot="a-.-G-I-U-E-N" full="Gnd/Structure/Utility/Nuclear Plant" desc="NUCLEAR PLANT" />
<cot cot="a-.-G-I-U-P" full="Gnd/Structure/Utility/Public Water Services" desc="PUBLIC WATER SERVICES" />
<cot cot="a-.-G-I-U-R" full="Gnd/Structure/Utility/Technological Research" desc="TECHNOLOGICAL RESEARCH FACILITY" />
<cot cot="a-.-G-I-U-T" full="Gnd/Structure/Utility/Telecommunications" desc="TELECOMMUNICATIONS FACILITY" />
<cot cot="a-.-G-I-U-T-com" full="Gnd/Structure/Utility/Telecommunications/Communications" desc="Communications" />
<cot cot="a-.-G-I-U-T-com-af" full="Gnd/Structure/Utility/Telecommunications/Communications/Antenna Farm" desc="Antenna Farm" />
<cot cot="a-.-G-I-U-T-com-sat" full="Gnd/Structure/Utility/Telecommunications/Communications/Satellite Communications" desc="Satellite Communications" />
<cot cot="a-.-G-I-U-T-com-tow" full="Gnd/Structure/Utility/Telecommunications/Communications/Tower" desc="Tower" />
<cot cot="a-.-G-I-U-T-r" full="Gnd/Structure/Utility/Telecommunications/Radio" desc="Radio" />
<cot cot="a-.-G-I-U-T-r-s" full="Gnd/Structure/Utility/Telecommunications/Radio/Station" desc="Station" />
<cot cot="a-.-G-I-U-T-tp" full="Gnd/Structure/Utility/Telecommunications/Telephone" desc="Telephone" />
<cot cot="a-.-G-I-U-T-tp-ts" full="Gnd/Structure/Utility/Telecommunications/Telephone/Telephone Switching" desc="Telephone Switching" />
<cot cot="a-.-G-I-U-T-tv" full="Gnd/Structure/Utility/Telecommunications/Television" desc="Television" />
<cot cot="a-.-G-I-U-T-tv-c" full="Gnd/Structure/Utility/Telecommunications/Television/Cable" desc="Cable" />
<cot cot="a-.-G-I-U-T-tv-s" full="Gnd/Structure/Utility/Telecommunications/Television/Station" desc="Station" />
<cot cot="a-.-G-I-X" full="Gnd/Structure/Medical Facility" desc="MEDICAL FACILITY" />
<cot cot="a-.-G-I-X-H" full="Gnd/Structure/Hospital" desc="HOSPITAL" />
<cot cot="a-.-G-I-X-hcf" full="Gnd/Structure/Medical Facility/Hospital/Hospital Care Facility" desc="Hospital Care Facility" />
<cot cot="a-.-G-I-r" full="Gnd/Structure/Road" desc="Road" />
<cot cot="a-.-G-I-r-h" full="Gnd/Structure/Road/Highway" desc="Road (Highway)" />
<cot cot="a-.-G-I-r-i" full="Gnd/Structure/Road/Improved" desc="Road (Improved)" />
<cot cot="a-.-G-I-r-ra" full="Gnd/Structure/Road/Rest Area" desc="Rest Area" />
<cot cot="a-.-G-I-r-u" full="Gnd/Structure/Road/Unimproved" desc="Road (Un-improved)" />
<!-- End of section that incorporates experimental extensions to support Incident Management facilities -->
<cot cot="a-.-G-U" full="Gnd/Unit" desc="UNIT" />
<cot cot="a-.-G-U-C" full="Gnd/Combat" desc="COMBAT" />
<cot cot="a-.-G-U-C-A" full="Gnd/Combat/ARMOR" desc="ARMOR" />
<cot cot="a-.-G-U-C-A-A" full="Gnd/Combat/Armor/ANTI ARMOR" desc="ANTI ARMOR" />
<cot cot="a-.-G-U-C-A-A-A" full="Gnd/Combat/Armor/ANTI ARMOR ARMORED" desc="ANTI ARMOR ARMORED" />
<cot cot="a-.-G-U-C-A-A-A-S" full="Gnd/Combat/Armor/ANTI ARMOR ARMORED AIR ASSAULT" desc="ANTI ARMOR ARMORED AIR ASSAULT" />
<cot cot="a-.-G-U-C-A-A-A-T" full="Gnd/Combat/Armor/ANTI ARMOR ARMORED TRACKED" desc="ANTI ARMOR ARMORED TRACKED" />
<cot cot="a-.-G-U-C-A-A-A-W" full="Gnd/Combat/Armor/ANTI ARMOR ARMORED WHEELED" desc="ANTI ARMOR ARMORED WHEELED" />
<cot cot="a-.-G-U-C-A-A-C" full="Gnd/Combat/Armor/ANTI ARMOR ARCTIC" desc="ANTI ARMOR ARCTIC" />
<cot cot="a-.-G-U-C-A-A-D" full="Gnd/Combat/Armor/ANTI ARMOR DISMOUNTED" desc="ANTI ARMOR DISMOUNTED" />
<cot cot="a-.-G-U-C-A-A-L" full="Gnd/Combat/Armor/ANTI ARMOR LIGHT" desc="ANTI ARMOR LIGHT" />
<cot cot="a-.-G-U-C-A-A-M" full="Gnd/Combat/Armor/ANTI ARMOR AIRBORNE" desc="ANTI ARMOR AIRBORNE" />
<cot cot="a-.-G-U-C-A-A-O" full="Gnd/Combat/Armor/ANTI ARMOR MOTORIZED" desc="ANTI ARMOR MOTORIZED" />
<cot cot="a-.-G-U-C-A-A-O-S" full="Gnd/Combat/Armor/ANTI ARMOR MOTORIZED AIR ASSAULT" desc="ANTI ARMOR MOTORIZED AIR ASSAULT" />
<cot cot="a-.-G-U-C-A-A-S" full="Gnd/Combat/Armor/ANTI ARMOR AIR ASSAULT" desc="ANTI ARMOR AIR ASSAULT" />
<cot cot="a-.-G-U-C-A-A-U" full="Gnd/Combat/Armor/ANTI ARMOR MOUNTAIN" desc="ANTI ARMOR MOUNTAIN" />
<cot cot="a-.-G-U-C-A-T" full="Gnd/Combat/Armor/ARMOR TRACK" desc="ARMOR TRACK" />
<cot cot="a-.-G-U-C-A-T-A" full="Gnd/Combat/Armor/ARMOR TRACK AIRBORNE" desc="ARMOR TRACK AIRBORNE" />
<cot cot="a-.-G-U-C-A-T-H" full="Gnd/Combat/Armor/ARMOR TRACK, HEAVY" desc="ARMOR TRACK, HEAVY" />
<cot cot="a-.-G-U-C-A-T-L" full="Gnd/Combat/Armor/ARMOR TRACK, LIGHT" desc="ARMOR TRACK, LIGHT" />
<cot cot="a-.-G-U-C-A-T-M" full="Gnd/Combat/Armor/ARMOR TRACK, MEDIUM" desc="ARMOR TRACK, MEDIUM" />
<cot cot="a-.-G-U-C-A-T-R" full="Gnd/Combat/Armor/ARMOR TRACK, RECOVERY" desc="ARMOR TRACK, RECOVERY" />
<cot cot="a-.-G-U-C-A-T-W" full="Gnd/Combat/Armor/ARMOR TRACK AMPHIBIOUS" desc="ARMOR TRACK AMPHIBIOUS" />
<cot cot="a-.-G-U-C-A-T-W-R" full="Gnd/Combat/Armor/ARMOR TRACK AMPHIBIOUS RECOVERY" desc="ARMOR TRACK AMPHIBIOUS RECOVERY" />
<cot cot="a-.-G-U-C-A-W" full="Gnd/Combat/Armor/ARMOR, WHEELED" desc="ARMOR, WHEELED" />
<cot cot="a-.-G-U-C-A-W-A" full="Gnd/Combat/Armor/ARMOR, WHEELED AIRBORNE" desc="ARMOR, WHEELED AIRBORNE" />
<cot cot="a-.-G-U-C-A-W-H" full="Gnd/Combat/Armor/ARMOR, WHEELED HEAVY" desc="ARMOR, WHEELED HEAVY" />
<cot cot="a-.-G-U-C-A-W-L" full="Gnd/Combat/Armor/ARMOR, WHEELED LIGHT" desc="ARMOR, WHEELED LIGHT" />
<cot cot="a-.-G-U-C-A-W-M" full="Gnd/Combat/Armor/ARMOR, WHEELED MEDIUM" desc="ARMOR, WHEELED MEDIUM" />
<cot cot="a-.-G-U-C-A-W-R" full="Gnd/Combat/Armor/ARMOR, WHEELED RECOVERY" desc="ARMOR, WHEELED RECOVERY" />
<cot cot="a-.-G-U-C-A-W-S" full="Gnd/Combat/Armor/ARMOR, WHEELED AIR ASSAULT" desc="ARMOR, WHEELED AIR ASSAULT" />
<cot cot="a-.-G-U-C-A-W-W" full="Gnd/Combat/Armor/ARMOR, WHEELED AMPHIBIOUS" desc="ARMOR, WHEELED AMPHIBIOUS" />
<cot cot="a-.-G-U-C-A-W-W-R" full="Gnd/Combat/Armor/ARMOR, WHEELED AMPHIBIOUS RECOVERY" desc="ARMOR, WHEELED AMPHIBIOUS RECOVERY" />
<cot cot="a-.-G-U-C-D" full="Gnd/Combat/Defense/AIR DEFENSE" desc="AIR DEFENSE" />
<cot cot="a-.-G-U-C-D-C" full="Gnd/Combat/Defense/COMPOSITE" desc="COMPOSITE" />
<cot cot="a-.-G-U-C-D-G" full="Gnd/Combat/Defense/GUN UNIT" desc="GUN UNIT" />
<cot cot="a-.-G-U-C-D-H" full="Gnd/Combat/Defense/H/MAD" desc="H/MAD" />
<cot cot="a-.-G-U-C-D-H-H" full="Gnd/Combat/Defense/HAWK" desc="HAWK" />
<cot cot="a-.-G-U-C-D-H-P" full="Gnd/Combat/Defense/PATRIOT" desc="PATRIOT" />
<cot cot="a-.-G-U-C-D-M" full="Gnd/Combat/Defense/AIR DEFENSE MISSILE" desc="AIR DEFENSE MISSILE" />
<cot cot="a-.-G-U-C-D-M-H" full="Gnd/Combat/Defense/AIR DEFENSE MISSILE HEAVY" desc="AIR DEFENSE MISSILE HEAVY" />
<cot cot="a-.-G-U-C-D-M-L" full="Gnd/Combat/Defense/AIR DEFENSE MISSILE LIGHT" desc="AIR DEFENSE MISSILE LIGHT" />
<cot cot="a-.-G-U-C-D-M-L-A" full="Gnd/Combat/Defense/AIR DEFENSE MISSILE MOTORIZED (AVENGER)" desc="AIR DEFENSE MISSILE MOTORIZED (AVENGER)" />
<cot cot="a-.-G-U-C-D-M-M" full="Gnd/Combat/Defense/AIR DEFENSE MISSILE MEDIUM" desc="AIR DEFENSE MISSILE MEDIUM" />
<cot cot="a-.-G-U-C-D-O" full="Gnd/Combat/Defense/THEATER MISSILE DEFENSE UNIT" desc="THEATER MISSILE DEFENSE UNIT" />
<cot cot="a-.-G-U-C-D-S" full="Gnd/Combat/Defense/SHORT RANGE" desc="SHORT RANGE" />
<cot cot="a-.-G-U-C-D-S-S" full="Gnd/Combat/Defense/STINGER" desc="STINGER" />
<cot cot="a-.-G-U-C-D-S-V" full="Gnd/Combat/Defense/VULCAN" desc="VULCAN" />
<cot cot="a-.-G-U-C-D-T" full="Gnd/Combat/Defense/TARGETING UNIT" desc="TARGETING UNIT" />
<cot cot="a-.-G-U-C-E" full="Gnd/Combat/Engineer/ENGINEER" desc="ENGINEER" />
<cot cot="a-.-G-U-C-E-C" full="Gnd/Combat/Engineer/ENGINEER COMBAT" desc="ENGINEER COMBAT" />
<cot cot="a-.-G-U-C-E-C-A" full="Gnd/Combat/Engineer/ENGINEER COMBAT AIRBORNE" desc="ENGINEER COMBAT AIRBORNE" />
<cot cot="a-.-G-U-C-E-C-C" full="Gnd/Combat/Engineer/ENGINEER COMBAT ARCTIC" desc="ENGINEER COMBAT ARCTIC" />
<cot cot="a-.-G-U-C-E-C-H" full="Gnd/Combat/Engineer/ENGINEER COMBAT HEAVY" desc="ENGINEER COMBAT HEAVY" />
<cot cot="a-.-G-U-C-E-C-L" full="Gnd/Combat/Engineer/ENGINEER COMBAT LIGHT (SAPPER)" desc="ENGINEER COMBAT LIGHT (SAPPER)" />
<cot cot="a-.-G-U-C-E-C-M" full="Gnd/Combat/Engineer/ENGINEER COMBAT MEDIUM" desc="ENGINEER COMBAT MEDIUM" />
<cot cot="a-.-G-U-C-E-C-O" full="Gnd/Combat/Engineer/ENGINEER COMBAT MOUNTAIN" desc="ENGINEER COMBAT MOUNTAIN" />
<cot cot="a-.-G-U-C-E-C-R" full="Gnd/Combat/Engineer/ENGINEER COMBAT RECON" desc="ENGINEER COMBAT RECON" />
<cot cot="a-.-G-U-C-E-C-S" full="Gnd/Combat/Engineer/ENGINEER COMBAT AIR ASSAULT" desc="ENGINEER COMBAT AIR ASSAULT" />
<cot cot="a-.-G-U-C-E-C-T" full="Gnd/Combat/Engineer/ENGINEER COMBAT MECHANIZED (TRACK)" desc="ENGINEER COMBAT MECHANIZED (TRACK)" />
<cot cot="a-.-G-U-C-E-C-W" full="Gnd/Combat/Engineer/ENGINEER COMBAT MOTORIZED" desc="ENGINEER COMBAT MOTORIZED" />
<cot cot="a-.-G-U-C-E-N" full="Gnd/Combat/Engineer/ENGINEER CONSTRUCTION" desc="ENGINEER CONSTRUCTION" />
<cot cot="a-.-G-U-C-E-N-N" full="Gnd/Combat/Engineer/ENGINEER NAVAL CONSTRUCTION" desc="ENGINEER NAVAL CONSTRUCTION" />
<cot cot="a-.-G-U-C-F" full="Gnd/Combat/Artillery (Fixed)" desc="Artillery (Fixed)" />
<cot cot="a-.-G-U-C-F-H" full="Gnd/Combat/HOWITZER/GUN" desc="HOWITZER/GUN" />
<cot cot="a-.-G-U-C-F-H-A" full="Gnd/Combat/AIRBORNE" desc="AIRBORNE" />
<cot cot="a-.-G-U-C-F-H-C" full="Gnd/Combat/ARCTIC" desc="ARCTIC" />
<cot cot="a-.-G-U-C-F-H-E" full="Gnd/Combat/Artillery (Mobile)" desc="Artillery (Mobile)" />
<cot cot="a-.-G-U-C-F-H-H" full="Gnd/Combat/HEAVY" desc="HEAVY" />
<cot cot="a-.-G-U-C-F-H-L" full="Gnd/Combat/LIGHT" desc="LIGHT" />
<cot cot="a-.-G-U-C-F-H-M" full="Gnd/Combat/MEDIUM" desc="MEDIUM" />
<cot cot="a-.-G-U-C-F-H-O" full="Gnd/Combat/MOUNTAIN" desc="MOUNTAIN" />
<cot cot="a-.-G-U-C-F-H-S" full="Gnd/Combat/AIR ASSAULT" desc="AIR ASSAULT" />
<cot cot="a-.-G-U-C-F-H-X" full="Gnd/Combat/AMPHIBIOUS" desc="AMPHIBIOUS" />
<cot cot="a-.-G-U-C-F-M" full="Gnd/Combat/MORTAR" desc="MORTAR" />
<cot cot="a-.-G-U-C-F-M-L" full="Gnd/Combat/AMPHIBIOUS MORTAR" desc="AMPHIBIOUS MORTAR" />
<cot cot="a-.-G-U-C-F-M-S" full="Gnd/Combat/SELF PROPELLED (SP) TRACKED MORTAR" desc="SELF PROPELLED (SP) TRACKED MORTAR" />
<cot cot="a-.-G-U-C-F-M-T" full="Gnd/Combat/TOWED MORTAR" desc="TOWED MORTAR" />
<cot cot="a-.-G-U-C-F-M-T-A" full="Gnd/Combat/TOWED AIRBORNE MORTAR" desc="TOWED AIRBORNE MORTAR" />
<cot cot="a-.-G-U-C-F-M-T-C" full="Gnd/Combat/TOWED ARCTIC MORTAR" desc="TOWED ARCTIC MORTAR" />
<cot cot="a-.-G-U-C-F-M-T-O" full="Gnd/Combat/TOWED MOUNTAIN MORTAR" desc="TOWED MOUNTAIN MORTAR" />
<cot cot="a-.-G-U-C-F-M-T-S" full="Gnd/Combat/TOWED AIR ASSAULT MORTAR" desc="TOWED AIR ASSAULT MORTAR" />
<cot cot="a-.-G-U-C-F-M-W" full="Gnd/Combat/SP WHEELED MORTAR" desc="SP WHEELED MORTAR" />
<cot cot="a-.-G-U-C-F-O" full="Gnd/Combat/METEOROLOGICAL" desc="METEOROLOGICAL" />
<cot cot="a-.-G-U-C-F-O-A" full="Gnd/Combat/AIRBORNE METEOROLOGICAL" desc="AIRBORNE METEOROLOGICAL" />
<cot cot="a-.-G-U-C-F-O-L" full="Gnd/Combat/LIGHT METEOROLOGICAL" desc="LIGHT METEOROLOGICAL" />
<cot cot="a-.-G-U-C-F-O-O" full="Gnd/Combat/MOUNTAIN METEOROLOGICAL" desc="MOUNTAIN METEOROLOGICAL" />
<cot cot="a-.-G-U-C-F-O-S" full="Gnd/Combat/AIR ASSAULT METEOROLOGICAL" desc="AIR ASSAULT METEOROLOGICAL" />
<cot cot="a-.-G-U-C-F-R" full="Gnd/Combat/ROCKET" desc="ROCKET" />
<cot cot="a-.-G-U-C-F-R-M" full="Gnd/Combat/Rockets (Fixed)" desc="Rockets (Fixed)" />
<cot cot="a-.-G-U-C-F-R-M-R" full="Gnd/Combat/Rockets (Mobile)" desc="Rockets (Mobile)" />
<cot cot="a-.-G-U-C-F-R-M-S" full="Gnd/Combat/MULTI ROCKET SELF PROPELLED" desc="MULTI ROCKET SELF PROPELLED" />
<cot cot="a-.-G-U-C-F-R-M-T" full="Gnd/Combat/MULTI ROCKET TOWED" desc="MULTI ROCKET TOWED" />
<cot cot="a-.-G-U-C-F-R-S" full="Gnd/Combat/SINGLE ROCKET LAUNCHER" desc="SINGLE ROCKET LAUNCHER" />
<cot cot="a-.-G-U-C-F-R-S-R" full="Gnd/Combat/SINGLE ROCKET TRUCK" desc="SINGLE ROCKET TRUCK" />
<cot cot="a-.-G-U-C-F-R-S-S" full="Gnd/Combat/SINGLE ROCKET SELF PROPELLED" desc="SINGLE ROCKET SELF PROPELLED" />
<cot cot="a-.-G-U-C-F-R-S-T" full="Gnd/Combat/SINGLE ROCKET TOWED" desc="SINGLE ROCKET TOWED" />
<cot cot="a-.-G-U-C-F-S" full="Gnd/Combat/ARTILLERY SURVEY" desc="ARTILLERY SURVEY" />
<cot cot="a-.-G-U-C-F-S-A" full="Gnd/Combat/AIRBORNE" desc="AIRBORNE" />
<cot cot="a-.-G-U-C-F-S-L" full="Gnd/Combat/LIGHT" desc="LIGHT" />
<cot cot="a-.-G-U-C-F-S-O" full="Gnd/Combat/MOUNTAIN" desc="MOUNTAIN" />
<cot cot="a-.-G-U-C-F-S-S" full="Gnd/Combat/AIR ASSAULT" desc="AIR ASSAULT" />
<cot cot="a-.-G-U-C-F-T" full="Gnd/Combat/TARGET ACQUISITION" desc="TARGET ACQUISITION" />
<cot cot="a-.-G-U-C-F-T-A" full="Gnd/Combat/ANGLICO" desc="ANGLICO" />
<cot cot="a-.-G-U-C-F-T-C" full="Gnd/Combat/COLT/FIST" desc="COLT/FIST" />
<cot cot="a-.-G-U-C-F-T-C-D" full="Gnd/Combat/DISMOUNTED COLT/FIST" desc="DISMOUNTED COLT/FIST" />
<cot cot="a-.-G-U-C-F-T-C-M" full="Gnd/Combat/TRACKED COLT/FIST" desc="TRACKED COLT/FIST" />
<cot cot="a-.-G-U-C-F-T-F" full="Gnd/Combat/FLASH (OPTICAL)" desc="FLASH (OPTICAL)" />
<cot cot="a-.-G-U-C-F-T-R" full="Gnd/Combat/RADAR" desc="RADAR" />
<cot cot="a-.-G-U-C-F-T-S" full="Gnd/Combat/SOUND" desc="SOUND" />
<cot cot="a-.-G-U-C-I" full="Gnd/Combat/Infantry/Troops (Open)" desc="Troops (Open)" />
<cot cot="a-.-G-U-C-I-A" full="Gnd/Combat/Infantry/Airborne" desc="INFANTRY AIRBORNE" />
<cot cot="a-.-G-U-C-I-C" full="Gnd/Combat/Infantry/Arctic" desc="INFANTRY ARCTIC" />
<cot cot="a-.-G-U-C-I-I" full="Gnd/Combat/Infantry/Fighting Vehicle" desc="INFANTRY FIGHTING VEHICLE" />
<cot cot="a-.-G-U-C-I-L" full="Gnd/Combat/Infantry/Light" desc="INFANTRY LIGHT" />
<cot cot="a-.-G-U-C-I-M" full="Gnd/Combat/Infantry/Motorized" desc="INFANTRY MOTORIZED" />
<cot cot="a-.-G-U-C-I-N" full="Gnd/Combat/Infantry/Naval" desc="INFANTRY NAVAL" />
<cot cot="a-.-G-U-C-I-O" full="Gnd/Combat/Infantry/Mountain" desc="INFANTRY MOUNTAIN" />
<cot cot="a-.-G-U-C-I-S" full="Gnd/Combat/Infantry/Air Assault" desc="INFANTRY AIR ASSAULT" />
<cot cot="a-.-G-U-C-I-Z" full="Gnd/Combat/Infantry/Mechanized" desc="INFANTRY MECHANIZED" />
<cot cot="a-.-G-U-C-I-d" full="Gnd/Combat/Infantry/DugIn" desc="Troops (DugIn)" />
<cot cot="a-.-G-U-C-M" full="Gnd/Combat/MISSILE (SURF SURF)" desc="MISSILE (SURF SURF)" />
<cot cot="a-.-G-U-C-M-S" full="Gnd/Combat/MISSILE (SURF SURF) STRATEGIC" desc="MISSILE (SURF SURF) STRATEGIC" />
<cot cot="a-.-G-U-C-M-T" full="Gnd/Combat/MISSILE (SURF SURF) TACTICAL" desc="MISSILE (SURF SURF) TACTICAL" />
<cot cot="a-.-G-U-C-R" full="Gnd/Combat/Recon/" desc="RECONNAISSANCE" />
<cot cot="a-.-G-U-C-R-A" full="Gnd/Combat/Recon/AIRBORNE" desc="RECONNAISSANCE AIRBORNE" />
<cot cot="a-.-G-U-C-R-C" full="Gnd/Combat/Recon/ARCTIC" desc="RECONNAISSANCE ARCTIC" />
<cot cot="a-.-G-U-C-R-H" full="Gnd/Combat/Recon/HORSE" desc="RECONNAISSANCE HORSE" />
<cot cot="a-.-G-U-C-R-L" full="Gnd/Combat/Recon/LIGHT" desc="RECONNAISSANCE LIGHT" />
<cot cot="a-.-G-U-C-R-O" full="Gnd/Combat/Recon/MOUNTAIN" desc="RECONNAISSANCE MOUNTAIN" />
<cot cot="a-.-G-U-C-R-R" full="Gnd/Combat/Recon/MARINE" desc="RECONNAISSANCE MARINE" />
<cot cot="a-.-G-U-C-R-R-D" full="Gnd/Combat/Recon/MARINE DIVISION" desc="RECONNAISSANCE MARINE DIVISION" />
<cot cot="a-.-G-U-C-R-R-F" full="Gnd/Combat/Recon/MARINE FORCE" desc="RECONNAISSANCE MARINE FORCE" />
<cot cot="a-.-G-U-C-R-R-L" full="Gnd/Combat/Recon/MARINE LIGHT ARMORED" desc="RECONNAISSANCE MARINE LIGHT ARMORED" />
<cot cot="a-.-G-U-C-R-S" full="Gnd/Combat/Recon/AIR ASSAULT" desc="RECONNAISSANCE AIR ASSAULT" />
<cot cot="a-.-G-U-C-R-V" full="Gnd/Combat/Recon/CAVALRY" desc="RECONNAISSANCE CAVALRY" />
<cot cot="a-.-G-U-C-R-V-A" full="Gnd/Combat/Recon/CAVALRY ARMORED" desc="RECONNAISSANCE CAVALRY ARMORED" />
<cot cot="a-.-G-U-C-R-V-G" full="Gnd/Combat/Recon/CAVALRY GROUND" desc="RECONNAISSANCE CAVALRY GROUND" />
<cot cot="a-.-G-U-C-R-V-M" full="Gnd/Combat/Recon/CAVALRY MOTORIZED" desc="RECONNAISSANCE CAVALRY MOTORIZED" />
<cot cot="a-.-G-U-C-R-V-O" full="Gnd/Combat/Recon/CAVALRY AIR" desc="RECONNAISSANCE CAVALRY AIR" />
<cot cot="a-.-G-U-C-R-X" full="Gnd/Combat/Recon/LONG RANGE SURVEILLANCE" desc="RECONNAISSANCE LONG RANGE SURVEILLANCE" />
<cot cot="a-.-G-U-C-S" full="Gnd/Combat/Security/INTERNAL SECURITY FORCES" desc="INTERNAL SECURITY FORCES" />
<cot cot="a-.-G-U-C-S-A" full="Gnd/Combat/Security/AVIATION" desc="AVIATION" />
<cot cot="a-.-G-U-C-S-G" full="Gnd/Combat/Security/GROUND" desc="GROUND" />
<cot cot="a-.-G-U-C-S-G-A" full="Gnd/Combat/Security/MECHANIZED GROUND" desc="MECHANIZED GROUND" />
<cot cot="a-.-G-U-C-S-G-D" full="Gnd/Combat/Security/DISMOUNTED GROUND" desc="DISMOUNTED GROUND" />
<cot cot="a-.-G-U-C-S-G-M" full="Gnd/Combat/Security/MOTORIZED GROUND" desc="MOTORIZED GROUND" />
<cot cot="a-.-G-U-C-S-M" full="Gnd/Combat/Security/WHEELED MECHANIZED" desc="WHEELED MECHANIZED" />
<cot cot="a-.-G-U-C-S-R" full="Gnd/Combat/Security/Rail" desc="Rail" />
<cot cot="a-.-G-U-C-S-W" full="Gnd/Combat/Security/RIVERINE" desc="RIVERINE" />
<cot cot="a-.-G-U-C-V" full="Gnd/Combat/Aviation/AVIATION" desc="AVIATION" />
<cot cot="a-.-G-U-C-V-C" full="Gnd/Combat/Aviation/COMPOSITE" desc="COMPOSITE" />
<cot cot="a-.-G-U-C-V-F" full="Gnd/Combat/Aviation/FIXED WING" desc="FIXED WING" />
<cot cot="a-.-G-U-C-V-F-A" full="Gnd/Combat/Aviation/ATTACK FIXED WING" desc="ATTACK FIXED WING" />
<cot cot="a-.-G-U-C-V-F-R" full="Gnd/Combat/Aviation/RECON FIXED WING" desc="RECON FIXED WING" />
<cot cot="a-.-G-U-C-V-F-U" full="Gnd/Combat/Aviation/UTILITY FIXED WING" desc="UTILITY FIXED WING" />
<cot cot="a-.-G-U-C-V-R" full="Gnd/Combat/Aviation/ROTARY WING" desc="ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-A" full="Gnd/Combat/Aviation/ATTACK ROTARY WING" desc="ATTACK ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-M" full="Gnd/Combat/Aviation/MINE COUNTERMEASURE ROTARY WING" desc="MINE COUNTERMEASURE ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-S" full="Gnd/Combat/Aviation/SCOUT ROTARY WING" desc="SCOUT ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U" full="Gnd/Combat/Aviation/UTILITY ROTARY WING" desc="UTILITY ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U-C" full="Gnd/Combat/Aviation/C2 ROTARY WING" desc="C2 ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U-E" full="Gnd/Combat/Aviation/MEDEVAC ROTARY WING" desc="MEDEVAC ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U-H" full="Gnd/Combat/Aviation/HEAVY UTILITY ROTARY WING" desc="HEAVY UTILITY ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U-L" full="Gnd/Combat/Aviation/LIGHT UTILITY ROTARY WING" desc="LIGHT UTILITY ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-U-M" full="Gnd/Combat/Aviation/MEDIUM UTILITY ROTARY WING" desc="MEDIUM UTILITY ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-W" full="Gnd/Combat/Aviation/ANTISUBMARINE WARFARE ROTARY WING" desc="ANTISUBMARINE WARFARE ROTARY WING" />
<cot cot="a-.-G-U-C-V-R-d" full="Gnd/Combat/Aviation/Helo/Dual" desc="Helo ground unit (Dual)" />
<cot cot="a-.-G-U-C-V-R-s" full="Gnd/Combat/Aviation/Helo/Single" desc="Helo ground unit (Single)" />
<cot cot="a-.-G-U-C-V-S" full="Gnd/Combat/Aviation/SEARCH AND RESCUE" desc="SEARCH AND RESCUE" />
<cot cot="a-.-G-U-C-V-U" full="Gnd/Combat/Aviation/UNMANNED AERIAL VEHICLE" desc="UNMANNED AERIAL VEHICLE" />
<cot cot="a-.-G-U-C-V-U-F" full="Gnd/Combat/Aviation/UNMANNED AERIAL VEHICLE FIXED WING" desc="UNMANNED AERIAL VEHICLE FIXED WING" />
<cot cot="a-.-G-U-C-V-U-R" full="Gnd/Combat/Aviation/UNMANNED AERIAL VEHICLE ROTARY WING" desc="UNMANNED AERIAL VEHICLE ROTARY WING" />
<cot cot="a-.-G-U-C-V-V" full="Gnd/Combat/Aviation/VERTICAL/SHORT TAKEOFF AND LANDING" desc="VERTICAL/SHORT TAKEOFF AND LANDING" />
<cot cot="a-.-G-U-H" full="Gnd/SPECIAL C2 HEADQUARTERS COMPONENT" desc="SPECIAL C2 HEADQUARTERS COMPONENT" />
<cot cot="a-.-G-U-S" full="Gnd/COMBAT SERVICE SUPPORT" desc="COMBAT SERVICE SUPPORT" />
<cot cot="a-.-G-U-S-A" full="Gnd/ADMINISTRATIVE (ADMIN)" desc="ADMINISTRATIVE (ADMIN)" />
<cot cot="a-.-G-U-S-A-C" full="Gnd/ADMIN CORPS" desc="ADMIN CORPS" />
<cot cot="a-.-G-U-S-A-F" full="Gnd/FINANCE" desc="FINANCE" />
<cot cot="a-.-G-U-S-A-F-C" full="Gnd/FINANCE CORPS" desc="FINANCE CORPS" />
<cot cot="a-.-G-U-S-A-F-T" full="Gnd/FINANCE THEATER" desc="FINANCE THEATER" />
<cot cot="a-.-G-U-S-A-J" full="Gnd/JUDGE ADVOCATE GENERAL (JAG)" desc="JUDGE ADVOCATE GENERAL (JAG)" />
<cot cot="a-.-G-U-S-A-J-C" full="Gnd/JAG CORPS" desc="JAG CORPS" />
<cot cot="a-.-G-U-S-A-J-T" full="Gnd/JAG THEATER" desc="JAG THEATER" />
<cot cot="a-.-G-U-S-A-L" full="Gnd/LABOR" desc="LABOR" />
<cot cot="a-.-G-U-S-A-L-C" full="Gnd/LABOR CORPS" desc="LABOR CORPS" />
<cot cot="a-.-G-U-S-A-L-T" full="Gnd/LABOR THEATER" desc="LABOR THEATER" />
<cot cot="a-.-G-U-S-A-M" full="Gnd/MORTUARY/GRAVES REGISTRY" desc="MORTUARY/GRAVES REGISTRY" />
<cot cot="a-.-G-U-S-A-M-C" full="Gnd/MORTUARY/GRAVES REGISTRY CORPS" desc="MORTUARY/GRAVES REGISTRY CORPS" />
<cot cot="a-.-G-U-S-A-M-T" full="Gnd/MORTUARY/GRAVES REGISTRY THEATER" desc="MORTUARY/GRAVES REGISTRY THEATER" />
<cot cot="a-.-G-U-S-A-O" full="Gnd/POSTAL" desc="POSTAL" />
<cot cot="a-.-G-U-S-A-O-C" full="Gnd/POSTAL CORPS" desc="POSTAL CORPS" />
<cot cot="a-.-G-U-S-A-O-T" full="Gnd/POSTAL THEATER" desc="POSTAL THEATER" />
<cot cot="a-.-G-U-S-A-P" full="Gnd/PUBLIC AFFAIRS" desc="PUBLIC AFFAIRS" />
<cot cot="a-.-G-U-S-A-P-B" full="Gnd/PUBLIC AFFAIRS BROADCAST" desc="PUBLIC AFFAIRS BROADCAST" />
<cot cot="a-.-G-U-S-A-P-B-C" full="Gnd/PUBLIC AFFAIRS BROADCAST CORPS" desc="PUBLIC AFFAIRS BROADCAST CORPS" />
<cot cot="a-.-G-U-S-A-P-B-T" full="Gnd/PUBLIC AFFAIRS BROADCAST THEATER" desc="PUBLIC AFFAIRS BROADCAST THEATER" />
<cot cot="a-.-G-U-S-A-P-C" full="Gnd/PUBLIC AFFAIRS CORPS" desc="PUBLIC AFFAIRS CORPS" />
<cot cot="a-.-G-U-S-A-P-M" full="Gnd/PUBLIC AFFAIRS JOINT INFORMATION BUREAU" desc="PUBLIC AFFAIRS JOINT INFORMATION BUREAU" />
<cot cot="a-.-G-U-S-A-P-M-C" full="Gnd/PUBLIC AFFAIRS JIB CORPS" desc="PUBLIC AFFAIRS JIB CORPS" />
<cot cot="a-.-G-U-S-A-P-M-T" full="Gnd/PUBLIC AFFAIRS JIB THEATER" desc="PUBLIC AFFAIRS JIB THEATER" />
<cot cot="a-.-G-U-S-A-P-T" full="Gnd/PUBLIC AFFAIRS THEATER" desc="PUBLIC AFFAIRS THEATER" />
<cot cot="a-.-G-U-S-A-Q" full="Gnd/QUARTERMASTER (SUPPLY)" desc="QUARTERMASTER (SUPPLY)" />
<cot cot="a-.-G-U-S-A-Q-C" full="Gnd/QUARTERMASTER (SUPPLY) CORPS" desc="QUARTERMASTER (SUPPLY) CORPS" />
<cot cot="a-.-G-U-S-A-Q-T" full="Gnd/QUARTERMASTER (SUPPLY) THEATER" desc="QUARTERMASTER (SUPPLY) THEATER" />
<cot cot="a-.-G-U-S-A-R" full="Gnd/RELIGIOUS/CHAPLAIN" desc="RELIGIOUS/CHAPLAIN" />
<cot cot="a-.-G-U-S-A-R-C" full="Gnd/RELIGIOUS/CHAPLAIN CORPS" desc="RELIGIOUS/CHAPLAIN CORPS" />
<cot cot="a-.-G-U-S-A-R-T" full="Gnd/RELIGIOUS/CHAPLAIN THEATER" desc="RELIGIOUS/CHAPLAIN THEATER" />
<cot cot="a-.-G-U-S-A-S" full="Gnd/PERSONNEL SERVICES" desc="PERSONNEL SERVICES" />
<cot cot="a-.-G-U-S-A-S-C" full="Gnd/PERSONNEL CORPS" desc="PERSONNEL CORPS" />
<cot cot="a-.-G-U-S-A-S-T" full="Gnd/PERSONNEL THEATER" desc="PERSONNEL THEATER" />
<cot cot="a-.-G-U-S-A-T" full="Gnd/ADMIN THEATER" desc="ADMIN THEATER" />
<cot cot="a-.-G-U-S-A-W" full="Gnd/MORALE, WELFARE, RECREATION (MWR)" desc="MORALE, WELFARE, RECREATION (MWR)" />
<cot cot="a-.-G-U-S-A-W-C" full="Gnd/MWR CORPS" desc="MWR CORPS" />
<cot cot="a-.-G-U-S-A-W-T" full="Gnd/MWR THEATER" desc="MWR THEATER" />
<cot cot="a-.-G-U-S-A-X" full="Gnd/REPLACEMENT HOLDING UNIT (RHU)" desc="REPLACEMENT HOLDING UNIT (RHU)" />
<cot cot="a-.-G-U-S-A-X-C" full="Gnd/RHU CORPS" desc="RHU CORPS" />
<cot cot="a-.-G-U-S-A-X-T" full="Gnd/RHU THEATER" desc="RHU THEATER" />
<cot cot="a-.-G-U-S-M" full="Gnd/MEDICAL" desc="MEDICAL" />
<cot cot="a-.-G-U-S-M-C" full="Gnd/MEDICAL CORPS" desc="MEDICAL CORPS" />
<cot cot="a-.-G-U-S-M-D" full="Gnd/MEDICAL DENTAL" desc="MEDICAL DENTAL" />
<cot cot="a-.-G-U-S-M-D-C" full="Gnd/MEDICAL DENTAL CORPS" desc="MEDICAL DENTAL CORPS" />
<cot cot="a-.-G-U-S-M-D-T" full="Gnd/MEDICAL DENTAL THEATER" desc="MEDICAL DENTAL THEATER" />
<cot cot="a-.-G-U-S-M-M" full="Gnd/MEDICAL TREATMENT FACILITY" desc="MEDICAL TREATMENT FACILITY" />
<cot cot="a-.-G-U-S-M-M-C" full="Gnd/MEDICAL TREATMENT FACILITY CORPS" desc="MEDICAL TREATMENT FACILITY CORPS" />
<cot cot="a-.-G-U-S-M-M-T" full="Gnd/MEDICAL TREATMENT FACILITY THEATER" desc="MEDICAL TREATMENT FACILITY THEATER" />
<cot cot="a-.-G-U-S-M-P" full="Gnd/MEDICAL PSYCHOLOGICAL" desc="MEDICAL PSYCHOLOGICAL" />
<cot cot="a-.-G-U-S-M-P-C" full="Gnd/MEDICAL PSYCHOLOGICAL CORPS" desc="MEDICAL PSYCHOLOGICAL CORPS" />
<cot cot="a-.-G-U-S-M-P-T" full="Gnd/MEDICAL PSYCHOLOGICAL THEATER" desc="MEDICAL PSYCHOLOGICAL THEATER" />
<cot cot="a-.-G-U-S-M-T" full="Gnd/MEDICAL THEATER" desc="MEDICAL THEATER" />
<cot cot="a-.-G-U-S-M-V" full="Gnd/MEDICAL VETERINARY" desc="MEDICAL VETERINARY" />
<cot cot="a-.-G-U-S-M-V-C" full="Gnd/MEDICAL VETERINARY CORPS" desc="MEDICAL VETERINARY CORPS" />
<cot cot="a-.-G-U-S-M-V-T" full="Gnd/MEDICAL VETERINARY THEATER" desc="MEDICAL VETERINARY THEATER" />
<cot cot="a-.-G-U-S-S" full="Gnd/SUPPLY" desc="SUPPLY" />
<cot cot="a-.-G-U-S-S-1" full="Gnd/SUPPLY CLASS I" desc="SUPPLY CLASS I" />
<cot cot="a-.-G-U-S-S-1-C" full="Gnd/SUPPLY CLASS I CORPS" desc="SUPPLY CLASS I CORPS" />
<cot cot="a-.-G-U-S-S-1-T" full="Gnd/SUPPLY CLASS I THEATER" desc="SUPPLY CLASS I THEATER" />
<cot cot="a-.-G-U-S-S-2" full="Gnd/SUPPLY CLASS II" desc="SUPPLY CLASS II" />
<cot cot="a-.-G-U-S-S-2-C" full="Gnd/SUPPLY CLASS II CORPS" desc="SUPPLY CLASS II CORPS" />
<cot cot="a-.-G-U-S-S-2-T" full="Gnd/SUPPLY CLASS II THEATER" desc="SUPPLY CLASS II THEATER" />
<cot cot="a-.-G-U-S-S-3" full="Gnd/SUPPLY CLASS III" desc="SUPPLY CLASS III" />
<cot cot="a-.-G-U-S-S-3-A" full="Gnd/SUPPLY CLASS III AVIATION" desc="SUPPLY CLASS III AVIATION" />
<cot cot="a-.-G-U-S-S-3-A-C" full="Gnd/SUPPLY CLASS III AVIATION CORPS" desc="SUPPLY CLASS III AVIATION CORPS" />
<cot cot="a-.-G-U-S-S-3-A-T" full="Gnd/SUPPLY CLASS III AVIATION THEATER" desc="SUPPLY CLASS III AVIATION THEATER" />
<cot cot="a-.-G-U-S-S-3-C" full="Gnd/SUPPLY CLASS III CORPS" desc="SUPPLY CLASS III CORPS" />
<cot cot="a-.-G-U-S-S-3-T" full="Gnd/SUPPLY CLASS III THEATER" desc="SUPPLY CLASS III THEATER" />
<cot cot="a-.-G-U-S-S-4" full="Gnd/SUPPLY CLASS IV" desc="SUPPLY CLASS IV" />
<cot cot="a-.-G-U-S-S-4-C" full="Gnd/SUPPLY CLASS IV CORPS" desc="SUPPLY CLASS IV CORPS" />
<cot cot="a-.-G-U-S-S-4-T" full="Gnd/SUPPLY CLASS IV THEATER" desc="SUPPLY CLASS IV THEATER" />
<cot cot="a-.-G-U-S-S-5" full="Gnd/SUPPLY CLASS V" desc="SUPPLY CLASS V" />
<cot cot="a-.-G-U-S-S-5-C" full="Gnd/SUPPLY CLASS V CORPS" desc="SUPPLY CLASS V CORPS" />
<cot cot="a-.-G-U-S-S-5-T" full="Gnd/SUPPLY CLASS V THEATER" desc="SUPPLY CLASS V THEATER" />
<cot cot="a-.-G-U-S-S-6" full="Gnd/SUPPLY CLASS VI" desc="SUPPLY CLASS VI" />
<cot cot="a-.-G-U-S-S-6-C" full="Gnd/SUPPLY CLASS VI CORPS" desc="SUPPLY CLASS VI CORPS" />
<cot cot="a-.-G-U-S-S-6-T" full="Gnd/SUPPLY CLASS VI THEATER" desc="SUPPLY CLASS VI THEATER" />
<cot cot="a-.-G-U-S-S-7" full="Gnd/SUPPLY CLASS VII" desc="SUPPLY CLASS VII" />
<cot cot="a-.-G-U-S-S-7-C" full="Gnd/SUPPLY CLASS VII CORPS" desc="SUPPLY CLASS VII CORPS" />
<cot cot="a-.-G-U-S-S-7-T" full="Gnd/SUPPLY CLASS VII THEATER" desc="SUPPLY CLASS VII THEATER" />
<cot cot="a-.-G-U-S-S-8" full="Gnd/SUPPLY CLASS VIII" desc="SUPPLY CLASS VIII" />
<cot cot="a-.-G-U-S-S-8-C" full="Gnd/SUPPLY CLASS VIII CORPS" desc="SUPPLY CLASS VIII CORPS" />
<cot cot="a-.-G-U-S-S-8-T" full="Gnd/SUPPLY CLASS VIII THEATER" desc="SUPPLY CLASS VIII THEATER" />
<cot cot="a-.-G-U-S-S-9" full="Gnd/SUPPLY CLASS IX" desc="SUPPLY CLASS IX" />
<cot cot="a-.-G-U-S-S-9-C" full="Gnd/SUPPLY CLASS IX CORPS" desc="SUPPLY CLASS IX CORPS" />
<cot cot="a-.-G-U-S-S-9-T" full="Gnd/SUPPLY CLASS IX THEATER" desc="SUPPLY CLASS IX THEATER" />
<cot cot="a-.-G-U-S-S-C" full="Gnd/SUPPLY CORPS" desc="SUPPLY CORPS" />
<cot cot="a-.-G-U-S-S-L" full="Gnd/SUPPLY LAUNDRY/BATH" desc="SUPPLY LAUNDRY/BATH" />
<cot cot="a-.-G-U-S-S-L-C" full="Gnd/SUPPLY LAUNDRY/BATH CORPS" desc="SUPPLY LAUNDRY/BATH CORPS" />
<cot cot="a-.-G-U-S-S-L-T" full="Gnd/SUPPLY LAUNDRY/BATH THEATER" desc="SUPPLY LAUNDRY/BATH THEATER" />
<cot cot="a-.-G-U-S-S-T" full="Gnd/SUPPLY THEATER" desc="SUPPLY THEATER" />
<cot cot="a-.-G-U-S-S-W" full="Gnd/SUPPLY WATER" desc="SUPPLY WATER" />
<cot cot="a-.-G-U-S-S-W-C" full="Gnd/SUPPLY WATER CORPS" desc="SUPPLY WATER CORPS" />
<cot cot="a-.-G-U-S-S-W-P" full="Gnd/SUPPLY WATER PURIFICATION" desc="SUPPLY WATER PURIFICATION" />
<cot cot="a-.-G-U-S-S-W-P-C" full="Gnd/SUPPLY WATER PURIFICATION CORPS" desc="SUPPLY WATER PURIFICATION CORPS" />
<cot cot="a-.-G-U-S-S-W-P-T" full="Gnd/SUPPLY WATER PURIFICATION THEATER" desc="SUPPLY WATER PURIFICATION THEATER" />
<cot cot="a-.-G-U-S-S-W-T" full="Gnd/SUPPLY WATER THEATER" desc="SUPPLY WATER THEATER" />
<cot cot="a-.-G-U-S-S-X" full="Gnd/SUPPLY CLASS X" desc="SUPPLY CLASS X" />
<cot cot="a-.-G-U-S-S-X-C" full="Gnd/SUPPLY CLASS X CORPS" desc="SUPPLY CLASS X CORPS" />
<cot cot="a-.-G-U-S-S-X-T" full="Gnd/SUPPLY CLASS X THEATER" desc="SUPPLY CLASS X THEATER" />
<cot cot="a-.-G-U-S-S-d" full="Gnd/SupplyDepot" desc="SupplyDepot" />
<cot cot="a-.-G-U-S-T" full="Gnd/TRANSPORTATION" desc="TRANSPORTATION" />
<cot cot="a-.-G-U-S-T-A" full="Gnd/APOD/APOE" desc="APOD/APOE" />
<cot cot="a-.-G-U-S-T-A-C" full="Gnd/APOD/APOE CORPS" desc="APOD/APOE CORPS" />
<cot cot="a-.-G-U-S-T-A-T" full="Gnd/APOD/APOE THEATER" desc="APOD/APOE THEATER" />
<cot cot="a-.-G-U-S-T-C" full="Gnd/TRANSPORTATION CORPS" desc="TRANSPORTATION CORPS" />
<cot cot="a-.-G-U-S-T-I" full="Gnd/MISSILE" desc="MISSILE" />
<cot cot="a-.-G-U-S-T-I-C" full="Gnd/MISSILE CORPS" desc="MISSILE CORPS" />
<cot cot="a-.-G-U-S-T-I-T" full="Gnd/MISSILE THEATER" desc="MISSILE THEATER" />
<cot cot="a-.-G-U-S-T-M" full="Gnd/MOVEMENT CONTROL CENTER(MCC)" desc="MOVEMENT CONTROL CENTER(MCC)" />
<cot cot="a-.-G-U-S-T-M-C" full="Gnd/MCC CORPS" desc="MCC CORPS" />
<cot cot="a-.-G-U-S-T-M-T" full="Gnd/MCC THEATER" desc="MCC THEATER" />
<cot cot="a-.-G-U-S-T-R" full="Gnd/RAILHEAD" desc="RAILHEAD" />
<cot cot="a-.-G-U-S-T-R-C" full="Gnd/RAILHEAD CORPS" desc="RAILHEAD CORPS" />
<cot cot="a-.-G-U-S-T-R-T" full="Gnd/RAILHEAD THEATER" desc="RAILHEAD THEATER" />
<cot cot="a-.-G-U-S-T-S" full="Gnd/SPOD/SPOE" desc="SPOD/SPOE" />
<cot cot="a-.-G-U-S-T-S-C" full="Gnd/SPOD/SPOE CORPS" desc="SPOD/SPOE CORPS" />
<cot cot="a-.-G-U-S-T-S-T" full="Gnd/SPOD/SPOE THEATER" desc="SPOD/SPOE THEATER" />
<cot cot="a-.-G-U-S-T-T" full="Gnd/TRANSPORTATION THEATER" desc="TRANSPORTATION THEATER" />
<cot cot="a-.-G-U-S-X" full="Gnd/MAINTENANCE" desc="MAINTENANCE" />
<cot cot="a-.-G-U-S-X-C" full="Gnd/MAINTENANCE CORPS" desc="MAINTENANCE CORPS" />
<cot cot="a-.-G-U-S-X-E" full="Gnd/ELECTRO OPTICAL" desc="ELECTRO OPTICAL" />
<cot cot="a-.-G-U-S-X-E-C" full="Gnd/ELECTRO OPTICAL CORPS" desc="ELECTRO OPTICAL CORPS" />
<cot cot="a-.-G-U-S-X-E-T" full="Gnd/ELECTRO OPTICAL THEATER" desc="ELECTRO OPTICAL THEATER" />
<cot cot="a-.-G-U-S-X-H" full="Gnd/MAINTENANCE HEAVY" desc="MAINTENANCE HEAVY" />
<cot cot="a-.-G-U-S-X-H-C" full="Gnd/MAINTENANCE HEAVY CORPS" desc="MAINTENANCE HEAVY CORPS" />
<cot cot="a-.-G-U-S-X-H-T" full="Gnd/MAINTENANCE HEAVY THEATER" desc="MAINTENANCE HEAVY THEATER" />
<cot cot="a-.-G-U-S-X-O" full="Gnd/ORDNANCE" desc="ORDNANCE" />
<cot cot="a-.-G-U-S-X-O-C" full="Gnd/ORDNANCE CORPS" desc="ORDNANCE CORPS" />
<cot cot="a-.-G-U-S-X-O-M" full="Gnd/ORDNANCE MISSILE" desc="ORDNANCE MISSILE" />
<cot cot="a-.-G-U-S-X-O-M-C" full="Gnd/ORDNANCE MISSILE CORPS" desc="ORDNANCE MISSILE CORPS" />
<cot cot="a-.-G-U-S-X-O-M-T" full="Gnd/ORDNANCE MISSILE THEATER" desc="ORDNANCE MISSILE THEATER" />
<cot cot="a-.-G-U-S-X-O-T" full="Gnd/ORDNANCE THEATER" desc="ORDNANCE THEATER" />
<cot cot="a-.-G-U-S-X-R" full="Gnd/MAINTENANCE RECOVERY" desc="MAINTENANCE RECOVERY" />
<cot cot="a-.-G-U-S-X-R-C" full="Gnd/MAINTENANCE RECOVERY CORPS" desc="MAINTENANCE RECOVERY CORPS" />
<cot cot="a-.-G-U-S-X-R-T" full="Gnd/MAINTENANCE RECOVERY THEATER" desc="MAINTENANCE RECOVERY THEATER" />
<cot cot="a-.-G-U-S-X-T" full="Gnd/MAINTENANCE THEATER" desc="MAINTENANCE THEATER" />
<cot cot="a-.-G-U-U" full="Gnd/COMBAT SUPPORT" desc="COMBAT SUPPORT" />
<cot cot="a-.-G-U-U-A" full="Gnd/COMBAT SUPPORT NBC" desc="COMBAT SUPPORT NBC" />
<cot cot="a-.-G-U-U-A-B" full="Gnd/BIOLOGICAL" desc="BIOLOGICAL" />
<cot cot="a-.-G-U-U-A-B-R" full="Gnd/RECON EQUIPPED" desc="RECON EQUIPPED" />
<cot cot="a-.-G-U-U-A-C" full="Gnd/CHEMICAL" desc="CHEMICAL" />
<cot cot="a-.-G-U-U-A-C-C" full="Gnd/SMOKE/DECON" desc="SMOKE/DECON" />
<cot cot="a-.-G-U-U-A-C-C-K" full="Gnd/MECHANIZED SMOKE/DECON" desc="MECHANIZED SMOKE/DECON" />
<cot cot="a-.-G-U-U-A-C-C-M" full="Gnd/MOTORIZED SMOKE/DECON" desc="MOTORIZED SMOKE/DECON" />
<cot cot="a-.-G-U-U-A-C-R" full="Gnd/CHEMICAL RECON" desc="CHEMICAL RECON" />
<cot cot="a-.-G-U-U-A-C-R-S" full="Gnd/CHEMICAL WHEELED ARMORED VEHICLE" desc="CHEMICAL WHEELED ARMORED VEHICLE" />
<cot cot="a-.-G-U-U-A-C-R-W" full="Gnd/CHEMICAL WHEELED ARMORED VEHICLE" desc="CHEMICAL WHEELED ARMORED VEHICLE" />
<cot cot="a-.-G-U-U-A-C-S" full="Gnd/SMOKE" desc="SMOKE" />
<cot cot="a-.-G-U-U-A-C-S-A" full="Gnd/ARMOR SMOKE" desc="ARMOR SMOKE" />
<cot cot="a-.-G-U-U-A-C-S-M" full="Gnd/MOTORIZED SMOKE" desc="MOTORIZED SMOKE" />
<cot cot="a-.-G-U-U-A-D" full="Gnd/DECONTAMINATION" desc="DECONTAMINATION" />
<cot cot="a-.-G-U-U-A-N" full="Gnd/NUCLEAR" desc="NUCLEAR" />
<cot cot="a-.-G-U-U-E" full="Gnd/EXPLOSIVE ORDINANCE DISPOSAL" desc="EXPLOSIVE ORDINANCE DISPOSAL" />
<cot cot="a-.-G-U-U-I" full="Gnd/INFORMATION WARFARE UNIT" desc="INFORMATION WARFARE UNIT" />
<cot cot="a-.-G-U-U-L" full="Gnd/LAW ENFORCEMENT UNIT" desc="LAW ENFORCEMENT UNIT" />
<cot cot="a-.-G-U-U-L-C" full="Gnd/CIVILIAN LAW ENFORCEMENT" desc="CIVILIAN LAW ENFORCEMENT" />
<cot cot="a-.-G-U-U-L-D" full="Gnd/CENTRAL INTELLIGENCE DIVISION (CID)" desc="CENTRAL INTELLIGENCE DIVISION (CID)" />
<cot cot="a-.-G-U-U-L-F" full="Gnd/SECURITY POLICE (AIR)" desc="SECURITY POLICE (AIR)" />
<cot cot="a-.-G-U-U-L-M" full="Gnd/MILITARY POLICE" desc="MILITARY POLICE" />
<cot cot="a-.-G-U-U-L-S" full="Gnd/SHORE PATROL" desc="SHORE PATROL" />
<cot cot="a-.-G-U-U-M" full="Gnd/MILITARY INTELLIGENCE" desc="MILITARY INTELLIGENCE" />
<cot cot="a-.-G-U-U-M-A" full="Gnd/AERIAL EXPLOITATION" desc="AERIAL EXPLOITATION" />
<cot cot="a-.-G-U-U-M-C" full="Gnd/COUNTER INTELLIGENCE" desc="COUNTER INTELLIGENCE" />
<cot cot="a-.-G-U-U-M-J" full="Gnd/JOINT INTELLIGENCE CENTER" desc="JOINT INTELLIGENCE CENTER" />
<cot cot="a-.-G-U-U-M-M-O" full="Gnd/METEOROLOGICAL" desc="METEOROLOGICAL" />
<cot cot="a-.-G-U-U-M-O" full="Gnd/OPERATIONS" desc="OPERATIONS" />
<cot cot="a-.-G-U-U-M-Q" full="Gnd/INTERROGATION" desc="INTERROGATION" />
<cot cot="a-.-G-U-U-M-R" full="Gnd/SURVEILLANCE" desc="SURVEILLANCE" />
<cot cot="a-.-G-U-U-M-R-G" full="Gnd/GROUND SURVEILLANCE RADAR" desc="GROUND SURVEILLANCE RADAR" />
<cot cot="a-.-G-U-U-M-R-S" full="Gnd/SENSOR" desc="SENSOR" />
<cot cot="a-.-G-U-U-M-R-S-S" full="Gnd/SENSOR SCM" desc="SENSOR SCM" />
<cot cot="a-.-G-U-U-M-R-X" full="Gnd/GROUND STATION MODULE" desc="GROUND STATION MODULE" />
<cot cot="a-.-G-U-U-M-S" full="Gnd/SIGNAL INTELLIGENCE (SIGINT)" desc="SIGNAL INTELLIGENCE (SIGINT)" />
<cot cot="a-.-G-U-U-M-S-E" full="Gnd/ELECTRONIC WARFARE" desc="ELECTRONIC WARFARE" />
<cot cot="a-.-G-U-U-M-S-E-A" full="Gnd/ARMORED WHEELED VEHICLE" desc="ARMORED WHEELED VEHICLE" />
<cot cot="a-.-G-U-U-M-S-E-C" full="Gnd/CORPS" desc="CORPS" />
<cot cot="a-.-G-U-U-M-S-E-D" full="Gnd/DIRECTION FINDING" desc="DIRECTION FINDING" />
<cot cot="a-.-G-U-U-M-S-E-I" full="Gnd/INTERCEPT" desc="INTERCEPT" />
<cot cot="a-.-G-U-U-M-S-E-J" full="Gnd/JAMMING" desc="JAMMING" />
<cot cot="a-.-G-U-U-M-S-E-T" full="Gnd/THEATER" desc="THEATER" />
<cot cot="a-.-G-U-U-M-T" full="Gnd/TACTICAL EXPLOIT" desc="TACTICAL EXPLOIT" />
<cot cot="a-.-G-U-U-P" full="Gnd/LANDING SUPPORT" desc="LANDING SUPPORT" />
<cot cot="a-.-G-U-U-S" full="Gnd/SIGNAL UNIT" desc="SIGNAL UNIT" />
<cot cot="a-.-G-U-U-S-A" full="Gnd/AREA" desc="AREA" />
<cot cot="a-.-G-U-U-S-C" full="Gnd/COMMUNICATION CONFIGURED PACKAGE" desc="COMMUNICATION CONFIGURED PACKAGE" />
<cot cot="a-.-G-U-U-S-C-L" full="Gnd/LARGE COMMUNICATION CONFIGURED PACKAGE" desc="LARGE COMMUNICATION CONFIGURED PACKAGE" />
<cot cot="a-.-G-U-U-S-F" full="Gnd/FORWARD COMMUNICATIONS" desc="FORWARD COMMUNICATIONS" />
<cot cot="a-.-G-U-U-S-M" full="Gnd/MULTIPLE SUBSCRIBER ELEMENT" desc="MULTIPLE SUBSCRIBER ELEMENT" />
<cot cot="a-.-G-U-U-S-M-L" full="Gnd/LARGE EXTENSION NODE" desc="LARGE EXTENSION NODE" />
<cot cot="a-.-G-U-U-S-M-N" full="Gnd/NODE CENTER" desc="NODE CENTER" />
<cot cot="a-.-G-U-U-S-M-S" full="Gnd/SMALL EXTENSION NODE" desc="SMALL EXTENSION NODE" />
<cot cot="a-.-G-U-U-S-O" full="Gnd/COMMAND OPERATIONS" desc="COMMAND OPERATIONS" />
<cot cot="a-.-G-U-U-S-R" full="Gnd/RADIO UNIT" desc="RADIO UNIT" />
<cot cot="a-.-G-U-U-S-R-S" full="Gnd/TACTICAL SATELLITE" desc="TACTICAL SATELLITE" />
<cot cot="a-.-G-U-U-S-R-T" full="Gnd/TELETYPE CENTER" desc="TELETYPE CENTER" />
<cot cot="a-.-G-U-U-S-R-W" full="Gnd/RELAY" desc="RELAY" />
<cot cot="a-.-G-U-U-S-S" full="Gnd/SIGNAL SUPPORT" desc="SIGNAL SUPPORT" />
<cot cot="a-.-G-U-U-S-W" full="Gnd/TELEPHONE SWITCH" desc="TELEPHONE SWITCH" />
<cot cot="a-.-G-U-U-S-X" full="Gnd/ELECTRONIC RANGING" desc="ELECTRONIC RANGING" />
<!-- Begin section that incorporates experimental extensions to support Incident Management resource types -->
<cot cot="a-.-G-U-i" full="Gnd/IM Resources" desc="Incident Management Resources" />
<cot cot="a-.-G-U-i-a" full="Gnd/IM Resources/Animal Health" desc="Animal Health" />
<cot cot="a-.-G-U-i-a-lar" full="Gnd/Large Animal Rescue Strike Team" desc="Large Animal Rescue Strike Team" />
<cot cot="a-.-G-U-i-a-las" full="Gnd/Large Animal Sheltering Team" desc="Large Animal Sheltering Team" />
<cot cot="a-.-G-U-i-a-lat" full="Gnd/Large Animal Transport Team" desc="Large Animal Transport Team" />
<cot cot="a-.-G-U-i-a-sar" full="Gnd/Small Animal Rescue Strike Team" desc="Small Animal Rescue Strike Team" />
<cot cot="a-.-G-U-i-a-sas" full="Gnd/Small Animal Sheltering Team" desc="Small Animal Sheltering Team" />
<cot cot="a-.-G-U-i-a-sat" full="Gnd/Small Animal Transport Team" desc="Small Animal Transport Team" />
<cot cot="a-.-G-U-i-a-imt" full="Gnd/Incident Management Team Animal Protection" desc="Incident Management Team Animal Protection" />
<cot cot="a-.-G-U-i-e" full="Gnd/IM Resources/Emergency Management" desc="Emergency Management" />
<cot cot="a-.-G-U-i-e-acrc" full="Gnd/Airborne Communications Relay (CAP)" desc="Airborne Communications Relay(CAP)" />
<cot cot="a-.-G-U-i-e-acrt" full="Gnd/Airborne Communications Relay Team" desc="Airborne Communications Relay Team" />
<cot cot="a-.-G-U-i-e-att" full="Gnd/Airborne Transport Team" desc="Airborne Transport Team" />
<cot cot="a-.-G-U-i-e-cis" full="Gnd/Critical Incident Stress Management Team" desc="Critical Incident Stress Management Team" />
<cot cot="a-.-G-U-i-e-cst" full="Gnd/Communications Support Team" desc="Communications Support Team" />
<cot cot="a-.-G-U-i-e-dc" full="Gnd/Donations Coordinator" desc="Donations Coordinator" />
<cot cot="a-.-G-U-i-e-dmt" full="Gnd/Donations Management Personnel Team" desc="Donations Management Personnel Team" />
<cot cot="a-.-G-U-i-e-ect" full="Gnd/Evacuation Coordination Team" desc="Evacuation Coordination Team" />
<cot cot="a-.-G-U-i-e-efa" full="Gnd/EOC Finance Administration" desc="EOC Finance Administration" />
<cot cot="a-.-G-U-i-e-elt" full="Gnd/Evacuation Liaison Team" desc="Evacuation Liaison Team" />
<cot cot="a-.-G-U-i-e-ems" full="Gnd/EOC Management Support Team" desc="EOC Management Support Team" />
<cot cot="a-.-G-U-i-e-eos" full="Gnd/EOC Operations Section Chief" desc="EOC Operations Section Chief" />
<cot cot="a-.-G-U-i-e-eps" full="Gnd/EOC Planning Section Chief" desc="EOC Planning Section Chief" />
<cot cot="a-.-G-U-i-e-ial" full="Gnd/Individual Assistance Disaster Assessment Team Leader" desc="Individual Assistance Disaster Assessment Team Leader" />
<cot cot="a-.-G-U-i-e-iat" full="Gnd/Individual Assistance Disaster Assessment Team" desc="Individual Assistance Disaster Assessment Team" />
<cot cot="a-.-G-U-i-e-imt" full="Gnd/Incident Management Team" desc="Incident Management Team" />
<cot cot="a-.-G-U-i-e-mcc" full="Gnd/Mobile Communications Center" desc="Mobile Communications Center" />
<cot cot="a-.-G-U-i-e-mfk" full="Gnd/Mobile Feeding Kitchen" desc="Mobile Feeding Kitchen" />
<cot cot="a-.-G-U-i-e-pac" full="Gnd/Public Assistance Coordinator" desc="Public Assistance Coordinator" />
<cot cot="a-.-G-U-i-e-rna" full="Gnd/Rapid Needs Assessment Team" desc="Rapid Needs Assessment Team" />
<cot cot="a-.-G-U-i-e-smt" full="Gnd/Shelter Management Team" desc="Shelter Management Team" />
<cot cot="a-.-G-U-i-e-val" full="Gnd/Volunteer Agency Liaison" desc="Volunteer Agency Liaison" />
<cot cot="a-.-G-U-i-m" full="Gnd/IM Resources/Emergency Medical Services" desc="Emergency Medical Services" />
<cot cot="a-.-G-U-i-m-aaf" full="Gnd/Air Ambulance (Fixed-Wing)" desc="Air Ambulance (Fixed-Wing)" />
<cot cot="a-.-G-U-i-m-aar" full="Gnd/Air Ambulance (Rotary-Wing)" desc="Air Ambulance (Rotary-Wing)" />
<cot cot="a-.-G-U-i-m-ag" full="Gnd/Ambulances (Ground)" desc="Ambulances (Ground)" />
<cot cot="a-.-G-U-i-m-ast" full="Gnd/Ambulance Strike Team" desc="Ambulance Strike Team" />
<cot cot="a-.-G-U-i-m-atf" full="Gnd/Ambulance Task Force" desc="Ambulance Task Force" />
<cot cot="a-.-G-U-i-m-etf" full="Gnd/Emergency Medical Task Force" desc="Emergency Medical Task Force" />
<cot cot="a-.-G-U-i-f" full="Gnd/IM Resources/Fire HAZMAT" desc="Fire HAZMAT" />
<cot cot="a-.-G-U-i-f-act" full="Gnd/Area Command Team, Firefighting" desc="Area Command Team, Firefighting" />
<cot cot="a-.-G-U-i-f-bp" full="Gnd/Brush Patrol" desc="Brush Patrol" />
<cot cot="a-.-G-U-i-f-ct" full="Gnd/Crew Transport" desc="Crew Transport" />
<cot cot="a-.-G-U-i-f-efp" full="Gnd/Engine, Fire (Pumper)" desc="Engine, Fire (Pumper)" />
<cot cot="a-.-G-U-i-f-fb" full="Gnd/Fire Boat" desc="Fire Boat" />
<cot cot="a-.-G-U-i-f-ft" full="Gnd/Fuel Tender" desc="Fuel Tender" />
<cot cot="a-.-G-U-i-f-fta" full="Gnd/Fire Truck" desc="Fire Truck" />
<cot cot="a-.-G-U-i-f-ftf" full="Gnd/Foam Tender" desc="Foam Tender" />
<cot cot="a-.-G-U-i-f-hc" full="Gnd/Hand Crew" desc="Hand Crew" />
<cot cot="a-.-G-U-i-f-het" full="Gnd/HazMat Entry Team" desc="HazMat Entry Team" />
<cot cot="a-.-G-U-i-f-hf" full="Gnd/Helicopters Firefighting" desc="Helicopters, Firefighting" />
<cot cot="a-.-G-U-i-f-ht" full="Gnd/Helitanker " desc="Helitanker" />
<cot cot="a-.-G-U-i-f-imt" full="Gnd/Incident Management Team Firefighting" desc="Incident Management Team Firefighting" />
<cot cot="a-.-G-U-i-f-ibt" full="Gnd/Interagency Buying Team Firefighting" desc="Interagency Buying Team Firefighting" />
<cot cot="a-.-G-U-i-f-mcu" full="Gnd/Mobile Communications Unit" desc="Mobile Communications Unit" />
<cot cot="a-.-G-U-i-f-nsf" full="Gnd/USCG National Strike Force" desc="USCG National Strike Force" />
<cot cot="a-.-G-U-i-f-pp" full="Gnd/Portable Pump" desc="Portable Pump" />
<cot cot="a-.-G-U-i-f-st" full="Gnd/Strike Team, Engine (Fire)" desc="Strike Team, Engine (Fire)" />
<cot cot="a-.-G-U-i-f-wt" full="Gnd/Water Tender, Firefighting (Tanker)" desc="Water Tender, Firefighting (Tanker)" />
<cot cot="a-.-G-U-i-h" full="Gnd/IM Resources/Health and Medical" desc="Health and Medical" />
<cot cot="a-.-G-U-i-h-dmb" full="Gnd/Disaster Medical Assistance Team - Basic" desc="Disaster Medical Assistance Team - Basic" />
<cot cot="a-.-G-U-i-h-dmc" full="Gnd/Disaster Medical Assistance Team - Crush Injury Specialty" desc="Disaster Medical Assistance Team - Crush Injury Specialty" />
<cot cot="a-.-G-U-i-h-dmm" full="Gnd/Disaster Medical Assistance Team - Mental Health" desc="Disaster Medical Assistance Team - Mental Health" />
<cot cot="a-.-G-U-i-h-dmp" full="Gnd/Disaster Medical Assistance Team - Pediatric" desc="Disaster Medical Assistance Team - Pediatric" />
<cot cot="a-.-G-U-i-h-dms" full="Gnd/Disaster Medical Assistance Team - Burn" desc="Disaster Medical Assistance Team - Burn" />
<cot cot="a-.-G-U-i-h-mor" full="Gnd/Disaster Mortuary Operational Response Team" desc="Disaster Mortuary Operational Response Team" />
<cot cot="a-.-G-U-i-h-msr" full="Gnd/International Medical Surgical Response Team" desc="International Medical Surgical Response Team" />
<cot cot="a-.-G-U-i-h-mst" full="Gnd/NDMS Management Support Team" desc="NDMS Management Support Team" />
<cot cot="a-.-G-U-i-h-vma" full="Gnd/Veterinary Medical Assistance Team" desc="Veterinary Medical Assistance Team" />
<cot cot="a-.-G-U-i-l" full="Gnd/IM Resources/Law Enforcement" desc="Law Enforcement" />
<cot cot="a-.-G-U-i-l-bs" full="Gnd/Bomb Squad Explosives Team" desc="Bomb Squad Explosives Team" />
<cot cot="a-.-G-U-i-l-cct" full="Gnd/Crowd Control Team" desc="Crowd Control Team" />
<cot cot="a-.-G-U-i-l-dt" full="Gnd/Public Safety Dive Team" desc="Public Safety Dive Team" />
<cot cot="a-.-G-U-i-l-hps" full="Gnd/Aviation-Helicopters Patrol Surveillance" desc="Aviation-Helicopters Patrol Surveillance" />
<cot cot="a-.-G-U-i-l-oa" full="Gnd/Observation Aircraft" desc="Observation Aircraft" />
<cot cot="a-.-G-U-i-l-tt" full="Gnd/SWAT Tactical Team" desc="SWAT Tactical Team" />
<cot cot="a-.-G-U-i-p" full="Gnd/IM Resources/Public Works" desc="Public Works" />
<cot cot="a-.-G-U-i-p-acf" full="Gnd/Air Curtain Burners (Above Ground)" desc="Air Curtain Burners (Above Ground)" />
<cot cot="a-.-G-U-i-p-ach" full="Gnd/Air Conditioner Heater" desc="Air Conditioner Heater" />
<cot cot="a-.-G-U-i-p-act" full="Gnd/Air Curtain Burners (In Ground)" desc="Air Curtain Burners (In Ground)" />
<cot cot="a-.-G-U-i-p-atc" full="Gnd/All Terrain Cranes" desc="All Terrain Cranes" />
<cot cot="a-.-G-U-i-p-bh" full="Gnd/Backhoe Loader" desc="Backhoe Loader" />
<cot cot="a-.-G-U-i-p-cah" full="Gnd/Chillers Air Handlers" desc="Chillers Air Handlers" />
<cot cot="a-.-G-U-i-p-cc" full="Gnd/Crawler Cranes" desc="Crawler Cranes" />
<cot cot="a-.-G-U-i-p-cce" full="Gnd/Concrete Cutter Multi-Processor for Hydraulic Excavator" desc="Concrete Cutter Multi-Processor for Hydraulic Excavator" />
<cot cot="a-.-G-U-i-p-dat" full="Gnd/Disaster Assessment Team" desc="Disaster Assessment Team" />
<cot cot="a-.-G-U-i-p-dmm" full="Gnd/Debris Management Monitoring Team" desc="Debris Management Monitoring Team" />
<cot cot="a-.-G-U-i-p-dmr" full="Gnd/Debris Management Site Reduction Team" desc="Debris Management Site Reduction Team" />
<cot cot="a-.-G-U-i-p-dmt" full="Gnd/Debris Management Team" desc="Debris Management Team" />
<cot cot="a-.-G-U-i-p-drt" full="Gnd/Disaster Recovery Team" desc="Disaster Recovery Team" />
<cot cot="a-.-G-U-i-p-dt" full="Gnd/Dump Trailer" desc="Dump Trailer" />
<cot cot="a-.-G-U-i-p-dtf" full="Gnd/Dump Truck Off Road" desc="Dump Truck Off Road" />
<cot cot="a-.-G-U-i-p-dtn" full="Gnd/Dump Truck On Road" desc="Dump Truck On Road" />
<cot cot="a-.-G-U-i-p-epr" full="Gnd/Electrical Power Restoration Team" desc="Electrical Power Restoration Team" />
<cot cot="a-.-G-U-i-p-es" full="Gnd/Engineering Services" desc="Engineering Services" />
<cot cot="a-.-G-U-i-p-fbt" full="Gnd/Flat Bed Trailer Truck" desc="Flat Bed Trailer Truck" />
<cot cot="a-.-G-U-i-p-gen" full="Gnd/Generators " desc="Generators" />
<cot cot="a-.-G-U-i-p-hel" full="Gnd/Hydraulic Excavator (Large)" desc="Hydraulic Excavator (Large)" />
<cot cot="a-.-G-U-i-p-hem" full="Gnd/Hydraulic Excavator (Medium)" desc="Hydraulic Excavator (Medium)" />
<cot cot="a-.-G-U-i-p-htc" full="Gnd/Hydraulic Truck Cranes" desc="Hydraulic Truck Cranes" />
<cot cot="a-.-G-U-i-p-ltc" full="Gnd/Lattice Truck Cranes" desc="Lattice Truck Cranes" />
<cot cot="a-.-G-U-i-p-tb" full="Gnd/Tug Boat" desc="Tug Boat" />
<cot cot="a-.-G-U-i-p-td" full="Gnd/Track Dozer" desc="Track Dozer" />
<cot cot="a-.-G-U-i-p-tg" full="Gnd/Tub Grinder" desc="Tub Grinder" />
<cot cot="a-.-G-U-i-p-tt" full="Gnd/Tractor Trailer" desc="Tractor Trailer" />
<cot cot="a-.-G-U-i-p-wd" full="Gnd/Wheel Dozer" desc="Wheel Dozer" />
<cot cot="a-.-G-U-i-p-wll" full="Gnd/Wheel Loaders (Large)" desc="Wheel Loaders (Large)" />
<cot cot="a-.-G-U-i-p-wlm" full="Gnd/Wheel Loaders (Medium)" desc="Wheel Loaders (Medium)" />
<cot cot="a-.-G-U-i-p-wls" full="Gnd/Wheel Loaders (Small)" desc="Wheel Loaders (Small)" />
<cot cot="a-.-G-U-i-p-wpt" full="Gnd/Water Purification Team" desc="Water Purification Team" />
<cot cot="a-.-G-U-i-p-wt" full="Gnd/Water Truck" desc="Water Truck" />
<cot cot="a-.-G-U-i-s" full="Gnd/IM Resources/Search and Rescue" desc="Search and Rescue" />
<cot cot="a-.-G-U-i-s-ar" full="Gnd/Airborne Reconnaissance" desc="Airborne Reconnaissance" />
<cot cot="a-.-G-U-i-s-ast" full="Gnd/Air Search Team" desc="Air Search Team" />
<cot cot="a-.-G-U-i-s-cas" full="Gnd/Canine SAR Team Avalanche Snow" desc="Canine SAR Team Avalanche Snow" />
<cot cot="a-.-G-U-i-s-cav" full="Gnd/Cave SAR Team" desc="Cave SAR Team" />
<cot cot="a-.-G-U-i-s-cdr" full="Gnd/Canine SAR Team Disaster Response" desc="Canine SAR Team Disaster Response" />
<cot cot="a-.-G-U-i-s-clc" full="Gnd/Canine SAR Team Land Cadaver" desc="Canine SAR Team Land Cadaver" />
<cot cot="a-.-G-U-i-s-col" full="Gnd/Collapse SAR Team" desc="Collapse SAR Team" />
<cot cot="a-.-G-U-i-s-cwa" full="Gnd/Canine SAR Team Water" desc="Canine SAR Team Water" />
<cot cot="a-.-G-U-i-s-cwi" full="Gnd/Canine SAR Team Wilderness" desc="Canine SAR Team Wilderness" />
<cot cot="a-.-G-U-i-s-cwt" full="Gnd/Canine SAR Team Wilderness Tracking" desc="Canine SAR Team Wilderness Tracking" />
<cot cot="a-.-G-U-i-s-mt" full="Gnd/Mine Tunnel SAR Team" desc="Mine Tunnel SAR Team" />
<cot cot="a-.-G-U-i-s-mnt" full="Gnd/Mountain SAR Team" desc="Mountain SAR Team" />
<cot cot="a-.-G-U-i-s-rdf" full="Gnd/Radio Direction Finding Team" desc="Radio Direction Finding Team" />
<cot cot="a-.-G-U-i-s-sfd" full="Gnd/Swiftwater Flood Search and Dive Rescue Team" desc="Swiftwater Flood Search and Dive Rescue Team" />
<cot cot="a-.-G-U-i-s-uis" full="Gnd/USAR Incident Support Team" desc="USAR Incident Support Team" />
<cot cot="a-.-G-U-i-s-utf" full="Gnd/USAR Task Force" desc="USAR Task Force" />
<cot cot="a-.-G-U-i-s-wi" full="Gnd/Wilderness SAR Team" desc="Wilderness SAR Team" />
<cot cot="a-.-G-U-i-o" full="Gnd/IM Resources/Other" desc="Other" />
<!-- End of section that incorporates experimental extensions to support Incident Management resource types -->
<cot cot="a-.-S" full="Surface/SEA SURFACE TRACK" desc="SEA SURFACE TRACK" />
<cot cot="a-.-S-C" full="Surface/COMBATANT" desc="COMBATANT" />
<cot cot="a-.-S-C-A" full="Surface/AMPHIBIOUS WARFARE SHIP" desc="AMPHIBIOUS WARFARE SHIP" />
<cot cot="a-.-S-C-A-L-A" full="Surface/ASSAULT VESSEL" desc="ASSAULT VESSEL" />
<cot cot="a-.-S-C-A-L-C" full="Surface/LANDING CRAFT" desc="LANDING CRAFT" />
<cot cot="a-.-S-C-A-L-S" full="Surface/LANDING SHIP" desc="LANDING SHIP" />
<cot cot="a-.-S-C-H" full="Surface/HOVERCRAFT" desc="HOVERCRAFT" />
<cot cot="a-.-S-C-L" full="Surface/LINE" desc="LINE" />
<cot cot="a-.-S-C-L-B-B" full="Surface/BATTLESHIP" desc="BATTLESHIP" />
<cot cot="a-.-S-C-L-C-C" full="Surface/CRUISER" desc="CRUISER" />
<cot cot="a-.-S-C-L-C-V" full="Surface/CARRIER" desc="CARRIER" />
<cot cot="a-.-S-C-L-D-D" full="Surface/DESTROYER" desc="DESTROYER" />
<cot cot="a-.-S-C-L-F-F" full="Surface/FRIGATE/CORVETTE" desc="FRIGATE/CORVETTE" />
<cot cot="a-.-S-C-M" full="Surface/MINE WARFARE VESSEL" desc="MINE WARFARE VESSEL" />
<cot cot="a-.-S-C-M-M-A" full="Surface/MCM SUPPORT" desc="MCM SUPPORT" />
<cot cot="a-.-S-C-M-M-D" full="Surface/MCM DRONE" desc="MCM DRONE" />
<cot cot="a-.-S-C-M-M-H" full="Surface/MINEHUNTER" desc="MINEHUNTER" />
<cot cot="a-.-S-C-M-M-L" full="Surface/MINELAYER" desc="MINELAYER" />
<cot cot="a-.-S-C-M-M-S" full="Surface/MINESWEEPER" desc="MINESWEEPER" />
<cot cot="a-.-S-C-P" full="Surface/PATROL" desc="PATROL" />
<cot cot="a-.-S-C-P-S-B" full="Surface/ANTISUBMARINE WARFARE" desc="ANTISUBMARINE WARFARE" />
<cot cot="a-.-S-C-P-S-U" full="Surface/ANTISURFACE WARFARE" desc="ANTISURFACE WARFARE" />
<cot cot="a-.-S-G" full="Surface/NAVY GROUP" desc="NAVY GROUP" />
<cot cot="a-.-S-G-C" full="Surface/CONVOY" desc="CONVOY" />
<cot cot="a-.-S-G-G" full="Surface/NAVY TASK GROUP" desc="NAVY TASK GROUP" />
<cot cot="a-.-S-G-T" full="Surface/NAVY TASK FORCE" desc="NAVY TASK FORCE" />
<cot cot="a-.-S-G-U" full="Surface/NAVY TASK UNIT" desc="NAVY TASK UNIT" />
<cot cot="a-.-S-N" full="Surface/NONCOMBATANT" desc="NONCOMBATANT" />
<cot cot="a-.-S-N-F" full="Surface/FLEET SUPPORT" desc="FLEET SUPPORT" />
<cot cot="a-.-S-N-H" full="Surface/HOVERCRAFT" desc="HOVERCRAFT" />
<cot cot="a-.-S-N-I" full="Surface/INTELLIGENCE" desc="INTELLIGENCE" />
<cot cot="a-.-S-N-M" full="Surface/HOSPITAL SHIP" desc="HOSPITAL SHIP" />
<cot cot="a-.-S-N-N" full="Surface/STATION" desc="STATION" />
<cot cot="a-.-S-N-N-R" full="Surface/RESCUE" desc="RESCUE" />
<cot cot="a-.-S-N-R" full="Surface/UNDERWAY REPLENISHMENT" desc="UNDERWAY REPLENISHMENT" />
<cot cot="a-.-S-N-S" full="Surface/SERVICE/SUPPORT HARBOR" desc="SERVICE/SUPPORT HARBOR" />
<cot cot="a-.-S-O" full="Surface/OWN TRACK" desc="OWN TRACK" />
<cot cot="a-.-S-S" full="Surface/STATION" desc="STATION" />
<cot cot="a-.-S-S-A" full="Surface/ASW SHIP" desc="ASW SHIP" />
<cot cot="a-.-S-S-P" full="Surface/PICKET" desc="PICKET" />
<cot cot="a-.-S-X" full="Surface/NON MILITARY" desc="NON MILITARY" />
<cot cot="a-.-S-X-F" full="Surface/FISHING" desc="FISHING" />
<cot cot="a-.-S-X-F-D-F" full="Surface/DRIFTER" desc="DRIFTER" />
<cot cot="a-.-S-X-F-D-R" full="Surface/DREDGE" desc="DREDGE" />
<cot cot="a-.-S-X-F-T-R" full="Surface/TRAWLER" desc="TRAWLER" />
<cot cot="a-.-S-X-H" full="Surface/HOVERCRAFT" desc="HOVERCRAFT" />
<cot cot="a-.-S-X-L" full="Surface/LAW ENFORCEMENT VESSEL" desc="LAW ENFORCEMENT VESSEL" />
<cot cot="a-.-S-X-M" full="Surface/MERCHANT" desc="MERCHANT" />
<cot cot="a-.-S-X-M-C" full="Surface/CARGO" desc="CARGO" />
<cot cot="a-.-S-X-M-F" full="Surface/FERRY" desc="FERRY" />
<cot cot="a-.-S-X-M-H" full="Surface/HAZARDOUS MATERIALS (HAZMAT)" desc="HAZARDOUS MATERIALS (HAZMAT)" />
<cot cot="a-.-S-X-M-O" full="Surface/OILER/TANKER" desc="OILER/TANKER" />
<cot cot="a-.-S-X-M-P" full="Surface/PASSENGER" desc="PASSENGER" />
<cot cot="a-.-S-X-M-R" full="Surface/ROLL ON/ROLL OFF" desc="ROLL ON/ROLL OFF" />
<cot cot="a-.-S-X-M-T-O" full="Surface/TOWING VESSEL" desc="TOWING VESSEL" />
<cot cot="a-.-S-X-M-T-U" full="Surface/TUG" desc="TUG" />
<cot cot="a-.-S-X-R" full="Surface/LEISURE CRAFT" desc="LEISURE CRAFT" />
<cot cot="a-.-U" full="SubSurf/SUBSURFACE TRACK" desc="SUBSURFACE TRACK" />
<cot cot="a-.-U-N" full="SubSurf/NON SUBMARINE" desc="NON SUBMARINE" />
<cot cot="a-.-U-N-D" full="SubSurf/DIVER" desc="DIVER" />
<cot cot="a-.-U-S" full="SubSurf/SUBMARINE" desc="SUBMARINE" />
<cot cot="a-.-U-S-C" full="SubSurf/SUBMARINE CONVENTIONAL PROPULSION" desc="SUBMARINE CONVENTIONAL PROPULSION" />
<cot cot="a-.-U-S-N" full="SubSurf/SUBMARINE NUCLEAR PROPULSION" desc="SUBMARINE NUCLEAR PROPULSION" />
<cot cot="a-.-U-S-O" full="SubSurf/OTHER SUBMERSIBLE" desc="OTHER SUBMERSIBLE" />
<cot cot="a-.-U-S-S" full="SubSurf/STATION" desc="STATION" />
<cot cot="a-.-U-S-S-A" full="SubSurf/ASW SUBMARINE" desc="ASW SUBMARINE" />
<cot cot="a-.-U-S-U" full="SubSurf/UNMANNED UNDERWATER VEHICLE (UUV)" desc="UNMANNED UNDERWATER VEHICLE (UUV)" />
<cot cot="a-.-U-W" full="SubSurf/UNDERWATER WEAPON" desc="UNDERWATER WEAPON" />
<cot cot="a-.-U-W-D" full="SubSurf/UNDERWATER DECOY" desc="UNDERWATER DECOY" />
<cot cot="a-.-U-W-D-M" full="SubSurf/SEA MINE DECOY" desc="SEA MINE DECOY" />
<cot cot="a-.-U-W-M" full="SubSurf/SEA MINE" desc="SEA MINE" />
<cot cot="a-.-U-W-M-D" full="SubSurf/SEA MINE DEALT" desc="SEA MINE DEALT" />
<cot cot="a-.-U-W-M-F" full="SubSurf/SEA MINE (FLOATING)" desc="SEA MINE (FLOATING)" />
<cot cot="a-.-U-W-M-F-D" full="SubSurf/SEA MINE (FLOATING) DEALT" desc="SEA MINE (FLOATING) DEALT" />
<cot cot="a-.-U-W-M-G" full="SubSurf/SEA MINE (GROUND)" desc="SEA MINE (GROUND)" />
<cot cot="a-.-U-W-M-G-D" full="SubSurf/SEA MINE (GROUND) DEALT" desc="SEA MINE (GROUND) DEALT" />
<cot cot="a-.-U-W-M-M" full="SubSurf/SEA MINE (MOORED)" desc="SEA MINE (MOORED)" />
<cot cot="a-.-U-W-M-M-D" full="SubSurf/SEA MINE (MOORED) DEALT" desc="SEA MINE (MOORED) DEALT" />
<cot cot="a-.-U-W-M-O" full="SubSurf/SEA MINE (IN OTHER POSITION)" desc="SEA MINE (IN OTHER POSITION)" />
<cot cot="a-.-U-W-M-O-D" full="SubSurf/SEA MINE (IN OTHER POSITION) DEALT" desc="SEA MINE (IN OTHER POSITION) DEALT" />
<cot cot="a-.-U-W-T" full="SubSurf/TORPEDO" desc="TORPEDO" />
<!-- Begin section that incorporates experimental extensions to support Incident Management incident types -->
<cot cot="a-.-X" full="Other" desc="Other" />
<cot cot="a-.-X-i" full="Other/INCIDENT" desc="Incident" />
<cot cot="a-.-X-i-g" full="Other/INCIDENT/GEO" desc="Geophysical" />
<cot cot="a-.-X-i-g-a" full="Other/INCIDENT/GEO/AVALANCHE" desc="Geophysical Avalanche" />
<cot cot="a-.-X-i-g-e" full="Other/INCIDENT/GEO/EARTHQUAKE" desc="Geophysical Earthquake" />
<cot cot="a-.-X-i-g-e-a" full="Other/INCIDENT/GEO/AFTERSHOCK" desc="Geophysical Earthquake Aftershock" />
<cot cot="a-.-X-i-g-e-e" full="Other/INCIDENT/GEO/EPICENTER" desc="Geophysical Earthquake Epicenter" />
<cot cot="a-.-X-i-g-l" full="Other/INCIDENT/GEO/LANDSLIDE" desc="Geophysical Landslide" />
<cot cot="a-.-X-i-g-s" full="Other/INCIDENT/GEO/SUBSISTANCE" desc="Geophysical Subsistance" />
<cot cot="a-.-X-i-g-v" full="Other/INCIDENT/GEO/VOLCANO" desc="Geophysical Volcano" />
<cot cot="a-.-X-i-g-v-e" full="Other/INCIDENT/GEO/ERUPTION" desc="Geophysical Volcano Eruption" />
<cot cot="a-.-X-i-g-v-t" full="Other/INCIDENT/GEO/VOLCANO THREAT" desc="Geophysical Volcano Threat" />
<cot cot="a-.-X-i-m" full="Other/INCIDENT/MET" desc="Meteorological" />
<cot cot="a-.-X-i-m-z" full="Other/INCIDENT/MET/DRIZZLE" desc="Meteorological Drizzle" />
<cot cot="a-.-X-i-m-d" full="Other/INCIDENT/MET/DROUGHT" desc="Meteorological Drought" />
<cot cot="a-.-X-i-m-f" full="Other/INCIDENT/MET/FLOOD" desc="Meteorological Flood" />
<cot cot="a-.-X-i-m-g" full="Other/INCIDENT/MET/FOG" desc="Meteorological Fog" />
<cot cot="a-.-X-i-m-h" full="Other/INCIDENT/MET/HAIL" desc="Meteorological Hail" />
<cot cot="a-.-X-i-m-i" full="Other/INCIDENT/MET/INVERSION" desc="Meteorological Inversion" />
<cot cot="a-.-X-i-m-r" full="Other/INCIDENT/MET/RAIN" desc="Meteorological Rain" />
<cot cot="a-.-X-i-m-a" full="Other/INCIDENT/MET/SANDSTORM" desc="Meteorological Sandstorm" />
<cot cot="a-.-X-i-m-s" full="Other/INCIDENT/MET/SNOW" desc="Meteorological Snow" />
<cot cot="a-.-X-i-m-u" full="Other/INCIDENT/METTHUNDERSTORM" desc="Meteorological Thunderstorm" />