summaryrefslogtreecommitdiff
path: root/asnstat/asnfeat.h
blob: d0215640ce7104be779d6cf29487d3c95a2877b3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
/***********************************************************************
*
**
*        Automatic header module from ASNTOOL
*
************************************************************************/

#ifndef _ASNTOOL_
#include <asn.h>
#endif

static char * asnfilename = "asnfeat.h53";
static AsnValxNode avnx[446] = {
    {2,NULL,0,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[2] } ,
    {20,"official" ,1,0.0,&avnx[3] } ,
    {20,"interim" ,2,0.0,NULL } ,
    {20,"other" ,0,0.0,&avnx[5] } ,
    {20,"family" ,1,0.0,&avnx[6] } ,
    {20,"order" ,2,0.0,&avnx[7] } ,
    {20,"class" ,3,0.0,NULL } ,
    {20,"strain" ,2,0.0,&avnx[9] } ,
    {20,"substrain" ,3,0.0,&avnx[10] } ,
    {20,"type" ,4,0.0,&avnx[11] } ,
    {20,"subtype" ,5,0.0,&avnx[12] } ,
    {20,"variety" ,6,0.0,&avnx[13] } ,
    {20,"serotype" ,7,0.0,&avnx[14] } ,
    {20,"serogroup" ,8,0.0,&avnx[15] } ,
    {20,"serovar" ,9,0.0,&avnx[16] } ,
    {20,"cultivar" ,10,0.0,&avnx[17] } ,
    {20,"pathovar" ,11,0.0,&avnx[18] } ,
    {20,"chemovar" ,12,0.0,&avnx[19] } ,
    {20,"biovar" ,13,0.0,&avnx[20] } ,
    {20,"biotype" ,14,0.0,&avnx[21] } ,
    {20,"group" ,15,0.0,&avnx[22] } ,
    {20,"subgroup" ,16,0.0,&avnx[23] } ,
    {20,"isolate" ,17,0.0,&avnx[24] } ,
    {20,"common" ,18,0.0,&avnx[25] } ,
    {20,"acronym" ,19,0.0,&avnx[26] } ,
    {20,"dosage" ,20,0.0,&avnx[27] } ,
    {20,"nat-host" ,21,0.0,&avnx[28] } ,
    {20,"sub-species" ,22,0.0,&avnx[29] } ,
    {20,"specimen-voucher" ,23,0.0,&avnx[30] } ,
    {20,"authority" ,24,0.0,&avnx[31] } ,
    {20,"forma" ,25,0.0,&avnx[32] } ,
    {20,"forma-specialis" ,26,0.0,&avnx[33] } ,
    {20,"ecotype" ,27,0.0,&avnx[34] } ,
    {20,"synonym" ,28,0.0,&avnx[35] } ,
    {20,"anamorph" ,29,0.0,&avnx[36] } ,
    {20,"teleomorph" ,30,0.0,&avnx[37] } ,
    {20,"breed" ,31,0.0,&avnx[38] } ,
    {20,"gb-acronym" ,32,0.0,&avnx[39] } ,
    {20,"gb-anamorph" ,33,0.0,&avnx[40] } ,
    {20,"gb-synonym" ,34,0.0,&avnx[41] } ,
    {20,"culture-collection" ,35,0.0,&avnx[42] } ,
    {20,"bio-material" ,36,0.0,&avnx[43] } ,
    {20,"metagenome-source" ,37,0.0,&avnx[44] } ,
    {20,"type-material" ,38,0.0,&avnx[45] } ,
    {20,"old-lineage" ,253,0.0,&avnx[46] } ,
    {20,"old-name" ,254,0.0,&avnx[47] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"not-set" ,0,0.0,&avnx[49] } ,
    {20,"one" ,1,0.0,&avnx[50] } ,
    {20,"two" ,2,0.0,&avnx[51] } ,
    {20,"three" ,3,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"not-set" ,0,0.0,&avnx[54] } ,
    {20,"preprotein" ,1,0.0,&avnx[55] } ,
    {20,"mature" ,2,0.0,&avnx[56] } ,
    {20,"signal-peptide" ,3,0.0,&avnx[57] } ,
    {20,"transit-peptide" ,4,0.0,&avnx[58] } ,
    {20,"propeptide" ,5,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[61] } ,
    {20,"premsg" ,1,0.0,&avnx[62] } ,
    {20,"mRNA" ,2,0.0,&avnx[63] } ,
    {20,"tRNA" ,3,0.0,&avnx[64] } ,
    {20,"rRNA" ,4,0.0,&avnx[65] } ,
    {20,"snRNA" ,5,0.0,&avnx[66] } ,
    {20,"scRNA" ,6,0.0,&avnx[67] } ,
    {20,"snoRNA" ,7,0.0,&avnx[68] } ,
    {20,"ncRNA" ,8,0.0,&avnx[69] } ,
    {20,"tmRNA" ,9,0.0,&avnx[70] } ,
    {20,"miscRNA" ,10,0.0,&avnx[71] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"disulfide" ,1,0.0,&avnx[73] } ,
    {20,"thiolester" ,2,0.0,&avnx[74] } ,
    {20,"xlink" ,3,0.0,&avnx[75] } ,
    {20,"thioether" ,4,0.0,&avnx[76] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"active" ,1,0.0,&avnx[78] } ,
    {20,"binding" ,2,0.0,&avnx[79] } ,
    {20,"cleavage" ,3,0.0,&avnx[80] } ,
    {20,"inhibit" ,4,0.0,&avnx[81] } ,
    {20,"modified" ,5,0.0,&avnx[82] } ,
    {20,"glycosylation" ,6,0.0,&avnx[83] } ,
    {20,"myristoylation" ,7,0.0,&avnx[84] } ,
    {20,"mutagenized" ,8,0.0,&avnx[85] } ,
    {20,"metal-binding" ,9,0.0,&avnx[86] } ,
    {20,"phosphorylation" ,10,0.0,&avnx[87] } ,
    {20,"acetylation" ,11,0.0,&avnx[88] } ,
    {20,"amidation" ,12,0.0,&avnx[89] } ,
    {20,"methylation" ,13,0.0,&avnx[90] } ,
    {20,"hydroxylation" ,14,0.0,&avnx[91] } ,
    {20,"sulfatation" ,15,0.0,&avnx[92] } ,
    {20,"oxidative-deamination" ,16,0.0,&avnx[93] } ,
    {20,"pyrrolidone-carboxylic-acid" ,17,0.0,&avnx[94] } ,
    {20,"gamma-carboxyglutamic-acid" ,18,0.0,&avnx[95] } ,
    {20,"blocked" ,19,0.0,&avnx[96] } ,
    {20,"lipid-binding" ,20,0.0,&avnx[97] } ,
    {20,"np-binding" ,21,0.0,&avnx[98] } ,
    {20,"dna-binding" ,22,0.0,&avnx[99] } ,
    {20,"signal-peptide" ,23,0.0,&avnx[100] } ,
    {20,"transit-peptide" ,24,0.0,&avnx[101] } ,
    {20,"transmembrane-region" ,25,0.0,&avnx[102] } ,
    {20,"nitrosylation" ,26,0.0,&avnx[103] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[105] } ,
    {20,"pol1" ,1,0.0,&avnx[106] } ,
    {20,"pol2" ,2,0.0,&avnx[107] } ,
    {20,"pol3" ,3,0.0,&avnx[108] } ,
    {20,"bacterial" ,4,0.0,&avnx[109] } ,
    {20,"viral" ,5,0.0,&avnx[110] } ,
    {20,"rna" ,6,0.0,&avnx[111] } ,
    {20,"organelle" ,7,0.0,&avnx[112] } ,
    {20,"other" ,255,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[116] } ,
    {20,"single" ,1,0.0,&avnx[117] } ,
    {20,"multiple" ,2,0.0,&avnx[118] } ,
    {20,"region" ,3,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[120] } ,
    {20,"rna-seq" ,1,0.0,&avnx[121] } ,
    {20,"rna-size" ,2,0.0,&avnx[122] } ,
    {20,"np-map" ,3,0.0,&avnx[123] } ,
    {20,"np-size" ,4,0.0,&avnx[124] } ,
    {20,"pe-seq" ,5,0.0,&avnx[125] } ,
    {20,"cDNA-seq" ,6,0.0,&avnx[126] } ,
    {20,"pe-map" ,7,0.0,&avnx[127] } ,
    {20,"pe-size" ,8,0.0,&avnx[128] } ,
    {20,"pseudo-seq" ,9,0.0,&avnx[129] } ,
    {20,"rev-pe-map" ,10,0.0,&avnx[130] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[132] } ,
    {20,"physiological" ,1,0.0,&avnx[133] } ,
    {20,"in-vitro" ,2,0.0,&avnx[134] } ,
    {20,"oocyte" ,3,0.0,&avnx[135] } ,
    {20,"transfection" ,4,0.0,&avnx[136] } ,
    {20,"transgenic" ,5,0.0,&avnx[137] } ,
    {20,"other" ,255,0.0,NULL } ,
    {3,NULL,1,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {20,"helix" ,1,0.0,&avnx[142] } ,
    {20,"sheet" ,2,0.0,&avnx[143] } ,
    {20,"turn" ,3,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[145] } ,
    {20,"genomic" ,1,0.0,&avnx[146] } ,
    {20,"chloroplast" ,2,0.0,&avnx[147] } ,
    {20,"chromoplast" ,3,0.0,&avnx[148] } ,
    {20,"kinetoplast" ,4,0.0,&avnx[149] } ,
    {20,"mitochondrion" ,5,0.0,&avnx[150] } ,
    {20,"plastid" ,6,0.0,&avnx[151] } ,
    {20,"macronuclear" ,7,0.0,&avnx[152] } ,
    {20,"extrachrom" ,8,0.0,&avnx[153] } ,
    {20,"plasmid" ,9,0.0,&avnx[154] } ,
    {20,"transposon" ,10,0.0,&avnx[155] } ,
    {20,"insertion-seq" ,11,0.0,&avnx[156] } ,
    {20,"cyanelle" ,12,0.0,&avnx[157] } ,
    {20,"proviral" ,13,0.0,&avnx[158] } ,
    {20,"virion" ,14,0.0,&avnx[159] } ,
    {20,"nucleomorph" ,15,0.0,&avnx[160] } ,
    {20,"apicoplast" ,16,0.0,&avnx[161] } ,
    {20,"leucoplast" ,17,0.0,&avnx[162] } ,
    {20,"proplastid" ,18,0.0,&avnx[163] } ,
    {20,"endogenous-virus" ,19,0.0,&avnx[164] } ,
    {20,"hydrogenosome" ,20,0.0,&avnx[165] } ,
    {20,"chromosome" ,21,0.0,&avnx[166] } ,
    {20,"chromatophore" ,22,0.0,&avnx[167] } ,
    {20,"plasmid-in-mitochondrion" ,23,0.0,&avnx[168] } ,
    {20,"plasmid-in-plastid" ,24,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[171] } ,
    {20,"natural" ,1,0.0,&avnx[172] } ,
    {20,"natmut" ,2,0.0,&avnx[173] } ,
    {20,"mut" ,3,0.0,&avnx[174] } ,
    {20,"artificial" ,4,0.0,&avnx[175] } ,
    {20,"synthetic" ,5,0.0,&avnx[176] } ,
    {20,"other" ,255,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"chromosome" ,1,0.0,&avnx[179] } ,
    {20,"map" ,2,0.0,&avnx[180] } ,
    {20,"clone" ,3,0.0,&avnx[181] } ,
    {20,"subclone" ,4,0.0,&avnx[182] } ,
    {20,"haplotype" ,5,0.0,&avnx[183] } ,
    {20,"genotype" ,6,0.0,&avnx[184] } ,
    {20,"sex" ,7,0.0,&avnx[185] } ,
    {20,"cell-line" ,8,0.0,&avnx[186] } ,
    {20,"cell-type" ,9,0.0,&avnx[187] } ,
    {20,"tissue-type" ,10,0.0,&avnx[188] } ,
    {20,"clone-lib" ,11,0.0,&avnx[189] } ,
    {20,"dev-stage" ,12,0.0,&avnx[190] } ,
    {20,"frequency" ,13,0.0,&avnx[191] } ,
    {20,"germline" ,14,0.0,&avnx[192] } ,
    {20,"rearranged" ,15,0.0,&avnx[193] } ,
    {20,"lab-host" ,16,0.0,&avnx[194] } ,
    {20,"pop-variant" ,17,0.0,&avnx[195] } ,
    {20,"tissue-lib" ,18,0.0,&avnx[196] } ,
    {20,"plasmid-name" ,19,0.0,&avnx[197] } ,
    {20,"transposon-name" ,20,0.0,&avnx[198] } ,
    {20,"insertion-seq-name" ,21,0.0,&avnx[199] } ,
    {20,"plastid-name" ,22,0.0,&avnx[200] } ,
    {20,"country" ,23,0.0,&avnx[201] } ,
    {20,"segment" ,24,0.0,&avnx[202] } ,
    {20,"endogenous-virus-name" ,25,0.0,&avnx[203] } ,
    {20,"transgenic" ,26,0.0,&avnx[204] } ,
    {20,"environmental-sample" ,27,0.0,&avnx[205] } ,
    {20,"isolation-source" ,28,0.0,&avnx[206] } ,
    {20,"lat-lon" ,29,0.0,&avnx[207] } ,
    {20,"collection-date" ,30,0.0,&avnx[208] } ,
    {20,"collected-by" ,31,0.0,&avnx[209] } ,
    {20,"identified-by" ,32,0.0,&avnx[210] } ,
    {20,"fwd-primer-seq" ,33,0.0,&avnx[211] } ,
    {20,"rev-primer-seq" ,34,0.0,&avnx[212] } ,
    {20,"fwd-primer-name" ,35,0.0,&avnx[213] } ,
    {20,"rev-primer-name" ,36,0.0,&avnx[214] } ,
    {20,"metagenomic" ,37,0.0,&avnx[215] } ,
    {20,"mating-type" ,38,0.0,&avnx[216] } ,
    {20,"linkage-group" ,39,0.0,&avnx[217] } ,
    {20,"haplogroup" ,40,0.0,&avnx[218] } ,
    {20,"whole-replicon" ,41,0.0,&avnx[219] } ,
    {20,"phenotype" ,42,0.0,&avnx[220] } ,
    {20,"altitude" ,43,0.0,&avnx[221] } ,
    {20,"other" ,255,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {20,"end-seq" ,0,0.0,&avnx[225] } ,
    {20,"insert-alignment" ,1,0.0,&avnx[226] } ,
    {20,"sts" ,2,0.0,&avnx[227] } ,
    {20,"fish" ,3,0.0,&avnx[228] } ,
    {20,"fingerprint" ,4,0.0,&avnx[229] } ,
    {20,"end-seq-insert-alignment" ,5,0.0,&avnx[230] } ,
    {20,"external" ,253,0.0,&avnx[231] } ,
    {20,"curated" ,254,0.0,&avnx[232] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"insert" ,0,0.0,&avnx[234] } ,
    {20,"end" ,1,0.0,&avnx[235] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"multiple" ,0,0.0,&avnx[237] } ,
    {20,"na" ,1,0.0,&avnx[238] } ,
    {20,"nohit-rep" ,2,0.0,&avnx[239] } ,
    {20,"nohitnorep" ,3,0.0,&avnx[240] } ,
    {20,"other-chrm" ,4,0.0,&avnx[241] } ,
    {20,"unique" ,5,0.0,&avnx[242] } ,
    {20,"virtual" ,6,0.0,&avnx[243] } ,
    {20,"multiple-rep" ,7,0.0,&avnx[244] } ,
    {20,"multiplenorep" ,8,0.0,&avnx[245] } ,
    {20,"no-hit" ,9,0.0,&avnx[246] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"prototype" ,0,0.0,&avnx[248] } ,
    {20,"supporting" ,1,0.0,&avnx[249] } ,
    {20,"supports-other" ,2,0.0,&avnx[250] } ,
    {20,"non-supporting" ,3,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[252] } ,
    {20,"untested" ,1,0.0,&avnx[253] } ,
    {20,"non-pathogenic" ,2,0.0,&avnx[254] } ,
    {20,"probable-non-pathogenic" ,3,0.0,&avnx[255] } ,
    {20,"probable-pathogenic" ,4,0.0,&avnx[256] } ,
    {20,"pathogenic" ,5,0.0,&avnx[257] } ,
    {20,"drug-response" ,6,0.0,&avnx[258] } ,
    {20,"histocompatibility" ,7,0.0,&avnx[259] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[261] } ,
    {20,"bac-acgh" ,1,0.0,&avnx[262] } ,
    {20,"computational" ,2,0.0,&avnx[263] } ,
    {20,"curated" ,3,0.0,&avnx[264] } ,
    {20,"digital-array" ,4,0.0,&avnx[265] } ,
    {20,"expression-array" ,5,0.0,&avnx[266] } ,
    {20,"fish" ,6,0.0,&avnx[267] } ,
    {20,"flanking-sequence" ,7,0.0,&avnx[268] } ,
    {20,"maph" ,8,0.0,&avnx[269] } ,
    {20,"mcd-analysis" ,9,0.0,&avnx[270] } ,
    {20,"mlpa" ,10,0.0,&avnx[271] } ,
    {20,"oea-assembly" ,11,0.0,&avnx[272] } ,
    {20,"oligo-acgh" ,12,0.0,&avnx[273] } ,
    {20,"paired-end" ,13,0.0,&avnx[274] } ,
    {20,"pcr" ,14,0.0,&avnx[275] } ,
    {20,"qpcr" ,15,0.0,&avnx[276] } ,
    {20,"read-depth" ,16,0.0,&avnx[277] } ,
    {20,"roma" ,17,0.0,&avnx[278] } ,
    {20,"rt-pcr" ,18,0.0,&avnx[279] } ,
    {20,"sage" ,19,0.0,&avnx[280] } ,
    {20,"sequence-alignment" ,20,0.0,&avnx[281] } ,
    {20,"sequencing" ,21,0.0,&avnx[282] } ,
    {20,"snp-array" ,22,0.0,&avnx[283] } ,
    {20,"snp-genoytyping" ,23,0.0,&avnx[284] } ,
    {20,"southern" ,24,0.0,&avnx[285] } ,
    {20,"western" ,25,0.0,&avnx[286] } ,
    {20,"optical-mapping" ,26,0.0,&avnx[287] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"is-default-population" ,1,0.0,&avnx[289] } ,
    {20,"is-minor-allele" ,2,0.0,&avnx[290] } ,
    {20,"is-rare-allele" ,4,0.0,NULL } ,
    {20,"preserved" ,1,0.0,&avnx[292] } ,
    {20,"provisional" ,2,0.0,&avnx[293] } ,
    {20,"has3D" ,4,0.0,&avnx[294] } ,
    {20,"submitterLinkout" ,8,0.0,&avnx[295] } ,
    {20,"clinical" ,16,0.0,&avnx[296] } ,
    {20,"genotypeKit" ,32,0.0,NULL } ,
    {20,"in-gene" ,1,0.0,&avnx[298] } ,
    {20,"near-gene-5" ,2,0.0,&avnx[299] } ,
    {20,"near-gene-3" ,4,0.0,&avnx[300] } ,
    {20,"intron" ,8,0.0,&avnx[301] } ,
    {20,"donor" ,16,0.0,&avnx[302] } ,
    {20,"acceptor" ,32,0.0,&avnx[303] } ,
    {20,"utr-5" ,64,0.0,&avnx[304] } ,
    {20,"utr-3" ,128,0.0,&avnx[305] } ,
    {20,"in-start-codon" ,256,0.0,&avnx[306] } ,
    {20,"in-stop-codon" ,512,0.0,&avnx[307] } ,
    {20,"intergenic" ,1024,0.0,&avnx[308] } ,
    {20,"conserved-noncoding" ,2048,0.0,NULL } ,
    {20,"no-change" ,0,0.0,&avnx[310] } ,
    {20,"synonymous" ,1,0.0,&avnx[311] } ,
    {20,"nonsense" ,2,0.0,&avnx[312] } ,
    {20,"missense" ,4,0.0,&avnx[313] } ,
    {20,"frameshift" ,8,0.0,&avnx[314] } ,
    {20,"up-regulator" ,16,0.0,&avnx[315] } ,
    {20,"down-regulator" ,32,0.0,&avnx[316] } ,
    {20,"methylation" ,64,0.0,&avnx[317] } ,
    {20,"stop-gain" ,128,0.0,&avnx[318] } ,
    {20,"stop-loss" ,256,0.0,NULL } ,
    {20,"has-other-snp" ,1,0.0,&avnx[320] } ,
    {20,"has-assembly-conflict" ,2,0.0,&avnx[321] } ,
    {20,"is-assembly-specific" ,4,0.0,NULL } ,
    {20,"is-uniquely-placed" ,1,0.0,&avnx[323] } ,
    {20,"placed-twice-on-same-chrom" ,2,0.0,&avnx[324] } ,
    {20,"placed-twice-on-diff-chrom" ,3,0.0,&avnx[325] } ,
    {20,"many-placements" ,10,0.0,NULL } ,
    {20,"is-mutation" ,1,0.0,&avnx[327] } ,
    {20,"above-5pct-all" ,2,0.0,&avnx[328] } ,
    {20,"above-5pct-1plus" ,4,0.0,&avnx[329] } ,
    {20,"validated" ,8,0.0,&avnx[330] } ,
    {20,"above-1pct-all" ,16,0.0,&avnx[331] } ,
    {20,"above-1pct-1plus" ,32,0.0,NULL } ,
    {20,"in-haplotype-set" ,1,0.0,&avnx[333] } ,
    {20,"has-genotypes" ,2,0.0,NULL } ,
    {20,"contig-allele-missing" ,1,0.0,&avnx[335] } ,
    {20,"withdrawn-by-submitter" ,2,0.0,&avnx[336] } ,
    {20,"non-overlapping-alleles" ,4,0.0,&avnx[337] } ,
    {20,"strain-specific" ,8,0.0,&avnx[338] } ,
    {20,"genotype-conflict" ,16,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[340] } ,
    {20,"likely-artifact" ,1,0.0,&avnx[341] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[343] } ,
    {20,"germline" ,1,0.0,&avnx[344] } ,
    {20,"somatic" ,2,0.0,&avnx[345] } ,
    {20,"inherited" ,4,0.0,&avnx[346] } ,
    {20,"paternal" ,8,0.0,&avnx[347] } ,
    {20,"maternal" ,16,0.0,&avnx[348] } ,
    {20,"de-novo" ,32,0.0,&avnx[349] } ,
    {20,"biparental" ,64,0.0,&avnx[350] } ,
    {20,"uniparental" ,128,0.0,&avnx[351] } ,
    {20,"not-tested" ,256,0.0,&avnx[352] } ,
    {20,"tested-inconclusive" ,512,0.0,&avnx[353] } ,
    {20,"not-reported" ,1024,0.0,&avnx[354] } ,
    {20,"other" ,1073741824,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[356] } ,
    {20,"homozygous" ,1,0.0,&avnx[357] } ,
    {20,"heterozygous" ,2,0.0,&avnx[358] } ,
    {20,"hemizygous" ,3,0.0,&avnx[359] } ,
    {20,"nullizygous" ,4,0.0,&avnx[360] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[362] } ,
    {20,"germline" ,1,0.0,&avnx[363] } ,
    {20,"somatic" ,2,0.0,&avnx[364] } ,
    {20,"inherited" ,4,0.0,&avnx[365] } ,
    {20,"paternal" ,8,0.0,&avnx[366] } ,
    {20,"maternal" ,16,0.0,&avnx[367] } ,
    {20,"de-novo" ,32,0.0,&avnx[368] } ,
    {20,"biparental" ,64,0.0,&avnx[369] } ,
    {20,"uniparental" ,128,0.0,&avnx[370] } ,
    {20,"not-tested" ,256,0.0,&avnx[371] } ,
    {20,"tested-inconclusive" ,512,0.0,&avnx[372] } ,
    {20,"other" ,1073741824,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[374] } ,
    {20,"homozygous" ,1,0.0,&avnx[375] } ,
    {20,"heterozygous" ,2,0.0,&avnx[376] } ,
    {20,"hemizygous" ,3,0.0,&avnx[377] } ,
    {20,"nullizygous" ,4,0.0,&avnx[378] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[380] } ,
    {20,"identity" ,1,0.0,&avnx[381] } ,
    {20,"inv" ,2,0.0,&avnx[382] } ,
    {20,"snv" ,3,0.0,&avnx[383] } ,
    {20,"mnp" ,4,0.0,&avnx[384] } ,
    {20,"delins" ,5,0.0,&avnx[385] } ,
    {20,"del" ,6,0.0,&avnx[386] } ,
    {20,"ins" ,7,0.0,&avnx[387] } ,
    {20,"microsatellite" ,8,0.0,&avnx[388] } ,
    {20,"transposon" ,9,0.0,&avnx[389] } ,
    {20,"cnv" ,10,0.0,&avnx[390] } ,
    {20,"direct-copy" ,11,0.0,&avnx[391] } ,
    {20,"rev-direct-copy" ,12,0.0,&avnx[392] } ,
    {20,"inverted-copy" ,13,0.0,&avnx[393] } ,
    {20,"everted-copy" ,14,0.0,&avnx[394] } ,
    {20,"translocation" ,15,0.0,&avnx[395] } ,
    {20,"prot-missense" ,16,0.0,&avnx[396] } ,
    {20,"prot-nonsense" ,17,0.0,&avnx[397] } ,
    {20,"prot-neutral" ,18,0.0,&avnx[398] } ,
    {20,"prot-silent" ,19,0.0,&avnx[399] } ,
    {20,"prot-other" ,20,0.0,&avnx[400] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"morph" ,0,0.0,&avnx[402] } ,
    {20,"offset" ,1,0.0,&avnx[403] } ,
    {20,"del-at" ,2,0.0,&avnx[404] } ,
    {20,"ins-before" ,3,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"asserted" ,1,0.0,&avnx[407] } ,
    {20,"reference" ,2,0.0,&avnx[408] } ,
    {20,"variant" ,4,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[410] } ,
    {20,"compound" ,1,0.0,&avnx[411] } ,
    {20,"products" ,2,0.0,&avnx[412] } ,
    {20,"haplotype" ,3,0.0,&avnx[413] } ,
    {20,"genotype" ,4,0.0,&avnx[414] } ,
    {20,"mosaic" ,5,0.0,&avnx[415] } ,
    {20,"individual" ,6,0.0,&avnx[416] } ,
    {20,"population" ,7,0.0,&avnx[417] } ,
    {20,"alleles" ,8,0.0,&avnx[418] } ,
    {20,"package" ,9,0.0,&avnx[419] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"experimental" ,1,0.0,&avnx[421] } ,
    {20,"not-experimental" ,2,0.0,NULL } ,
    {20,"not-set" ,0,0.0,&avnx[423] } ,
    {20,"coordinates" ,1,0.0,&avnx[424] } ,
    {20,"description" ,2,0.0,&avnx[425] } ,
    {20,"existence" ,3,0.0,NULL } ,
    {20,"not-set" ,0,0.0,&avnx[427] } ,
    {20,"similar-to-sequence" ,1,0.0,&avnx[428] } ,
    {20,"similar-to-aa" ,2,0.0,&avnx[429] } ,
    {20,"similar-to-dna" ,3,0.0,&avnx[430] } ,
    {20,"similar-to-rna" ,4,0.0,&avnx[431] } ,
    {20,"similar-to-mrna" ,5,0.0,&avnx[432] } ,
    {20,"similiar-to-est" ,6,0.0,&avnx[433] } ,
    {20,"similar-to-other-rna" ,7,0.0,&avnx[434] } ,
    {20,"profile" ,8,0.0,&avnx[435] } ,
    {20,"nucleotide-motif" ,9,0.0,&avnx[436] } ,
    {20,"protein-motif" ,10,0.0,&avnx[437] } ,
    {20,"ab-initio-prediction" ,11,0.0,&avnx[438] } ,
    {20,"alignment" ,12,0.0,&avnx[439] } ,
    {20,"other" ,255,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } };

static AsnType atx[461] = {
  {401, "Seq-feat" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[1],0,&atx[2]} ,
  {0, "id" ,128,0,0,1,0,0,0,0,NULL,&atx[2],NULL,0,&atx[12]} ,
  {402, "Feat-id" ,1,0,0,0,0,1,0,0,NULL,&atx[11],&atx[3],0,&atx[92]} ,
  {0, "gibb" ,128,0,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[5]} ,
  {302, "INTEGER" ,0,2,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "giim" ,128,1,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[7]} ,
  {413, "Giimport-id" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[156]} ,
  {0, "local" ,128,2,0,0,0,0,0,0,NULL,&atx[8],NULL,0,&atx[9]} ,
  {422, "Object-id" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[10]} ,
  {0, "general" ,128,3,0,0,0,0,0,0,NULL,&atx[10],NULL,0,NULL} ,
  {423, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[175]} ,
  {315, "CHOICE" ,0,-1,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "data" ,128,1,0,0,0,0,0,0,NULL,&atx[13],NULL,0,&atx[373]} ,
  {425, "SeqFeatData" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&atx[14],0,&atx[380]} ,
  {0, "gene" ,128,0,0,0,0,0,0,0,NULL,&atx[15],NULL,0,&atx[39]} ,
  {405, "Gene-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[16],NULL,0,&atx[114]} ,
  {401, "Gene-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[17],0,&atx[32]} ,
  {0, "locus" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[19]} ,
  {323, "VisibleString" ,0,26,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "allele" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[20]} ,
  {0, "desc" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[21]} ,
  {0, "maploc" ,128,3,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[22]} ,
  {0, "pseudo" ,128,4,0,0,1,0,0,0,&avnx[0],&atx[23],NULL,0,&atx[24]} ,
  {301, "BOOLEAN" ,0,1,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "db" ,128,5,0,1,0,0,0,0,NULL,&atx[27],&atx[25],0,&atx[28]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[26],NULL,0,NULL} ,
  {403, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,NULL} ,
  {314, "SET OF" ,0,17,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "syn" ,128,6,0,1,0,0,0,0,NULL,&atx[27],&atx[29],0,&atx[30]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "locus-tag" ,128,7,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[31]} ,
  {0, "formal-name" ,128,8,0,1,0,0,0,0,NULL,&atx[32],NULL,0,NULL} ,
  {402, "Gene-nomenclature" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[33],0,&atx[26]} ,
  {0, "status" ,128,0,0,0,0,0,0,0,NULL,&atx[34],&avnx[1],0,&atx[35]} ,
  {310, "ENUMERATED" ,0,10,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "symbol" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[36]} ,
  {0, "name" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[37]} ,
  {0, "source" ,128,3,0,1,0,0,0,0,NULL,&atx[26],NULL,0,NULL} ,
  {311, "SEQUENCE" ,0,16,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "org" ,128,1,0,0,0,0,0,0,NULL,&atx[40],NULL,0,&atx[84]} ,
  {407, "Org-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[41],NULL,0,&atx[256]} ,
  {401, "Org-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[42],0,&atx[48]} ,
  {0, "taxname" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[43]} ,
  {0, "common" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[44]} ,
  {0, "mod" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[45],0,&atx[46]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "db" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[47],0,&atx[49]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[48],NULL,0,NULL} ,
  {402, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[52]} ,
  {0, "syn" ,128,4,0,1,0,0,0,0,NULL,&atx[27],&atx[50],0,&atx[51]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "orgname" ,128,5,0,1,0,0,0,0,NULL,&atx[52],NULL,0,NULL} ,
  {403, "OrgName" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[53],0,&atx[55]} ,
  {0, "name" ,128,0,0,1,0,0,0,0,NULL,&atx[11],&atx[54],0,&atx[72]} ,
  {0, "binomial" ,128,0,0,0,0,0,0,0,NULL,&atx[55],NULL,0,&atx[59]} ,
  {404, "BinomialOrgName" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[56],0,&atx[61]} ,
  {0, "genus" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[57]} ,
  {0, "species" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[58]} ,
  {0, "subspecies" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "virus" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[60]} ,
  {0, "hybrid" ,128,2,0,0,0,0,0,0,NULL,&atx[61],NULL,0,&atx[64]} ,
  {405, "MultiOrgName" ,1,0,0,0,0,0,0,0,NULL,&atx[63],&atx[62],0,&atx[66]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[52],NULL,0,NULL} ,
  {312, "SEQUENCE OF" ,0,16,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "namedhybrid" ,128,3,0,0,0,0,0,0,NULL,&atx[55],NULL,0,&atx[65]} ,
  {0, "partial" ,128,4,0,0,0,0,0,0,NULL,&atx[66],NULL,0,NULL} ,
  {406, "PartialOrgName" ,1,0,0,0,0,0,0,0,NULL,&atx[63],&atx[67],0,&atx[75]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[68],NULL,0,NULL} ,
  {408, "TaxElement" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[69],0,NULL} ,
  {0, "fixed-level" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[4],0,&atx[70]} ,
  {0, "level" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[71]} ,
  {0, "name" ,128,2,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "attrib" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[73]} ,
  {0, "mod" ,128,2,0,1,0,0,0,0,NULL,&atx[63],&atx[74],0,&atx[79]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[75],NULL,0,NULL} ,
  {407, "OrgMod" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[76],0,&atx[68]} ,
  {0, "subtype" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[8],0,&atx[77]} ,
  {0, "subname" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[78]} ,
  {0, "attrib" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "lineage" ,128,3,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[80]} ,
  {0, "gcode" ,128,4,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[81]} ,
  {0, "mgcode" ,128,5,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[82]} ,
  {0, "div" ,128,6,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[83]} ,
  {0, "pgcode" ,128,7,0,1,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "cdregion" ,128,2,0,0,0,0,0,0,NULL,&atx[85],NULL,0,&atx[113]} ,
  {429, "Cdregion" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[86],0,&atx[159]} ,
  {0, "orf" ,128,0,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[87]} ,
  {0, "frame" ,128,1,0,0,1,0,0,0,&avnx[52],&atx[34],&avnx[48],0,&atx[88]} ,
  {0, "conflict" ,128,2,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[89]} ,
  {0, "gaps" ,128,3,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[90]} ,
  {0, "mismatch" ,128,4,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[91]} ,
  {0, "code" ,128,5,0,1,0,0,0,0,NULL,&atx[92],NULL,0,&atx[103]} ,
  {403, "Genetic-code" ,1,0,0,0,0,1,0,0,NULL,&atx[27],&atx[93],0,&atx[438]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[11],&atx[94],0,NULL} ,
  {0, "name" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[95]} ,
  {0, "id" ,128,1,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[96]} ,
  {0, "ncbieaa" ,128,2,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[97]} ,
  {0, "ncbi8aa" ,128,3,0,0,0,0,0,0,NULL,&atx[98],NULL,0,&atx[99]} ,
  {304, "OCTET STRING" ,0,4,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "ncbistdaa" ,128,4,0,0,0,0,0,0,NULL,&atx[98],NULL,0,&atx[100]} ,
  {0, "sncbieaa" ,128,5,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[101]} ,
  {0, "sncbi8aa" ,128,6,0,0,0,0,0,0,NULL,&atx[98],NULL,0,&atx[102]} ,
  {0, "sncbistdaa" ,128,7,0,0,0,0,0,0,NULL,&atx[98],NULL,0,NULL} ,
  {0, "code-break" ,128,6,0,1,0,0,0,0,NULL,&atx[63],&atx[104],0,&atx[112]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[105],NULL,0,NULL} ,
  {438, "Code-break" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[106],0,&atx[459]} ,
  {0, "loc" ,128,0,0,0,0,0,0,0,NULL,&atx[107],NULL,0,&atx[108]} ,
  {412, "Seq-loc" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[6]} ,
  {0, "aa" ,128,1,0,0,0,0,0,0,NULL,&atx[11],&atx[109],0,NULL} ,
  {0, "ncbieaa" ,128,0,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[110]} ,
  {0, "ncbi8aa" ,128,1,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[111]} ,
  {0, "ncbistdaa" ,128,2,0,0,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "stops" ,128,7,0,1,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "prot" ,128,3,0,0,0,0,0,0,NULL,&atx[114],NULL,0,&atx[127]} ,
  {406, "Prot-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[115],NULL,0,&atx[40]} ,
  {401, "Prot-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[116],0,&atx[125]} ,
  {0, "name" ,128,0,0,1,0,0,0,0,NULL,&atx[27],&atx[117],0,&atx[118]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "desc" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[119]} ,
  {0, "ec" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[120],0,&atx[121]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "activity" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[122],0,&atx[123]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "db" ,128,4,0,1,0,0,0,0,NULL,&atx[27],&atx[124],0,&atx[126]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[125],NULL,0,NULL} ,
  {402, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,NULL} ,
  {0, "processed" ,128,5,0,0,1,0,0,0,&avnx[59],&atx[34],&avnx[53],0,NULL} ,
  {0, "rna" ,128,4,0,0,0,0,0,0,NULL,&atx[128],NULL,0,&atx[155]} ,
  {410, "RNA-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[129],NULL,0,&atx[431]} ,
  {401, "RNA-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[130],0,&atx[135]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[34],&avnx[60],0,&atx[131]} ,
  {0, "pseudo" ,128,1,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[132]} ,
  {0, "ext" ,128,2,0,1,0,0,0,0,NULL,&atx[11],&atx[133],0,NULL} ,
  {0, "name" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[134]} ,
  {0, "tRNA" ,128,1,0,0,0,0,0,0,NULL,&atx[135],NULL,0,&atx[145]} ,
  {402, "Trna-ext" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[136],0,&atx[146]} ,
  {0, "aa" ,128,0,0,1,0,0,0,0,NULL,&atx[11],&atx[137],0,&atx[141]} ,
  {0, "iupacaa" ,128,0,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[138]} ,
  {0, "ncbieaa" ,128,1,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[139]} ,
  {0, "ncbi8aa" ,128,2,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[140]} ,
  {0, "ncbistdaa" ,128,3,0,0,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "codon" ,128,1,0,1,0,0,0,0,NULL,&atx[27],&atx[142],0,&atx[143]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "anticodon" ,128,2,0,1,0,0,0,0,NULL,&atx[144],NULL,0,NULL} ,
  {406, "Seq-loc" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,NULL} ,
  {0, "gen" ,128,2,0,0,0,0,0,0,NULL,&atx[146],NULL,0,NULL} ,
  {403, "RNA-gen" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[147],0,&atx[152]} ,
  {0, "class" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[148]} ,
  {0, "product" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[149]} ,
  {0, "quals" ,128,2,0,1,0,0,0,0,NULL,&atx[150],NULL,0,NULL} ,
  {405, "RNA-qual-set" ,1,0,0,0,0,1,0,0,NULL,&atx[63],&atx[151],0,&atx[144]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[152],NULL,0,NULL} ,
  {404, "RNA-qual" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[153],0,&atx[150]} ,
  {0, "qual" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[154]} ,
  {0, "val" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "pub" ,128,5,0,0,0,0,0,0,NULL,&atx[156],NULL,0,&atx[157]} ,
  {414, "Pubdesc" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[206]} ,
  {0, "seq" ,128,6,0,0,0,0,0,0,NULL,&atx[107],NULL,0,&atx[158]} ,
  {0, "imp" ,128,7,0,0,0,0,0,0,NULL,&atx[159],NULL,0,&atx[163]} ,
  {430, "Imp-feat" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[160],0,&atx[239]} ,
  {0, "key" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[161]} ,
  {0, "loc" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[162]} ,
  {0, "descr" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "region" ,128,8,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[164]} ,
  {0, "comment" ,128,9,0,0,0,0,0,0,NULL,&atx[165],NULL,0,&atx[166]} ,
  {305, "NULL" ,0,5,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "bond" ,128,10,0,0,0,0,0,0,NULL,&atx[34],&avnx[72],0,&atx[167]} ,
  {0, "site" ,128,11,0,0,0,0,0,0,NULL,&atx[34],&avnx[77],0,&atx[168]} ,
  {0, "rsite" ,128,12,0,0,0,0,0,0,NULL,&atx[169],NULL,0,&atx[174]} ,
  {417, "Rsite-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[170],NULL,0,&atx[177]} ,
  {401, "Rsite-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[11],&atx[171],0,&atx[173]} ,
  {0, "str" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[172]} ,
  {0, "db" ,128,1,0,0,0,0,0,0,NULL,&atx[173],NULL,0,NULL} ,
  {402, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,NULL} ,
  {0, "user" ,128,13,0,0,0,0,0,0,NULL,&atx[175],NULL,0,&atx[176]} ,
  {424, "User-object" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[13]} ,
  {0, "txinit" ,128,14,0,0,0,0,0,0,NULL,&atx[177],NULL,0,&atx[205]} ,
  {418, "Txinit" ,1,0,0,0,0,0,1,0,NULL,&atx[178],NULL,0,&atx[414]} ,
  {401, "Txinit" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[179],0,&atx[184]} ,
  {0, "name" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[180]} ,
  {0, "syn" ,128,1,0,1,0,0,0,0,NULL,&atx[63],&atx[181],0,&atx[182]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "gene" ,128,2,0,1,0,0,0,0,NULL,&atx[63],&atx[183],0,&atx[185]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[184],NULL,0,NULL} ,
  {402, "Gene-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[16],NULL,0,&atx[187]} ,
  {0, "protein" ,128,3,0,1,0,0,0,0,NULL,&atx[63],&atx[186],0,&atx[188]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[187],NULL,0,NULL} ,
  {403, "Prot-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[115],NULL,0,&atx[194]} ,
  {0, "rna" ,128,4,0,1,0,0,0,0,NULL,&atx[63],&atx[189],0,&atx[190]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "expression" ,128,5,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[191]} ,
  {0, "txsystem" ,128,6,0,0,0,0,0,0,NULL,&atx[34],&avnx[104],0,&atx[192]} ,
  {0, "txdescr" ,128,7,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[193]} ,
  {0, "txorg" ,128,8,0,1,0,0,0,0,NULL,&atx[194],NULL,0,&atx[195]} ,
  {404, "Org-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[41],NULL,0,&atx[200]} ,
  {0, "mapping-precise" ,128,9,0,0,1,0,0,0,&avnx[113],&atx[23],NULL,0,&atx[196]} ,
  {0, "location-accurate" ,128,10,0,0,1,0,0,0,&avnx[114],&atx[23],NULL,0,&atx[197]} ,
  {0, "inittype" ,128,11,0,1,0,0,0,0,NULL,&atx[34],&avnx[115],0,&atx[198]} ,
  {0, "evidence" ,128,12,0,1,0,0,0,0,NULL,&atx[27],&atx[199],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[200],NULL,0,NULL} ,
  {405, "Tx-evidence" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[201],0,NULL} ,
  {0, "exp-code" ,128,0,0,0,0,0,0,0,NULL,&atx[34],&avnx[119],0,&atx[202]} ,
  {0, "expression-system" ,128,1,0,0,1,0,0,0,&avnx[138],&atx[34],&avnx[131],0,&atx[203]} ,
  {0, "low-prec-data" ,128,2,0,0,1,0,0,0,&avnx[139],&atx[23],NULL,0,&atx[204]} ,
  {0, "from-homolog" ,128,3,0,0,1,0,0,0,&avnx[140],&atx[23],NULL,0,NULL} ,
  {0, "num" ,128,15,0,0,0,0,0,0,NULL,&atx[206],NULL,0,&atx[207]} ,
  {415, "Numbering" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[210]} ,
  {0, "psec-str" ,128,16,0,0,0,0,0,0,NULL,&atx[34],&avnx[141],0,&atx[208]} ,
  {0, "non-std-residue" ,128,17,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[209]} ,
  {0, "het" ,128,18,0,0,0,0,0,0,NULL,&atx[210],NULL,0,&atx[211]} ,
  {416, "Heterogen" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[169]} ,
  {0, "biosrc" ,128,19,0,0,0,0,0,0,NULL,&atx[212],NULL,0,&atx[238]} ,
  {409, "BioSource" ,1,0,0,0,0,0,1,0,NULL,&atx[213],NULL,0,&atx[128]} ,
  {401, "BioSource" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[214],0,&atx[220]} ,
  {0, "genome" ,128,0,0,0,1,0,0,0,&avnx[169],&atx[4],&avnx[144],0,&atx[215]} ,
  {0, "origin" ,128,1,0,0,1,0,0,0,&avnx[177],&atx[4],&avnx[170],0,&atx[216]} ,
  {0, "org" ,128,2,0,0,0,0,0,0,NULL,&atx[217],NULL,0,&atx[218]} ,
  {403, "Org-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[41],NULL,0,&atx[226]} ,
  {0, "subtype" ,128,3,0,1,0,0,0,0,NULL,&atx[63],&atx[219],0,&atx[224]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[220],NULL,0,NULL} ,
  {402, "SubSource" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[221],0,&atx[217]} ,
  {0, "subtype" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[178],0,&atx[222]} ,
  {0, "name" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[223]} ,
  {0, "attrib" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "is-focus" ,128,4,0,1,0,0,0,0,NULL,&atx[165],NULL,0,&atx[225]} ,
  {0, "pcr-primers" ,128,5,0,1,0,0,0,0,NULL,&atx[226],NULL,0,NULL} ,
  {404, "PCRReactionSet" ,1,0,0,0,0,0,0,0,NULL,&atx[27],&atx[227],0,&atx[228]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[228],NULL,0,NULL} ,
  {405, "PCRReaction" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[229],0,&atx[230]} ,
  {0, "forward" ,128,0,0,1,0,0,0,0,NULL,&atx[230],NULL,0,&atx[237]} ,
  {406, "PCRPrimerSet" ,1,0,0,0,0,0,0,0,NULL,&atx[27],&atx[231],0,&atx[232]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[232],NULL,0,NULL} ,
  {407, "PCRPrimer" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[233],0,&atx[234]} ,
  {0, "seq" ,128,0,0,1,0,0,0,0,NULL,&atx[234],NULL,0,&atx[235]} ,
  {408, "PCRPrimerSeq" ,1,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[236]} ,
  {0, "name" ,128,1,0,1,0,0,0,0,NULL,&atx[236],NULL,0,NULL} ,
  {409, "PCRPrimerName" ,1,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "reverse" ,128,1,0,1,0,0,0,0,NULL,&atx[230],NULL,0,NULL} ,
  {0, "clone" ,128,20,0,0,0,0,0,0,NULL,&atx[239],NULL,0,&atx[255]} ,
  {431, "Clone-ref" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[240],0,&atx[405]} ,
  {0, "name" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[241]} ,
  {0, "library" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[242]} ,
  {0, "concordant" ,128,2,0,0,1,0,0,0,&avnx[222],&atx[23],NULL,0,&atx[243]} ,
  {0, "unique" ,128,3,0,0,1,0,0,0,&avnx[223],&atx[23],NULL,0,&atx[244]} ,
  {0, "placement-method" ,128,4,0,1,0,0,0,0,NULL,&atx[4],&avnx[224],0,&atx[245]} ,
  {0, "clone-seq" ,128,5,0,1,0,0,0,0,NULL,&atx[246],NULL,0,NULL} ,
  {440, "Clone-seq-set" ,1,0,0,0,0,0,0,0,NULL,&atx[27],&atx[247],0,&atx[248]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[248],NULL,0,NULL} ,
  {441, "Clone-seq" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[249],0,NULL} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[233],0,&atx[250]} ,
  {0, "confidence" ,128,1,0,1,0,0,0,0,NULL,&atx[4],&avnx[236],0,&atx[251]} ,
  {0, "location" ,128,2,0,0,0,0,0,0,NULL,&atx[107],NULL,0,&atx[252]} ,
  {0, "seq" ,128,3,0,1,0,0,0,0,NULL,&atx[107],NULL,0,&atx[253]} ,
  {0, "align-id" ,128,4,0,1,0,0,0,0,NULL,&atx[10],NULL,0,&atx[254]} ,
  {0, "support" ,128,5,0,1,0,0,0,0,NULL,&atx[4],&avnx[247],0,NULL} ,
  {0, "variation" ,128,21,0,0,0,0,0,0,NULL,&atx[256],NULL,0,NULL} ,
  {408, "Variation-ref" ,1,0,0,0,0,0,1,0,NULL,&atx[257],NULL,0,&atx[212]} ,
  {401, "Variation-ref" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[258],0,&atx[323]} ,
  {0, "id" ,128,0,0,1,0,0,0,0,NULL,&atx[259],NULL,0,&atx[260]} ,
  {409, "Dbtag" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[330]} ,
  {0, "parent-id" ,128,1,0,1,0,0,0,0,NULL,&atx[259],NULL,0,&atx[261]} ,
  {0, "sample-id" ,128,2,0,1,0,0,0,0,NULL,&atx[262],NULL,0,&atx[263]} ,
  {408, "Object-id" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[259]} ,
  {0, "other-ids" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[264],0,&atx[265]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[259],NULL,0,NULL} ,
  {0, "name" ,128,4,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[266]} ,
  {0, "synonyms" ,128,5,0,1,0,0,0,0,NULL,&atx[27],&atx[267],0,&atx[268]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "description" ,128,6,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[269]} ,
  {0, "phenotype" ,128,7,0,1,0,0,0,0,NULL,&atx[27],&atx[270],0,&atx[277]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[271],NULL,0,NULL} ,
  {405, "Phenotype" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[272],0,&atx[336]} ,
  {0, "source" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[273]} ,
  {0, "term" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[274]} ,
  {0, "xref" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[275],0,&atx[276]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[259],NULL,0,NULL} ,
  {0, "clinical-significance" ,128,3,0,1,0,0,0,0,NULL,&atx[4],&avnx[251],0,NULL} ,
  {0, "method" ,128,8,0,1,0,0,0,0,NULL,&atx[27],&atx[278],0,&atx[279]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[4],&avnx[260],0,NULL} ,
  {0, "population-data" ,128,9,0,1,0,0,0,0,NULL,&atx[27],&atx[280],0,&atx[290]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[281],NULL,0,NULL} ,
  {404, "Population-data" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[282],0,&atx[271]} ,
  {0, "population" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[283]} ,
  {0, "genotype-frequency" ,128,1,0,1,0,0,0,0,NULL,&atx[284],NULL,0,&atx[285]} ,
  {309, "REAL" ,0,9,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "chromosomes-tested" ,128,2,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[286]} ,
  {0, "sample-ids" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[287],0,&atx[288]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[262],NULL,0,NULL} ,
  {0, "allele-frequency" ,128,4,0,1,0,0,0,0,NULL,&atx[284],NULL,0,&atx[289]} ,
  {0, "flags" ,128,5,0,1,0,0,0,0,NULL,&atx[4],&avnx[288],0,NULL} ,
  {0, "variant-prop" ,128,10,0,1,0,0,0,0,NULL,&atx[291],NULL,0,&atx[309]} ,
  {403, "VariantProperties" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[292],0,&atx[281]} ,
  {0, "version" ,128,0,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[293]} ,
  {0, "resource-link" ,128,1,0,1,0,0,0,0,NULL,&atx[4],&avnx[291],0,&atx[294]} ,
  {0, "gene-location" ,128,2,0,1,0,0,0,0,NULL,&atx[4],&avnx[297],0,&atx[295]} ,
  {0, "effect" ,128,3,0,1,0,0,0,0,NULL,&atx[4],&avnx[309],0,&atx[296]} ,
  {0, "mapping" ,128,4,0,1,0,0,0,0,NULL,&atx[4],&avnx[319],0,&atx[297]} ,
  {0, "map-weight" ,128,5,0,1,0,0,0,0,NULL,&atx[4],&avnx[322],0,&atx[298]} ,
  {0, "frequency-based-validation" ,128,6,0,1,0,0,0,0,NULL,&atx[4],&avnx[326],0,&atx[299]} ,
  {0, "genotype" ,128,7,0,1,0,0,0,0,NULL,&atx[4],&avnx[332],0,&atx[300]} ,
  {0, "project-data" ,128,8,0,1,0,0,0,0,NULL,&atx[27],&atx[301],0,&atx[302]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "quality-check" ,128,9,0,1,0,0,0,0,NULL,&atx[4],&avnx[334],0,&atx[303]} ,
  {0, "confidence" ,128,10,0,1,0,0,0,0,NULL,&atx[4],&avnx[339],0,&atx[304]} ,
  {0, "other-validation" ,128,11,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[305]} ,
  {0, "allele-origin" ,128,12,0,1,0,0,0,0,NULL,&atx[4],&avnx[342],0,&atx[306]} ,
  {0, "allele-state" ,128,13,0,1,0,0,0,0,NULL,&atx[4],&avnx[355],0,&atx[307]} ,
  {0, "allele-frequency" ,128,14,0,1,0,0,0,0,NULL,&atx[284],NULL,0,&atx[308]} ,
  {0, "is-ancestral-allele" ,128,15,0,1,0,0,0,0,NULL,&atx[23],NULL,0,NULL} ,
  {0, "validated" ,128,11,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[310]} ,
  {0, "clinical-test" ,128,12,0,1,0,0,0,0,NULL,&atx[27],&atx[311],0,&atx[312]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[259],NULL,0,NULL} ,
  {0, "allele-origin" ,128,13,0,1,0,0,0,0,NULL,&atx[4],&avnx[361],0,&atx[313]} ,
  {0, "allele-state" ,128,14,0,1,0,0,0,0,NULL,&atx[4],&avnx[373],0,&atx[314]} ,
  {0, "allele-frequency" ,128,15,0,1,0,0,0,0,NULL,&atx[284],NULL,0,&atx[315]} ,
  {0, "is-ancestral-allele" ,128,16,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[316]} ,
  {0, "pub" ,128,17,0,1,0,0,0,0,NULL,&atx[317],NULL,0,&atx[318]} ,
  {413, "Pub" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[360]} ,
  {0, "data" ,128,18,0,0,0,0,0,0,NULL,&atx[11],&atx[319],0,&atx[345]} ,
  {0, "unknown" ,128,0,0,0,0,0,0,0,NULL,&atx[165],NULL,0,&atx[320]} ,
  {0, "note" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[321]} ,
  {0, "uniparental-disomy" ,128,2,0,0,0,0,0,0,NULL,&atx[165],NULL,0,&atx[322]} ,
  {0, "instance" ,128,3,0,0,0,0,0,0,NULL,&atx[323],NULL,0,&atx[339]} ,
  {402, "Variation-inst" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[324],0,&atx[291]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[379],0,&atx[325]} ,
  {0, "delta" ,128,1,0,0,0,0,0,0,NULL,&atx[63],&atx[326],0,&atx[338]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[327],NULL,0,NULL} ,
  {415, "Delta-item" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[328],0,NULL} ,
  {0, "seq" ,128,0,0,1,0,0,0,0,NULL,&atx[11],&atx[329],0,&atx[334]} ,
  {0, "literal" ,128,0,0,0,0,0,0,0,NULL,&atx[330],NULL,0,&atx[331]} ,
  {410, "Seq-literal" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[368]} ,
  {0, "loc" ,128,1,0,0,0,0,0,0,NULL,&atx[332],NULL,0,&atx[333]} ,
  {412, "Seq-loc" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[317]} ,
  {0, "this" ,128,2,0,0,0,0,0,0,NULL,&atx[165],NULL,0,NULL} ,
  {0, "multiplier" ,128,1,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[335]} ,
  {0, "multiplier-fuzz" ,128,2,0,1,0,0,0,0,NULL,&atx[336],NULL,0,&atx[337]} ,
  {406, "Int-fuzz" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[364]} ,
  {0, "action" ,128,3,0,0,1,0,0,0,&avnx[405],&atx[4],&avnx[401],0,NULL} ,
  {0, "observation" ,128,2,0,1,0,0,0,0,NULL,&atx[4],&avnx[406],0,NULL} ,
  {0, "set" ,128,4,0,0,0,0,0,0,NULL,&atx[38],&atx[340],0,&atx[344]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[409],0,&atx[341]} ,
  {0, "variations" ,128,1,0,0,0,0,0,0,NULL,&atx[27],&atx[342],0,&atx[343]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[257],NULL,0,NULL} ,
  {0, "name" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "complex" ,128,5,0,0,0,0,0,0,NULL,&atx[165],NULL,0,NULL} ,
  {0, "consequence" ,128,19,0,1,0,0,0,0,NULL,&atx[27],&atx[346],0,&atx[357]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[11],&atx[347],0,NULL} ,
  {0, "unknown" ,128,0,0,0,0,0,0,0,NULL,&atx[165],NULL,0,&atx[348]} ,
  {0, "splicing" ,128,1,0,0,0,0,0,0,NULL,&atx[165],NULL,0,&atx[349]} ,
  {0, "note" ,128,2,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[350]} ,
  {0, "variation" ,128,3,0,0,0,0,0,0,NULL,&atx[257],NULL,0,&atx[351]} ,
  {0, "frameshift" ,128,4,0,0,0,0,0,0,NULL,&atx[38],&atx[352],0,&atx[354]} ,
  {0, "phase" ,128,0,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[353]} ,
  {0, "x-length" ,128,1,0,1,0,0,0,0,NULL,&atx[4],NULL,0,NULL} ,
  {0, "loss-of-heterozygosity" ,128,5,0,0,0,0,0,0,NULL,&atx[38],&atx[355],0,NULL} ,
  {0, "reference" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[356]} ,
  {0, "test" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "location" ,128,20,0,1,0,0,0,0,NULL,&atx[332],NULL,0,&atx[358]} ,
  {0, "ext-locs" ,128,21,0,1,0,0,0,0,NULL,&atx[27],&atx[359],0,&atx[363]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[360],NULL,0,NULL} ,
  {414, "Ext-loc" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[361],0,&atx[327]} ,
  {0, "id" ,128,0,0,0,0,0,0,0,NULL,&atx[262],NULL,0,&atx[362]} ,
  {0, "location" ,128,1,0,0,0,0,0,0,NULL,&atx[332],NULL,0,NULL} ,
  {0, "ext" ,128,22,0,1,0,0,0,0,NULL,&atx[364],NULL,0,&atx[365]} ,
  {407, "User-object" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[262]} ,
  {0, "somatic-origin" ,128,23,0,1,0,0,0,0,NULL,&atx[27],&atx[366],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[38],&atx[367],0,NULL} ,
  {0, "source" ,128,0,0,1,0,0,0,0,NULL,&atx[368],NULL,0,&atx[369]} ,
  {411, "SubSource" ,1,0,0,0,0,0,1,0,NULL,&atx[220],NULL,0,&atx[332]} ,
  {0, "condition" ,128,1,0,1,0,0,0,0,NULL,&atx[38],&atx[370],0,NULL} ,
  {0, "description" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[371]} ,
  {0, "object-id" ,128,1,0,1,0,0,0,0,NULL,&atx[27],&atx[372],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[259],NULL,0,NULL} ,
  {0, "partial" ,128,2,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[374]} ,
  {0, "except" ,128,3,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[375]} ,
  {0, "comment" ,128,4,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[376]} ,
  {0, "product" ,128,5,0,1,0,0,0,0,NULL,&atx[107],NULL,0,&atx[377]} ,
  {0, "location" ,128,6,0,0,0,0,0,0,NULL,&atx[107],NULL,0,&atx[378]} ,
  {0, "qual" ,128,7,0,1,0,0,0,0,NULL,&atx[63],&atx[379],0,&atx[383]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[380],NULL,0,NULL} ,
  {426, "Gb-qual" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[381],0,&atx[390]} ,
  {0, "qual" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[382]} ,
  {0, "val" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "title" ,128,8,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[384]} ,
  {0, "ext" ,128,9,0,1,0,0,0,0,NULL,&atx[175],NULL,0,&atx[385]} ,
  {0, "cit" ,128,10,0,1,0,0,0,0,NULL,&atx[386],NULL,0,&atx[387]} ,
  {421, "Pub-set" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[8]} ,
  {0, "exp-ev" ,128,11,0,1,0,0,0,0,NULL,&atx[34],&avnx[420],0,&atx[388]} ,
  {0, "xref" ,128,12,0,1,0,0,0,0,NULL,&atx[27],&atx[389],0,&atx[393]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[390],NULL,0,NULL} ,
  {427, "SeqFeatXref" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[391],0,&atx[402]} ,
  {0, "id" ,128,0,0,1,0,0,0,0,NULL,&atx[2],NULL,0,&atx[392]} ,
  {0, "data" ,128,1,0,1,0,0,0,0,NULL,&atx[13],NULL,0,NULL} ,
  {0, "dbxref" ,128,13,0,1,0,0,0,0,NULL,&atx[27],&atx[394],0,&atx[395]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[10],NULL,0,NULL} ,
  {0, "pseudo" ,128,14,0,1,0,0,0,0,NULL,&atx[23],NULL,0,&atx[396]} ,
  {0, "except-text" ,128,15,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[397]} ,
  {0, "ids" ,128,16,0,1,0,0,0,0,NULL,&atx[27],&atx[398],0,&atx[399]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[2],NULL,0,NULL} ,
  {0, "exts" ,128,17,0,1,0,0,0,0,NULL,&atx[27],&atx[400],0,&atx[401]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[175],NULL,0,NULL} ,
  {0, "support" ,128,18,0,1,0,0,0,0,NULL,&atx[402],NULL,0,NULL} ,
  {428, "SeqFeatSupport" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[403],0,&atx[85]} ,
  {0, "experiment" ,128,0,0,1,0,0,0,0,NULL,&atx[27],&atx[404],0,&atx[415]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[405],NULL,0,NULL} ,
  {432, "ExperimentSupport" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[406],0,&atx[417]} ,
  {0, "category" ,128,0,0,1,0,0,0,0,NULL,&atx[407],NULL,0,&atx[408]} ,
  {434, "EvidenceCategory" ,1,0,0,0,0,0,0,0,NULL,&atx[4],&avnx[422],0,&atx[426]} ,
  {0, "explanation" ,128,1,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[409]} ,
  {0, "pmids" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[410],0,&atx[412]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[411],NULL,0,NULL} ,
  {420, "PubMedId" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[386]} ,
  {0, "dois" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[413],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[414],NULL,0,NULL} ,
  {419, "DOI" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[411]} ,
  {0, "inference" ,128,1,0,1,0,0,0,0,NULL,&atx[27],&atx[416],0,&atx[436]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[417],NULL,0,NULL} ,
  {433, "InferenceSupport" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[418],0,&atx[407]} ,
  {0, "category" ,128,0,0,1,0,0,0,0,NULL,&atx[407],NULL,0,&atx[419]} ,
  {0, "type" ,128,1,0,0,1,0,0,0,&avnx[440],&atx[4],&avnx[426],0,&atx[420]} ,
  {0, "other-type" ,128,2,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[421]} ,
  {0, "same-species" ,128,3,0,0,1,0,0,0,&avnx[441],&atx[23],NULL,0,&atx[422]} ,
  {0, "basis" ,128,4,0,0,0,0,0,0,NULL,&atx[423],NULL,0,&atx[432]} ,
  {436, "EvidenceBasis" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[424],0,&atx[442]} ,
  {0, "programs" ,128,0,0,1,0,0,0,0,NULL,&atx[27],&atx[425],0,&atx[429]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[426],NULL,0,NULL} ,
  {435, "Program-id" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[427],0,&atx[423]} ,
  {0, "name" ,128,0,0,0,0,0,0,0,NULL,&atx[18],NULL,0,&atx[428]} ,
  {0, "version" ,128,1,0,1,0,0,0,0,NULL,&atx[18],NULL,0,NULL} ,
  {0, "accessions" ,128,1,0,1,0,0,0,0,NULL,&atx[27],&atx[430],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[431],NULL,0,NULL} ,
  {411, "Seq-id" ,1,0,0,0,0,0,1,0,NULL,NULL,NULL,0,&atx[107]} ,
  {0, "pmids" ,128,5,0,1,0,0,0,0,NULL,&atx[27],&atx[433],0,&atx[434]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[411],NULL,0,NULL} ,
  {0, "dois" ,128,6,0,1,0,0,0,0,NULL,&atx[27],&atx[435],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[414],NULL,0,NULL} ,
  {0, "model-evidence" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[437],0,NULL} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[438],NULL,0,NULL} ,
  {404, "ModelEvidenceSupport" ,1,0,0,0,0,1,0,0,NULL,&atx[38],&atx[439],0,&atx[15]} ,
  {0, "method" ,128,0,0,1,0,0,0,0,NULL,&atx[18],NULL,0,&atx[440]} ,
  {0, "mrna" ,128,1,0,1,0,0,0,0,NULL,&atx[27],&atx[441],0,&atx[448]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[442],NULL,0,NULL} ,
  {437, "ModelEvidenceItem" ,1,0,0,0,0,0,0,0,NULL,&atx[38],&atx[443],0,&atx[105]} ,
  {0, "id" ,128,0,0,0,0,0,0,0,NULL,&atx[431],NULL,0,&atx[444]} ,
  {0, "exon-count" ,128,1,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[445]} ,
  {0, "exon-length" ,128,2,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[446]} ,
  {0, "full-length" ,128,3,0,0,1,0,0,0,&avnx[442],&atx[23],NULL,0,&atx[447]} ,
  {0, "supports-all-exon-combo" ,128,4,0,0,1,0,0,0,&avnx[443],&atx[23],NULL,0,NULL} ,
  {0, "est" ,128,2,0,1,0,0,0,0,NULL,&atx[27],&atx[449],0,&atx[450]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[442],NULL,0,NULL} ,
  {0, "protein" ,128,3,0,1,0,0,0,0,NULL,&atx[27],&atx[451],0,&atx[452]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[442],NULL,0,NULL} ,
  {0, "identification" ,128,4,0,1,0,0,0,0,NULL,&atx[431],NULL,0,&atx[453]} ,
  {0, "dbxref" ,128,5,0,1,0,0,0,0,NULL,&atx[27],&atx[454],0,&atx[455]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[10],NULL,0,NULL} ,
  {0, "exon-count" ,128,6,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[456]} ,
  {0, "exon-length" ,128,7,0,1,0,0,0,0,NULL,&atx[4],NULL,0,&atx[457]} ,
  {0, "full-length" ,128,8,0,0,1,0,0,0,&avnx[444],&atx[23],NULL,0,&atx[458]} ,
  {0, "supports-all-exon-combo" ,128,9,0,0,1,0,0,0,&avnx[445],&atx[23],NULL,0,NULL} ,
  {439, "Genetic-code-table" ,1,0,0,0,0,0,0,0,NULL,&atx[27],&atx[460],0,&atx[246]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[92],NULL,0,NULL} };

static AsnModule ampx[9] = {
  { "NCBI-Seqfeat" , "asnfeat.h53",&atx[0],NULL,&ampx[1],0,0} ,
  { "NCBI-Variation" , NULL,&atx[257],NULL,&ampx[2],0,0} ,
  { "NCBI-Rsite" , NULL,&atx[170],NULL,&ampx[3],0,0} ,
  { "NCBI-RNA" , NULL,&atx[129],NULL,&ampx[4],0,0} ,
  { "NCBI-Gene" , NULL,&atx[16],NULL,&ampx[5],0,0} ,
  { "NCBI-Organism" , NULL,&atx[41],NULL,&ampx[6],0,0} ,
  { "NCBI-BioSource" , NULL,&atx[213],NULL,&ampx[7],0,0} ,
  { "NCBI-Protein" , NULL,&atx[115],NULL,&ampx[8],0,0} ,
  { "NCBI-TxInit" , NULL,&atx[178],NULL,NULL,0,0} };

static AsnValxNodePtr avn = avnx;
static AsnTypePtr at = atx;
static AsnModulePtr amp = ampx;



/**************************************************
*
*    Defines for Module NCBI-Seqfeat
*
**************************************************/

#define SEQ_FEAT &at[0]
#define SEQ_FEAT_id &at[1]
#define SEQ_FEAT_data &at[12]
#define SEQ_FEAT_partial &at[373]
#define SEQ_FEAT_except &at[374]
#define SEQ_FEAT_comment &at[375]
#define SEQ_FEAT_product &at[376]
#define SEQ_FEAT_location &at[377]
#define SEQ_FEAT_qual &at[378]
#define SEQ_FEAT_qual_E &at[379]
#define SEQ_FEAT_title &at[383]
#define SEQ_FEAT_ext &at[384]
#define SEQ_FEAT_cit &at[385]
#define SEQ_FEAT_exp_ev &at[387]
#define SEQ_FEAT_xref &at[388]
#define SEQ_FEAT_xref_E &at[389]
#define SEQ_FEAT_dbxref &at[393]
#define SEQ_FEAT_dbxref_E &at[394]
#define SEQ_FEAT_pseudo &at[395]
#define SEQ_FEAT_except_text &at[396]
#define SEQ_FEAT_ids &at[397]
#define SEQ_FEAT_ids_E &at[398]
#define SEQ_FEAT_exts &at[399]
#define SEQ_FEAT_exts_E &at[400]
#define SEQ_FEAT_support &at[401]

#define FEAT_ID &at[2]
#define FEAT_ID_gibb &at[3]
#define FEAT_ID_giim &at[5]
#define FEAT_ID_local &at[7]
#define FEAT_ID_general &at[9]

#define GENETIC_CODE &at[92]
#define GENETIC_CODE_E &at[93]
#define GENETIC_CODE_E_name &at[94]
#define GENETIC_CODE_E_id &at[95]
#define GENETIC_CODE_E_ncbieaa &at[96]
#define GENETIC_CODE_E_ncbi8aa &at[97]
#define GENETIC_CODE_E_ncbistdaa &at[99]
#define GENETIC_CODE_E_sncbieaa &at[100]
#define GENETIC_CODE_E_sncbi8aa &at[101]
#define GENETIC_CODE_E_sncbistdaa &at[102]

#define MODELEVIDENCESUPPORT &at[438]
#define MODELEVIDENCESUPPORT_method &at[439]
#define MODELEVIDENCESUPPORT_mrna &at[440]
#define MODELEVIDENCESUPPORT_mrna_E &at[441]
#define MODELEVIDENCESUPPORT_est &at[448]
#define MODELEVIDENCESUPPORT_est_E &at[449]
#define MODELEVIDENCESUPPORT_protein &at[450]
#define MODELEVIDENCESUPPORT_protein_E &at[451]
#define MODELEVIDENCESUPPORT_identification &at[452]
#define MODELEVIDENCESUPPORT_dbxref &at[453]
#define MODELEVIDENCESUPPORT_dbxref_E &at[454]
#define MODELEVIDENCESUPPORT_exon_count &at[455]
#define MODELEVIDENCESUPPORT_exon_length &at[456]
#define MODELEVIDENCESUPPORT_full_length &at[457]
#define MODELEVIDENCESUPPORT_supports_all_exon_combo &at[458]

#define SEQFEATDATA &at[13]
#define SEQFEATDATA_gene &at[14]
#define SEQFEATDATA_org &at[39]
#define SEQFEATDATA_cdregion &at[84]
#define SEQFEATDATA_prot &at[113]
#define SEQFEATDATA_rna &at[127]
#define SEQFEATDATA_pub &at[155]
#define SEQFEATDATA_seq &at[157]
#define SEQFEATDATA_imp &at[158]
#define SEQFEATDATA_region &at[163]
#define SEQFEATDATA_comment &at[164]
#define SEQFEATDATA_bond &at[166]
#define SEQFEATDATA_site &at[167]
#define SEQFEATDATA_rsite &at[168]
#define SEQFEATDATA_user &at[174]
#define SEQFEATDATA_txinit &at[176]
#define SEQFEATDATA_num &at[205]
#define SEQFEATDATA_psec_str &at[207]
#define SEQFEATDATA_non_std_residue &at[208]
#define SEQFEATDATA_het &at[209]
#define SEQFEATDATA_biosrc &at[211]
#define SEQFEATDATA_clone &at[238]
#define SEQFEATDATA_variation &at[255]

#define GB_QUAL &at[380]
#define GB_QUAL_qual &at[381]
#define GB_QUAL_val &at[382]

#define SEQFEATXREF &at[390]
#define SEQFEATXREF_id &at[391]
#define SEQFEATXREF_data &at[392]

#define SEQFEATSUPPORT &at[402]
#define SEQFEATSUPPORT_experiment &at[403]
#define SEQFEATSUPPORT_experiment_E &at[404]
#define SEQFEATSUPPORT_inference &at[415]
#define SEQFEATSUPPORT_inference_E &at[416]
#define SEQFEATSUPPORT_model_evidence &at[436]
#define SEQFEATSUPPORT_model_evidence_E &at[437]

#define CDREGION &at[85]
#define CDREGION_orf &at[86]
#define CDREGION_frame &at[87]
#define CDREGION_conflict &at[88]
#define CDREGION_gaps &at[89]
#define CDREGION_mismatch &at[90]
#define CDREGION_code &at[91]
#define CDREGION_code_break &at[103]
#define CDREGION_code_break_E &at[104]
#define CDREGION_stops &at[112]

#define IMP_FEAT &at[159]
#define IMP_FEAT_key &at[160]
#define IMP_FEAT_loc &at[161]
#define IMP_FEAT_descr &at[162]

#define CLONE_REF &at[239]
#define CLONE_REF_name &at[240]
#define CLONE_REF_library &at[241]
#define CLONE_REF_concordant &at[242]
#define CLONE_REF_unique &at[243]
#define CLONE_REF_placement_method &at[244]
#define CLONE_REF_clone_seq &at[245]

#define EXPERIMENTSUPPORT &at[405]
#define EXPERIMENTSUPPORT_category &at[406]
#define EXPERIMENTSUPPORT_explanation &at[408]
#define EXPERIMENTSUPPORT_pmids &at[409]
#define EXPERIMENTSUPPORT_pmids_E &at[410]
#define EXPERIMENTSUPPORT_dois &at[412]
#define EXPERIMENTSUPPORT_dois_E &at[413]

#define INFERENCESUPPORT &at[417]
#define INFERENCESUPPORT_category &at[418]
#define INFERENCESUPPORT_type &at[419]
#define INFERENCESUPPORT_other_type &at[420]
#define INFERENCESUPPORT_same_species &at[421]
#define INFERENCESUPPORT_basis &at[422]
#define INFERENCESUPPORT_pmids &at[432]
#define INFERENCESUPPORT_pmids_E &at[433]
#define INFERENCESUPPORT_dois &at[434]
#define INFERENCESUPPORT_dois_E &at[435]

#define EVIDENCECATEGORY &at[407]

#define PROGRAM_ID &at[426]
#define PROGRAM_ID_name &at[427]
#define PROGRAM_ID_version &at[428]

#define EVIDENCEBASIS &at[423]
#define EVIDENCEBASIS_programs &at[424]
#define EVIDENCEBASIS_programs_E &at[425]
#define EVIDENCEBASIS_accessions &at[429]
#define EVIDENCEBASIS_accessions_E &at[430]

#define MODELEVIDENCEITEM &at[442]
#define MODELEVIDENCEITEM_id &at[443]
#define MODELEVIDENCEITEM_exon_count &at[444]
#define MODELEVIDENCEITEM_exon_length &at[445]
#define MODELEVIDENCEITEM_full_length &at[446]
#define MODELEVIDENCEITEM_supports_all_exon_combo &at[447]

#define CODE_BREAK &at[105]
#define CODE_BREAK_loc &at[106]
#define CODE_BREAK_aa &at[108]
#define CODE_BREAK_aa_ncbieaa &at[109]
#define CODE_BREAK_aa_ncbi8aa &at[110]
#define CODE_BREAK_aa_ncbistdaa &at[111]

#define GENETIC_CODE_TABLE &at[459]
#define GENETIC_CODE_TABLE_E &at[460]

#define CLONE_SEQ_SET &at[246]
#define CLONE_SEQ_SET_E &at[247]

#define CLONE_SEQ &at[248]
#define CLONE_SEQ_type &at[249]
#define CLONE_SEQ_confidence &at[250]
#define CLONE_SEQ_location &at[251]
#define CLONE_SEQ_seq &at[252]
#define CLONE_SEQ_align_id &at[253]
#define CLONE_SEQ_support &at[254]


/**************************************************
*
*    Defines for Module NCBI-Variation
*
**************************************************/

#define VARIATION_REF &at[257]
#define VARIATION_REF_id &at[258]
#define VARIATION_REF_parent_id &at[260]
#define VARIATION_REF_sample_id &at[261]
#define VARIATION_REF_other_ids &at[263]
#define VARIATION_REF_other_ids_E &at[264]
#define VARIATION_REF_name &at[265]
#define VARIATION_REF_synonyms &at[266]
#define VARIATION_REF_synonyms_E &at[267]
#define VARIATION_REF_description &at[268]
#define VARIATION_REF_phenotype &at[269]
#define VARIATION_REF_phenotype_E &at[270]
#define VARIATION_REF_method &at[277]
#define VARIATION_REF_method_E &at[278]
#define VARIATION_REF_population_data &at[279]
#define VARIATION_REF_population_data_E &at[280]
#define VARIATION_REF_variant_prop &at[290]
#define VARIATION_REF_validated &at[309]
#define VARIATION_REF_clinical_test &at[310]
#define VARIATION_REF_clinical_test_E &at[311]
#define VARIATION_REF_allele_origin &at[312]
#define VARIATION_REF_allele_state &at[313]
#define VARIATION_REF_allele_frequency &at[314]
#define VARIATION_REF_is_ancestral_allele &at[315]
#define VARIATION_REF_pub &at[316]
#define VARIATION_REF_data &at[318]
#define VARIATION_REF_data_unknown &at[319]
#define VARIATION_REF_data_note &at[320]
#define VARIATION_REF_data_uniparental_disomy &at[321]
#define VARIATION_REF_data_instance &at[322]
#define VARIATION_REF_data_set &at[339]
#define VARIATION_REF_data_set_type &at[340]
#define VARIATION_REF_data_set_variations &at[341]
#define VARIATION_REF_data_set_variations_E &at[342]
#define VARIATION_REF_data_set_name &at[343]
#define VARIATION_REF_data_complex &at[344]
#define VARIATION_REF_consequence &at[345]
#define VARIATION_REF_consequence_E &at[346]
#define VARIATION_REF_consequence_E_unknown &at[347]
#define VARIATION_REF_consequence_E_splicing &at[348]
#define VARIATION_REF_consequence_E_note &at[349]
#define VARIATION_REF_consequence_E_variation &at[350]
#define VARIATION_REF_consequence_E_frameshift &at[351]
#define VARIATION_REF_consequence_E_frameshift_phase &at[352]
#define VARIATION_REF_consequence_E_frameshift_x_length &at[353]
#define VARIATION_REF_consequence_E_loss_of_heterozygosity &at[354]
#define VARIATION_REF_consequence_E_loss_of_heterozygosity_reference &at[355]
#define VARIATION_REF_consequence_E_loss_of_heterozygosity_test &at[356]
#define VARIATION_REF_location &at[357]
#define VARIATION_REF_ext_locs &at[358]
#define VARIATION_REF_ext_locs_E &at[359]
#define VARIATION_REF_ext &at[363]
#define VARIATION_REF_somatic_origin &at[365]
#define VARIATION_REF_somatic_origin_E &at[366]
#define VARIATION_REF_somatic_origin_E_source &at[367]
#define VARIATION_REF_somatic_origin_E_condition &at[369]
#define VARIATION_REF_somatic_origin_E_condition_description &at[370]
#define VARIATION_REF_somatic_origin_E_condition_object_id &at[371]
#define VARIATION_REF_somatic_origin_E_condition_object_id_E &at[372]

#define VARIATION_INST &at[323]
#define VARIATION_INST_type &at[324]
#define VARIATION_INST_delta &at[325]
#define VARIATION_INST_delta_E &at[326]
#define VARIATION_INST_observation &at[338]

#define VARIANTPROPERTIES &at[291]
#define VARIANTPROPERTIES_version &at[292]
#define VARIANTPROPERTIES_resource_link &at[293]
#define VARIANTPROPERTIES_gene_location &at[294]
#define VARIANTPROPERTIES_effect &at[295]
#define VARIANTPROPERTIES_mapping &at[296]
#define VARIANTPROPERTIES_map_weight &at[297]
#define VARIANTPROPERTIES_frequency_based_validation &at[298]
#define VARIANTPROPERTIES_genotype &at[299]
#define VARIANTPROPERTIES_project_data &at[300]
#define VARIANTPROPERTIES_project_data_E &at[301]
#define VARIANTPROPERTIES_quality_check &at[302]
#define VARIANTPROPERTIES_confidence &at[303]
#define VARIANTPROPERTIES_other_validation &at[304]
#define VARIANTPROPERTIES_allele_origin &at[305]
#define VARIANTPROPERTIES_allele_state &at[306]
#define VARIANTPROPERTIES_allele_frequency &at[307]
#define VARIANTPROPERTIES_is_ancestral_allele &at[308]

#define POPULATION_DATA &at[281]
#define POPULATION_DATA_population &at[282]
#define POPULATION_DATA_genotype_frequency &at[283]
#define POPULATION_DATA_chromosomes_tested &at[285]
#define POPULATION_DATA_sample_ids &at[286]
#define POPULATION_DATA_sample_ids_E &at[287]
#define POPULATION_DATA_allele_frequency &at[288]
#define POPULATION_DATA_flags &at[289]

#define PHENOTYPE &at[271]
#define PHENOTYPE_source &at[272]
#define PHENOTYPE_term &at[273]
#define PHENOTYPE_xref &at[274]
#define PHENOTYPE_xref_E &at[275]
#define PHENOTYPE_clinical_significance &at[276]

#define EXT_LOC &at[360]
#define EXT_LOC_id &at[361]
#define EXT_LOC_location &at[362]

#define DELTA_ITEM &at[327]
#define DELTA_ITEM_seq &at[328]
#define DELTA_ITEM_seq_literal &at[329]
#define DELTA_ITEM_seq_loc &at[331]
#define DELTA_ITEM_seq_this &at[333]
#define DELTA_ITEM_multiplier &at[334]
#define DELTA_ITEM_multiplier_fuzz &at[335]
#define DELTA_ITEM_action &at[337]


/**************************************************
*
*    Defines for Module NCBI-Rsite
*
**************************************************/

#define RSITE_REF &at[170]
#define RSITE_REF_str &at[171]
#define RSITE_REF_db &at[172]


/**************************************************
*
*    Defines for Module NCBI-RNA
*
**************************************************/

#define RNA_REF &at[129]
#define RNA_REF_type &at[130]
#define RNA_REF_pseudo &at[131]
#define RNA_REF_ext &at[132]
#define RNA_REF_ext_name &at[133]
#define RNA_REF_ext_tRNA &at[134]
#define RNA_REF_ext_gen &at[145]

#define TRNA_EXT &at[135]
#define TRNA_EXT_aa &at[136]
#define TRNA_EXT_aa_iupacaa &at[137]
#define TRNA_EXT_aa_ncbieaa &at[138]
#define TRNA_EXT_aa_ncbi8aa &at[139]
#define TRNA_EXT_aa_ncbistdaa &at[140]
#define TRNA_EXT_codon &at[141]
#define TRNA_EXT_codon_E &at[142]
#define TRNA_EXT_anticodon &at[143]

#define RNA_GEN &at[146]
#define RNA_GEN_class &at[147]
#define RNA_GEN_product &at[148]
#define RNA_GEN_quals &at[149]

#define RNA_QUAL &at[152]
#define RNA_QUAL_qual &at[153]
#define RNA_QUAL_val &at[154]

#define RNA_QUAL_SET &at[150]
#define RNA_QUAL_SET_E &at[151]


/**************************************************
*
*    Defines for Module NCBI-Gene
*
**************************************************/

#define GENE_REF &at[16]
#define GENE_REF_locus &at[17]
#define GENE_REF_allele &at[19]
#define GENE_REF_desc &at[20]
#define GENE_REF_maploc &at[21]
#define GENE_REF_pseudo &at[22]
#define GENE_REF_db &at[24]
#define GENE_REF_db_E &at[25]
#define GENE_REF_syn &at[28]
#define GENE_REF_syn_E &at[29]
#define GENE_REF_locus_tag &at[30]
#define GENE_REF_formal_name &at[31]

#define GENE_NOMENCLATURE &at[32]
#define GENE_NOMENCLATURE_status &at[33]
#define GENE_NOMENCLATURE_symbol &at[35]
#define GENE_NOMENCLATURE_name &at[36]
#define GENE_NOMENCLATURE_source &at[37]


/**************************************************
*
*    Defines for Module NCBI-Organism
*
**************************************************/

#define ORG_REF &at[41]
#define ORG_REF_taxname &at[42]
#define ORG_REF_common &at[43]
#define ORG_REF_mod &at[44]
#define ORG_REF_mod_E &at[45]
#define ORG_REF_db &at[46]
#define ORG_REF_db_E &at[47]
#define ORG_REF_syn &at[49]
#define ORG_REF_syn_E &at[50]
#define ORG_REF_orgname &at[51]

#define ORGNAME &at[52]
#define ORGNAME_name &at[53]
#define ORGNAME_name_binomial &at[54]
#define ORGNAME_name_virus &at[59]
#define ORGNAME_name_hybrid &at[60]
#define ORGNAME_name_namedhybrid &at[64]
#define ORGNAME_name_partial &at[65]
#define ORGNAME_attrib &at[72]
#define ORGNAME_mod &at[73]
#define ORGNAME_mod_E &at[74]
#define ORGNAME_lineage &at[79]
#define ORGNAME_gcode &at[80]
#define ORGNAME_mgcode &at[81]
#define ORGNAME_div &at[82]
#define ORGNAME_pgcode &at[83]

#define BINOMIALORGNAME &at[55]
#define BINOMIALORGNAME_genus &at[56]
#define BINOMIALORGNAME_species &at[57]
#define BINOMIALORGNAME_subspecies &at[58]

#define MULTIORGNAME &at[61]
#define MULTIORGNAME_E &at[62]

#define PARTIALORGNAME &at[66]
#define PARTIALORGNAME_E &at[67]

#define ORGMOD &at[75]
#define ORGMOD_subtype &at[76]
#define ORGMOD_subname &at[77]
#define ORGMOD_attrib &at[78]

#define TAXELEMENT &at[68]
#define TAXELEMENT_fixed_level &at[69]
#define TAXELEMENT_level &at[70]
#define TAXELEMENT_name &at[71]


/**************************************************
*
*    Defines for Module NCBI-BioSource
*
**************************************************/

#define BIOSOURCE &at[213]
#define BIOSOURCE_genome &at[214]
#define BIOSOURCE_origin &at[215]
#define BIOSOURCE_org &at[216]
#define BIOSOURCE_subtype &at[218]
#define BIOSOURCE_subtype_E &at[219]
#define BIOSOURCE_is_focus &at[224]
#define BIOSOURCE_pcr_primers &at[225]

#define SUBSOURCE &at[220]
#define SUBSOURCE_subtype &at[221]
#define SUBSOURCE_name &at[222]
#define SUBSOURCE_attrib &at[223]

#define PCRREACTIONSET &at[226]
#define PCRREACTIONSET_E &at[227]

#define PCRREACTION &at[228]
#define PCRREACTION_forward &at[229]
#define PCRREACTION_reverse &at[237]

#define PCRPRIMERSET &at[230]
#define PCRPRIMERSET_E &at[231]

#define PCRPRIMER &at[232]
#define PCRPRIMER_seq &at[233]
#define PCRPRIMER_name &at[235]

#define PCRPRIMERSEQ &at[234]

#define PCRPRIMERNAME &at[236]


/**************************************************
*
*    Defines for Module NCBI-Protein
*
**************************************************/

#define PROT_REF &at[115]
#define PROT_REF_name &at[116]
#define PROT_REF_name_E &at[117]
#define PROT_REF_desc &at[118]
#define PROT_REF_ec &at[119]
#define PROT_REF_ec_E &at[120]
#define PROT_REF_activity &at[121]
#define PROT_REF_activity_E &at[122]
#define PROT_REF_db &at[123]
#define PROT_REF_db_E &at[124]
#define PROT_REF_processed &at[126]


/**************************************************
*
*    Defines for Module NCBI-TxInit
*
**************************************************/

#define TXINIT &at[178]
#define TXINIT_name &at[179]
#define TXINIT_syn &at[180]
#define TXINIT_syn_E &at[181]
#define TXINIT_gene &at[182]
#define TXINIT_gene_E &at[183]
#define TXINIT_protein &at[185]
#define TXINIT_protein_E &at[186]
#define TXINIT_rna &at[188]
#define TXINIT_rna_E &at[189]
#define TXINIT_expression &at[190]
#define TXINIT_txsystem &at[191]
#define TXINIT_txdescr &at[192]
#define TXINIT_txorg &at[193]
#define TXINIT_mapping_precise &at[195]
#define TXINIT_location_accurate &at[196]
#define TXINIT_inittype &at[197]
#define TXINIT_evidence &at[198]
#define TXINIT_evidence_E &at[199]

#define TX_EVIDENCE &at[200]
#define TX_EVIDENCE_exp_code &at[201]
#define TX_EVIDENCE_expression_system &at[202]
#define TX_EVIDENCE_low_prec_data &at[203]
#define TX_EVIDENCE_from_homolog &at[204]