-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgroups.json
149 lines (149 loc) · 3.03 KB
/
groups.json
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
[{
"name": "Animals",
"rank": "kingdom",
"included": ["Animalia"],
"excluded": []
},
{
"name": "Mammals",
"rank": "classs",
"included": ["Mammalia"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Birds",
"rank": "classs",
"included": ["Aves"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Reptiles",
"rank": "classs",
"included": ["Reptilia"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Amphibians",
"rank": "classs",
"included": ["Amphibia"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Fishes",
"rank": "classs",
"included": ["Agnatha", "Chondrichthyes", "Osteichthyes", "Actinopterygii", "Sarcopterygii"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Molluscs",
"rank": "phylum",
"included": ["Mollusca"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Arthropods",
"rank": "phylum",
"included": ["Arthropoda"],
"excluded": [],
"parent": "Animals"
},
{
"name": "Crustaceans",
"rank": "classs",
"included": ["Branchiopoda", "Remipedia", "Maxillopoda", "Ostracoda", "Malacostraca"],
"excluded": [],
"parent": "Arthropods"
},
{
"name": "Insects",
"rank": "classs",
"included": ["Insecta"],
"excluded": [],
"parent": "Arthropods"
},
{
"name": "Plants",
"rank": "kingdom",
"included": ["Plantae"],
"excluded": []
},
{
"name": "Bryophytes",
"rank": "phylum",
"included": ["Bryophyta", "Marchantiophyta", "Anthocerotophyta"],
"excluded": []
},
{
"name": "Gymnosperms",
"rank": "subclass",
"included": ["Pinidae", "Cycadidae"],
"excluded": [],
"parent": "Plants"
},
{
"name": "FernsAndAllies",
"rank": "subclass",
"included": ["Equisetidae", "Lycopodiidae", "Marattiidae", "Ophioglossidae", "Polypodiidae", "Psilotidae"],
"excluded": [],
"parent": "Plants"
},
{
"name": "Angiosperms",
"rank": "subclass",
"included": ["Magnoliidae"],
"excluded": [],
"parent": "Plants"
},
{
"name": "Monocots",
"rank": "superorder",
"included": ["Lilianae"],
"excluded": [],
"parent": "Angiosperms"
},
{
"name": "Dicots",
"rank": "subclass",
"included": ["Magnoliidae"],
"excluded": ["Lilianae"],
"parent": "Angiosperms"
},
{
"name": "Fungi",
"rank": "kingdom",
"included": ["Fungi"],
"excluded": []
},
{
"name": "Chromista",
"rank": "kingdom",
"included": ["Chromista"],
"excluded": []
},
{
"name": "Protozoa",
"rank": "kingdom",
"included": ["Protozoa"],
"excluded": []
},
{
"name": "Bacteria",
"rank": "kingdom",
"included": ["Bacteria"],
"excluded": []
},
{
"name": "Algae",
"rank": "phylum",
"included": ["Bacillariophyta", "Chlorophyta", "Cyanidiophyta", "Prasinophyta", "Rhodophyta",
"Cryptophyta", "Ochrophyta", "Sagenista", "Cercozoa", "Euglenozoa", "Cyanobacteria"
],
"excluded": []
}
]